MySQL查詢今天/昨天/本周、上周、本月、上個月份數據的sql代碼


MySQL查詢本周、上周、本月、上個月份數據的sql代碼

作者: 字體:[增加 減小] 類型:轉載 時間:2012-11-29 我要評論

MySQL查詢的方式很多,下面為您介紹的MySQL查詢實現的是查詢本周、上周、本月、上個月份的數據,如果您對MySQL查詢方面感興趣的話,不妨一看
 
今天sql 
 and TO_DAYS( now() ) - TO_DAYS(subscribeTime) = 0 
昨天sql 
 and TO_DAYS( now() ) - TO_DAYS(subscribeTime) = 1 
 
 
查詢當前這周的數據 
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 下月第一天


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM