bitscn.com
mysql查询特定时间段数据
select * from wap_content where week(created_at) = week(now)
如果你要严格要求是某一年的,那可以这样
查询一天:
select * from table where to_days(column_time) = to_days(now());
select * from table where date(column_time) = curdate();
查询一周:
select * from table where date_sub(curdate(), interval 7 day)
查询一个月:
select * from table where date_sub(curdate(), interval 1 month) bitscn.com