select date_format(created_date,'%y-%m-%d') as time,count(1) count from t_warn_info where device_adress = '301800000000' group by time
select date_format(created_date,'%y-%m') as time,count(1) count from t_warn_info where device_adress = '301800000000' group by time
select date_format(created_date,'%y') as time,count(1) count from t_warn_info where device_adress = '301800000000' group by time
select date_format(created_date,'%y-%u') as time,count(1) count from t_warn_info where device_adress = '301800000000' group by time
將 date_format()函式 替換為 from_unixtime()
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), 這裡星期一是星期的第一天
%% 乙個文字「%」。
直接在第乙個group by 逗號隔開拼接
select date_format(created_date,'%y') as time,age,count(1) count from t_warn_info where device_adress = '301800000000' group by time ,age
Mysql按年按月按日按周統計查詢
select date format created date,y m d as time,sum money money from o finance detail where org id 1000 group by time select date format created date,y ...
Mysql按日 周 月進行分組統計
我們在用mysql抽取資料時候,經常需要按照天 周 月等不同的粒度對資料進行分組統計。而我們的時間可能是 2017 12 5 0 0 0 這種準確的時間。所以在進行分組之前我們需要對時間進行一下處理。date format是mysql內建的乙個函式,作用是以不同的格式顯示日期 時間資料。具體的語法如...
sqlserver 按日 周 月統計方法
create table t 日期時間 datetime,數量 int insert t select 2007 1 1 19 31 25 56 union allselect 2007 1 1 21 31 25 35 union allselect 2007 1 1 15 31 25 43 uni...