mysql中如何比較日期

2022-08-17 15:15:18 字數 459 閱讀 9881

做專案,需求是要做乙個統計的功能,首次進入預設顯示今天以及七天前的資料,這個很好解決。

然後就是使用者點選日曆外掛程式選擇日誌,根據日期來統計當天的情況,我資料庫裡存的時間是使用的時間戳

前台獲取到的日期是這樣:

2018-03-27

where("from_unixtime(order_check_time,'%y-%m-%d') = date_format('$date[$i]','%y-%m-%d') and order_check_status = 3")->sum('要統計的字段');

更精確,精確到分鐘的寫法

where date_format(st.create_time,'%y-%m-%d %h:%i')>=date_format('2017-12-9 10:29:00','%y-%m-%d %h:%i' )

參考資料:

mysql日期查詢 日期比較

1.convert轉成string,在用like查詢。select from table1 where convert varchar,yourtime,120 like 2017 06 30 2.between select from table1 where yourtime between 2...

mysql日期例項 mysql日期時間比較簡單例項

如下 複製 select from tb where c date format 2007 07 06 y m d and c date format 2007 07 09 y m d select from tb where c date 2007 07 07 and c date 2007 07...

mysql日期例項 mysql日期時間比較簡單例項

日期比較,mysql 如下 select from tb where c date format 2007 07 06 y m d and c date format 2007 07 09 y m d select from tb where c date 2007 07 07 and c date...