MySQL 查询最近几天的记录 最近7天的记录 本周内的记录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL 查询最近几天的记录 最近7天的记录 本周内的记录相关的知识,希望对你有一定的参考价值。
本周内:
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();
查询7天:
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);
以上是关于MySQL 查询最近几天的记录 最近7天的记录 本周内的记录的主要内容,如果未能解决你的问题,请参考以下文章
如何在 SQL Server 2005 中创建和维护最近 7 天的分区视图和存档记录?