雷达智富

首页 > 内容 > 程序笔记 > 正文

程序笔记

Mysql查询一段时间内的数据

2024-12-01 10
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) <= date(column_time);查询一个月:select * from table  where DATE_SUB(CURDATE(), INTERVAL INTERVAL 1 MONTH) <= date(column_time);



更新于:3天前
赞一波!2

文章评论

评论问答