99麻豆久久久国产免费福利精品,国产精品成人国产乱,玖玖操,手机看片169,国产精彩视频在线观看,午夜亚洲福利视频,国产伦乱视频

龍巖易富通網(wǎng)絡(luò)科技有限公司

龍巖小程序開(kāi)發(fā),龍巖分銷(xiāo)系統(tǒng)

mysql查詢(xún)今天、昨天、7天、近30天、本月、上一月 數(shù)據(jù)

2015.09.10 | 715閱讀 | 0條評(píng)論 | 數(shù)據(jù)庫(kù)

今天 

 select * from 表名 where to_days(時(shí)間字段名) = to_days(now()); 


 昨天 

 SELECT * FROM 表名 WHERE TO_DAYS( NOW( ) ) - TO_DAYS( 時(shí)間字段名) <= 1 


 7天 

 SELECT * FROM 表名 where DATE_SUB(CURDATE(), INTERVAL 7 DAY) <= date(時(shí)間字段名) 


 近30天 

 SELECT * FROM 表名 where DATE_SUB(CURDATE(), INTERVAL 30 DAY) <= date(時(shí)間字段名) 


 本月 

 SELECT * FROM 表名 WHERE DATE_FORMAT( 時(shí)間字段名, '%Y%m' ) = DATE_FORMAT( CURDATE( ) , '%Y%m' ) 


 上一月 

 SELECT * FROM 表名 WHERE PERIOD_DIFF( date_format( now( ) , '%Y%m' ) , date_format( 時(shí)間字段名, '%Y%m' ) ) =1 


#查詢(xún)本季度數(shù)據(jù)

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


 #查詢(xún)上季度數(shù)據(jù)

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


 #查詢(xún)本年數(shù)據(jù) 

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


#查詢(xún)上年數(shù)據(jù)

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


查詢(xún)當(dāng)前這周的數(shù)據(jù)

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


 查詢(xún)上周的數(shù)據(jù) 

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


 查詢(xún)當(dāng)前月份的數(shù)據(jù) 

select name,submittime from enterprise where date_format(submittime,'%Y-%m')=date_format(now(),'%Y-%m') 


 查詢(xún)距離當(dāng)前現(xiàn)在6個(gè)月的數(shù)據(jù) 

select name,submittime from enterprise where submittime between date_sub(now(),interval 6 month) and now(); 


查詢(xún)上個(gè)月的數(shù)據(jù) 

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 下月第一天 where date(regdate) = curdate(); 

 select * from test where year(regdate)=year(now()) and month(regdate)=month(now()) and day(regdate)=day(now()) SELECT date( c_instime ) ,curdate( ) FROM `t_score` WHERE 1 LIMIT 0 , 30

贊 (

發(fā)表評(píng)論

高平市| 正阳县| 江西省| 阜新市| 安岳县| 栾城县| 沛县| 民县| 广饶县| 从化市| 三台县| 吴忠市| 青神县| 德格县| 商丘市| 绥宁县| 大新县| 驻马店市| 宁津县| 政和县| 商都县| 大城县| 商南县| 夹江县| 吉水县| 锦州市| 波密县| 昌邑市| 保亭| 滨州市| 西昌市| 温宿县| 方城县| 唐山市| 霍州市| 绍兴县| 田阳县| 呼伦贝尔市| 公主岭市| 城固县| 白山市|