在mysql中,可以利用select语句查询近一周的数据,语法为“select * from table where DATE_SUB(CURDATE(), INTERVAL 7 DAY)
本教程操作环境:windows10系统、mysql8.0.22版本、Dell G3电脑。
mysql怎么查询近一周的数据
语法如下:
select * from table where DATE_SUB(CURDATE(), INTERVAL 7 DAY) <p><strong>拓展知识:</strong></p><p>查询一天:</p><pre class="brush:sql;toolbar:false">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) <p><strong>示例如下:</strong></p><p>效果如图(这里SQL语句中的一周范围是指星期一到星期日,星期一为一周的第一天,因是8月11日查询的,所以只显示星期一到星期六的结果):</p><p><img src="https://img.php.cn/upload/article/000/000/067/4a6065bdd3484473006f1ed12406b95d-0.png" alt="请添加图片描述"></p><p>日历:</p><p><img src="https://img.php.cn/upload/article/000/000/067/4a6065bdd3484473006f1ed12406b95d-1.png" alt="请添加图片描述"></p><p>简单来说就是用今天的日期生成前七天的日期(利用union all命令),并根据星期一的日期条件刷选出本周的日期</p><pre class="brush:php;toolbar:false"> 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视频教程
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
喜欢就支持一下吧
相关推荐