1. 程式人生 > >dateTime怎麼根據日期(年月日)查詢資料

dateTime怎麼根據日期(年月日)查詢資料

查詢某一天的資料

select * from message  where time like '2017-11-07%';

注意:like 2017-11-07       而不是 like 2017-11-7,因為從前臺傳過來的資料是2017-11-7,我在這個地方浪費了一晚上。。。真是醉了


查詢某個時間段的資料


mysql> select * from message  where time > '2017-11-06' and time < '2017-11-08';