标签: mysql
我有一个时间戳字段,我想选择*时间[在过去24小时内]
对此有什么正确的查询?
答案 0 :(得分:2)
select * from your_table where `time` between date_sub(now(), interval 1 day) and now();