Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 1 列包含日期格式
日期: 2013-09-22 2013-09-23 2013-09-24 2013-09-25 2013-09-26 2013-09-27 2013-09-28 2013-09-29 2013-09-30 2013-10 -01 2013-10-02
今天是一年中的第 40 周。我想选择所有的日子有40周的时间来做之类的。期待您的帮助
使用 mysql 函数 date_format。
select * from tableOne where date_format(myField,'%U')=40;
查看MySql 文档