一、年度查詢
查詢 本年度的資料
FROM blog_article
WHERE year( FROM_UNIXTIME( BlogCreateTime ) ) = year( curdate( ))
二、查詢季度資料
查詢資料附帶季度數
FROM `blog_article`
查詢 本季度的資料
FROM blog_article
WHERE quarter( FROM_UNIXTIME( BlogCreateTime ) ) = quarter( curdate( ))
三、查詢月度資料
本月統計(MySQL)
month(curdate()) and year(booking_time) = year(curdate())
本週統計(MySQL)
month(curdate()) and week(booking_time) = week(curdate())
四、時間段
N天內記錄
當天的記錄
---或
where to_days(時間欄位) = to_days(now());
查詢一週:
查詢一個月:
查詢'06-03'到'07-08'這個時間段內所有過生日的會員:
DATE_FORMAT(birthday,'%m-%d') >= '06-03' and DATE_FORMAT(birthday,'%m-%d')
<= '07-08';
統計一季度資料,表時間欄位為:savetime
---或
select YEAR(savetime)*10+((MONTH(savetime)-1) DIV 3) +1,count(*)
from yourTable
group by YEAR(savetime)*10+((MONTH(savetime)-1) DIV 3) +1;
五、分組查詢
1、年度分組
2、月度分組
3、先按年度分組,再按月度分組
4、按年月分組
結果:
count( ArticleId ) sdate
17 0901
11 0902
5 0903
6 0904
2 0905
1 0907
12 0908
6 0909
11 0910
3 0911
其他方法參考:
做一個統計,資料庫是mysql,統計出每天,每週,每月的記錄數
建表的時候加個欄位表示日期。
方法1,
select count(*) from `table` where date_format(`date`,'%V')='{某周}'
select count(*) from `table` where date_format(`date`,'%c')='{某月}'
方法2,
'2007-11-9 24:00:00';
方法3,
每週的
=2007 group by weekflg
每月
(editdate)=2007 group by monthflg
每天
mysql中DATE_FORMAT(date, format)函式可根據format字串格式化日期或日期和時間值date,返回結果串。
也可用DATE_FORMAT( ) 來格式化DATE 或DATETIME 值,以便得到所希望的格式。根據format字串格式化date值:
函式的引數說明:
%S, %s 兩位數字形式的秒( 00,01, . . ., 59)
%i 兩位數字形式的分( 00,01, . . ., 59)
%H 兩位數字形式的小時,24 小時(00,01, . . ., 23)
%h, %I 兩位數字形式的小時,12 小時(01,02, . . ., 12)
%k 數字形式的小時,24 小時(0,1, . . ., 23)
%l 數字形式的小時,12 小時(1, 2, . . ., 12)
%T 24 小時的時間形式(hh : mm : s s)
%r 12 小時的時間形式(hh:mm:ss AM 或hh:mm:ss PM)
%p AM 或P M
%W 一週中每一天的名稱( Sunday, Monday, . . ., Saturday)
%a 一週中每一天名稱的縮寫( Sun, Mon, . . ., Sat)
%d 兩位數字表示月中的天數( 00, 01, . . ., 31)
%e 數字形式表示月中的天數( 1, 2, . . ., 31)
%D 英文字尾表示月中的天數( 1st, 2nd, 3rd, . . .)
%w 以數字形式表示週中的天數( 0 = Sunday, 1=Monday, . . ., 6=Saturday)
%j 以三位數字表示年中的天數( 001, 002, . . ., 366)
% U 周(0, 1, 52),其中Sunday 為週中的第一天
%u 周(0, 1, 52),其中Monday 為週中的第一天
%M 月名(January, February, . . ., December)
%b 縮寫的月名( January, February, . . ., December)
%m 兩位數字表示的月份( 01, 02, . . ., 12)
%c 數字表示的月份( 1, 2, . . ., 12)
%Y 四位數字表示的年份
%y 兩位數字表示的年份
%% 直接值“%”