Home > Database > Mysql Tutorial > mysql查询一天一周一个月的数据_MySQL

mysql查询一天一周一个月的数据_MySQL

WBOY
Release: 2016-06-01 13:35:13
Original
1151 people have browsed it

bitsCN.com

mysql查询一天一周一个月的数据

 

查询一天: 

Java代码  

select * from table where to_days(column_time) = to_days(now());  

select * from table where date(column_time) = curdate();  

 

查询一周: 

Java代码  

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

 

查询一个月: 

Java代码  

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