Home > Database > Mysql Tutorial > body text

MySql查询特定时间段数据_MySQL

WBOY
Release: 2016-06-01 13:38:27
Original
1319 people have browsed it

bitsCN.com


MySql查询特定时间段数据

 

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(); 

 

查询一周:    

 

select * from table  where DATE_SUB(CURDATE(), INTERVAL 7 DAY)

 

查询一个月:

 

select * from table  where DATE_SUB(CURDATE(), INTERVAL 1 MONTH) bitsCN.com

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template