MYSQL查詢時(shí)間數(shù)據(jù)
發(fā)表時(shí)間:2023-07-10 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]利用mysql查詢時(shí)間數(shù)據(jù)在平常使用php中經(jīng)常會(huì)遇到,本篇將介紹多種時(shí)間數(shù)據(jù)的查詢。mysql查詢本季度今天select * from 表名 where to_days(時(shí)間字段名) = to_d...
利用mysql查詢時(shí)間數(shù)據(jù)在平常使用php中經(jīng)常會(huì)遇到,本篇將介紹多種時(shí)間數(shù)據(jù)的查詢。
mysql查詢本季度
今天
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
#查詢本季度數(shù)據(jù)
select * from `ht_invoice_information` where QUARTER(create_date)=QUARTER(now());
#查詢上季度數(shù)據(jù)
select * from `ht_invoice_information` where QUARTER(create_date)=QUARTER(DATE_SUB(now(),interval 1 QUARTER));
#查詢本年數(shù)據(jù)
select * from `ht_invoice_information` where YEAR(create_date)=YEAR(NOW());
#查詢上年數(shù)據(jù)
select * from `ht_invoice_information` where year(create_date)=year(date_sub(now(),interval 1 year));
查詢當(dāng)前這周的數(shù)據(jù)
SELECT name,submittime FROM enterprise WHERE YEARWEEK(date_format(submittime,’%Y-%m-%d’)) = YEARWEEK(now());
查詢上周的數(shù)據(jù)
SELECT name,submittime FROM enterprise WHERE YEARWEEK(date_format(submittime,’%Y-%m-%d’)) = YEARWEEK(now())-1;
查詢當(dāng)前月份的數(shù)據(jù)
select name,submittime from enterprisewhere date_format(submittime,’%Y-%m’)=date_format(now(),’%Y-%m’)
查詢距離當(dāng)前現(xiàn)在6個(gè)月的數(shù)據(jù)
select name,submittime from enterprise where submittime between date_sub(now(),interval 6 month) and now();
查詢上個(gè)月的數(shù)據(jù)
select name,submittime from enterprisewhere date_format(submittime,’%Y-%m’)=date_format(DATE_SUB(curdate(), INTERVAL 1 MONTH),’%Y-%m’)
select*from`user`whereDATE_FORMAT(pudate,‘%Y%m‘)=DATE_FORMAT(CURDATE(),‘%Y%m‘) ;
select * from user where WEEKOFYEAR(FROM_UNIXTIME(pudate,’%y-%m-%d’)) = WEEKOFYEAR(now())
select*
fromuser
whereMONTH(FROM_UNIXTIME(pudate,‘%y-%m-%d‘))=MONTH(now())
select*
from[user]
whereYEAR(FROM_UNIXTIME(pudate,‘%y-%m-%d‘))=YEAR(now())
andMONTH(FROM_UNIXTIME(pudate,‘%y-%m-%d‘))=MONTH(now())
select*
from[user]
wherepudatebetween上月最后一天
and下月第一天
wheredate(regdate)=curdate();
select*fromtestwhereyear(regdate)=year(now())andmonth(regdate)=month(now())andday(regdate)=day(now())
SELECT date( c_instime ) ,curdate( )FROM `t_score`WHERE 1LIMIT 0 , 30
本文介紹了多個(gè)常用到的時(shí)間數(shù)據(jù),更多相關(guān)內(nèi)容請(qǐng)關(guān)注php中文網(wǎng)。
相關(guān)推薦:
如何使用數(shù)據(jù)庫(kù)的方法來(lái)保存session
防止SQL注入的五種實(shí)現(xiàn)方式
關(guān)于MySQL 的高可用性:Keepalived 雙主熱備
以上就是MYSQL查詢時(shí)間數(shù)據(jù)的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
學(xué)習(xí)教程快速掌握從入門到精通的SQL知識(shí)。