Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 541 Bytes

select_current_and_minutes_ago.md

File metadata and controls

11 lines (7 loc) · 541 Bytes

很多时候需要查询当前时间之前的时间到当前的数据,可以通过mysql的 data_sub 函数来设置一个间隔时间获得:

select * from test_table where count_time > date_sub(now(), interval 1 minute) ;

以上查询就是 test_tablecount_time 字段中,一分钟以内数据查询。

参考