MySQL: How to select records for this week?(MySQL:如何选择本周的记录?)
问题描述
我在 sqlfiddle 上有带有结构的表 temp
:
I have table temp
with structure on sqlfiddle:
id(int 11 primary key)
name(varchar 100)
name2(varchar 100)
date(datetime)
我想获得本周的记录,例如如果现在 21.11.2013 我想要 18.11.2013 到 24.11.2013(每周)的所有行
I would like get record on this week, example if now 21.11.2013 i would like all rows on 18.11.2013 to 24.11.2013(on week)
现在我看到下一个算法:
Now I see next algorithm:
- 获取工作日
- 计算几天前是星期一
- 计算星期一的日期
- 计算未来的星期日
- 按日期提出请求
请告诉我,是否存在更短的算法(最好在查询 MySQL 中)?
Tell me please, is exist a shorter algorithm (preferably in the query MySQL)?
ADD 问题是: 为什么要这个查询 选择日期 17.11.2013(Sunday) - 23.11.2013(Saturday)
以及如何获取日期 18.11.2013(Monday) - 24.11.2013(Sunday) 的记录)
?
ADD Question is: Why this query select record on date 17.11.2013(Sunday) - 23.11.2013(Saturday)
and how get records on date 18.11.2013(Monday) - 24.11.2013(Sunday)
?
查询:
select * from temp
where yearweek(`date`) = yearweek(curdate())
谢谢!
推荐答案
使用 YEARWEEK()
:
SELECT *
FROM your_table
WHERE YEARWEEK(`date`, 1) = YEARWEEK(CURDATE(), 1)
这篇关于MySQL:如何选择本周的记录?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL:如何选择本周的记录?
基础教程推荐
- SQL Server 2016更改对象所有者 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01