共计 1693 个字符,预计需要花费 5 分钟才能阅读完成。
这篇文章主要介绍“mysql 如何查询近一周的数据”,在日常操作中,相信很多人在 mysql 如何查询近一周的数据问题上存在疑惑,丸趣 TV 小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”mysql 如何查询近一周的数据”的疑惑有所帮助!接下来,请跟着丸趣 TV 小编一起来学习吧!
在 mysql 中,可以利用 select 语句查询近一周的数据,语法为“select * from table where DATE_SUB(CURDATE(), INTERVAL 7 DAY) = date(column_time);”。
本教程操作环境:windows10 系统、mysql8.0.22 版本、Dell G3 电脑。
mysql 怎么查询近一周的数据
语法如下:
select * from table where DATE_SUB(CURDATE(), INTERVAL 7 DAY) = date(column_time);
拓展知识:
查询一天:
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 INTERVAL 1 MONTH) = date(column_time);
示例如下:
效果如图(这里 SQL 语句中的一周范围是指星期一到星期日,星期一为一周的第一天,因是 8 月 11 日查询的,所以只显示星期一到星期六的结果):
日历:
简单来说就是用今天的日期生成前七天的日期(利用 union all 命令),并根据星期一的日期条件刷选出本周的日期
SELECT DATE(subdate(curdate(),date_format(curdate(), %w )-1)) as thisweek
union all
SELECT DATE(DATE_ADD(subdate(curdate(),date_format(curdate(), %w )-1), interval 1 day)) as thisweek
union all
SELECT DATE(DATE_ADD(subdate(curdate(),date_format(curdate(), %w )-1), interval 2 day)) as thisweek
union all
SELECT DATE(DATE_ADD(subdate(curdate(),date_format(curdate(), %w )-1), interval 3 day)) as thisweek
union all
SELECT DATE(DATE_ADD(subdate(curdate(),date_format(curdate(), %w )-1), interval 4 day)) as thisweek
union all
SELECT DATE(DATE_ADD(subdate(curdate(),date_format(curdate(), %w )-1), interval 5 day)) as thisweek
union all
SELECT DATE(DATE_ADD(subdate(curdate(),date_format(curdate(), %w )-1), interval 6 day)) as thisweek
解析:
SELECT DATE(subdate(curdate(),date_format(curdate(),’%w’)-1))
得到的是这周的第一天(星期一到星期天为一周);也即 8 月 6 日
到此,关于“mysql 如何查询近一周的数据”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注丸趣 TV 网站,丸趣 TV 小编会继续努力为大家带来更多实用的文章!