MySQL查詢本周、上周、本月、上個月份資料的sql代碼,mysqlsql

來源:互聯網
上載者:User

MySQL查詢本周、上周、本月、上個月份資料的sql代碼,mysqlsql

http://www.jb51.net/article/32277.htm


MySQL查詢的方式很多,下面為您介紹的MySQL查詢實現的是查詢本周、上周、本月、上個月份的資料,如果您對MySQL查詢方面感興趣的話,不妨一看 查詢當前這周的資料 SELECT name,submittime FROM enterprise WHERE YEARWEEK(date_format(submittime,'%Y-%m-%d')) = YEARWEEK(now()); 

查詢上周的資料 
SELECT name,submittime FROM enterprise WHERE YEARWEEK(date_format(submittime,'%Y-%m-%d')) = YEARWEEK(now())-1; 

查詢當前月份的資料 
select name,submittime from enterprise where date_format(submittime,'%Y-%m')=date_format(now(),'%Y-%m') 

查詢距離當前現在6個月的資料 
select name,submittime from enterprise where submittime between date_sub(now(),interval 6 month) and now(); 

查詢上個月的資料 
select name,submittime from enterprise where date_format(submittime,'%Y-%m')=date_format(DATE_SUB(curdate(), INTERVAL 1 MONTH),'%Y-%m') 

select * from `user` where DATE_FORMAT(pudate,'%Y%m') = DATE_FORMAT(CURDATE(),'%Y%m') ; 

select * from user where WEEKOFYEAR(FROM_UNIXTIME(pudate,'%y-%m-%d')) = WEEKOFYEAR(now()) 

select * 
from user 
where MONTH(FROM_UNIXTIME(pudate,'%y-%m-%d')) = MONTH(now()) 

select * 
from [user] 
where YEAR(FROM_UNIXTIME(pudate,'%y-%m-%d')) = YEAR(now()) 
and MONTH(FROM_UNIXTIME(pudate,'%y-%m-%d')) = MONTH(now()) 

select * 
from [user] 
where pudate between 上月最後一天 
and 下月第一天
今天
select * from 表名 where to_days(時間欄位) = to_days(now());
昨天
select * from 表名 where to_days(now())-to_days(時間欄位) = 1;
近7天
select * from 表名 where date_sub(curdate(), interval 7 day) <= date(時間欄位); 

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.