Blogger Information
Blog 91
fans 2
comment 4
visits 128297
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
mysql查询一周一月
夏日的烈风的博客
Original
840 people have browsed it

今天

select * from 表名 where to_days(时间字段名) = to_days(now());1

昨天

SELECT * FROM 表名 WHERE DATEDIFF(字段,NOW())=-1;1

本周

SELECT name,submittime FROM enterprise WHERE YEARWEEK(date_format(submittime,'%Y-%m-%d')) = YEARWEEK(now());1

上周

SELECT name,submittime FROM enterprise WHERE YEARWEEK(date_format(submittime,'%Y-%m-%d')) = YEARWEEK(now())-1;1

近7天

SELECT * FROM 表名 where DATE_SUB(CURDATE(), INTERVAL 7 DAY) <= date(时间字段名)1

近30天

SELECT * FROM 表名 where DATE_SUB(CURDATE(), INTERVAL 30 DAY) <= date(时间字段名)1

本月

SELECT * FROM 表名 WHERE DATE_FORMAT( 时间字段名, '%Y%m' ) = DATE_FORMAT( CURDATE( ) , '%Y%m' )1

上一个月

SELECT * FROM 表名 WHERE PERIOD_DIFF( date_format( now( ) , '%Y%m' ) , date_format( 时间字段名, '%Y%m' ) ) =11

本季度

select * from `ht_invoice_information` where QUARTER(create_date)=QUARTER(now());1

上季度

select * from `ht_invoice_information` where QUARTER(create_date)=QUARTER(DATE_SUB(now(),interval 1 QUARTER));1

本年

select * from `ht_invoice_information` where YEAR(create_date)=YEAR(NOW());1

去年

select * from `ht_invoice_information` where year(create_date)=year(date_sub(now(),interval 1 year))


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post