按日、周、月統計資料sql
/*查詢最近7天資料資訊(按天分組)*/
select count(d.acct_id),d.acct_old_time from developer d where 1=1 and date_sub(curdate(), interval 7 day) <= date(d.acct_old_time) group by d.acct_old_time
/*查詢最近乙個月資料資訊(按天分組)*/
select count(d.acct_id),d.acct_old_time from developer d where 1=1 and date_sub(curdate(), interval 30 day) <= date(d.acct_old_time) group by d.acct_old_time
/*查詢最近三個月資料資訊(按周分組)*/
select count(d.acct_id), date_format(d.acct_old_time,'%x年-第%v周') as weeks from developer d where 1=1 and date_sub(curdate(), interval 90 day) <= date(d.acct_old_time) group by weeks
/*查詢大於三個月資料資訊(按月分組)*/
select count(d.acct_id), date_format(d.acct_old_time,'%y%m') as months from developer d where 1=1 group by months
date_format(date,format)
根據format字串格式化date值。下列修飾符可以被用在format字串中:
%m 月名字(january……december)
%w 星期名字(sunday……saturday)
%d 有英語字首的月份的日期(1st, 2nd, 3rd, 等等。)
%y 年, 數字, 4 位
%y 年, 數字, 2 位
%a 縮寫的星期名字(sun……sat)
%d 月份中的天數, 數字(00……31)
%e 月份中的天數, 數字(0……31)
%m 月, 數字(01……12)
%c 月, 數字(1……12)
%b 縮寫的月份名字(jan……dec)
%j 一年中的天數(001……366)
%h 小時(00……23)
%k 小時(0……23)
%h 小時(01……12)
%i 小時(01……12)
%l 小時(1……12)
%i 分鐘, 數字(00……59)
%r 時間,12 小時(hh:mm:ss [ap]m)
%t 時間,24 小時(hh:mm:ss)
%s 秒(00……59)
%s 秒(00……59)
%p am或pm
%w 乙個星期中的天數(0=sunday ……6=saturday )
%u 星期(0……52), 這裡星期天是星期的第一天
%u 星期(0……52), 這裡星期一是星期的第一天
%% 乙個文字「%」。
MySql按周,按月,按日分組統計資料
select date format create time,y u weeks,count caseid count from tc case group byweeks select date format create time,y m d days,count caseid count fr...
MySql按周,按月,按日分組統計資料
select date format create time,y u weeks,count caseid count from tc case group by weeks select date format create time,y m d days,count caseid count f...
MySql按周,按月,按日分組統計資料
select date format create time,y u weeks,count caseid count from tc case group by weeks select date format create time,y m d days,count caseid count f...