From: http://www.jbxue.com/db/758.htmlhtml
mysql有個字段是DATETIME類型,要實現能夠按月統計,該怎麼寫sql語句?
select month(f1) from tt group by month(f1)
ormysql
select DATE_FORMAT(f1,'%m') from tt group by DATE_FORMAT(f1,'%m')git
好比數據庫的爲2008-01-15 12:10:00
則DATE_FORMAT的參數格式分別獲得的結果爲:
'%Y' 2008
'%Y-%m' 2008-01
'%Y-%c' 2008-1
'%m' 01
'%c' 1sql
Date_format格式說明:
格式 描述
%a 縮寫星期名
%b 縮寫月名
%c 月,數值
%D 帶有英文前綴的月中的天
%d 月的天,數值(00-31)
%e 月的天,數值(0-31)
%f 微妙
%H 小時(00-23)
%h 小時(01-12)
%I 小時(01-12)
%i 分鐘,數值(00-59)
%j 年的天(001-366)
%k 小時(0-23)
%l 小時(1-12)
%M 月名
%m 月,數值(00-12)
%p AM或PM
%r 時間,12-小時(hh:mm:ss AM或PM)
%S 秒(00-59)
%s 秒(00-59)
%T 時間, 24-小時(hh:mm:ss)
%U 周(00-53)星期日是一週的第一天
%u 周(00-53)星期一是一週的第一天
%V 周(01-53)星期日是一週的第一天,與%X使用
%v 周(01-53)星期一是一週的第一天,與%x使用
%W 星期名
%w 周的天(0=星期日, 6=星期六)
%X 年,其中的星期日是周的第一天,4位,與%V使用
%x 年,其中的星期一是周的第一天,4位,與%v使用
%Y 年,4位
%y 年,2位數據庫
按季度存數據
select YEAR(procurement_dt)*10+((MONTH(procurement_dt)-1) DIV 3) +1, MONTH(procurement_dt) , procurement_dt from xs001
groupbyconcat(date_format(savetime,'%Y'),FLOOR((date_format(savetime,'%m')+2)/3))spa
另外的按月統計方式orm
MySQL-按月統計數據
統計2010年 每個月的資金htm
select DATE_FORMAT(date,'%Y-%m') as month,sum(money) as money from finance where DATE_FORMAT(date,'%Y')=2010 group by month order by month blog
1若是週一爲一週的第一天,則(小寫) DATE_FORMAT(date,'%x %v') 教程
2若是週日爲一週的第一天,則(大寫) DATE_FORMAT(date,'%X %V')
統計每一個星期
select DATE_FORMAT(date,'%x年-第%v周') as week,sum(money) as money from finance_base where DATE_FORMAT(date,'%Y')=2010 group by week;
select ((year(`recview`.`paytime`) * 100) + month(`recview`.`paytime`)) AS `paytime`,sum(`recview`.`rent`) AS `rent` from `recview` group by
((year(`recview`.`paytime`) * 100) + month(`recview`.`paytime`)) order by ((year(`recview`.`paytime`) * 100) + month(`recview`.`paytime`));
您可能感興趣的文章:
Mysql 按年度、季度、月度、周、日統計查詢的例子
mysql按年度、季度、月度、周、日統計查詢的sql語句
mysql查詢:上週、月、季度、年和本週、月、季度、年
-----------------------------------------------------------------------------------
From: http://phl.iteye.com/blog/717872
表finance有倆個字段以下
date date
money double(15,2)
下面須要對錶finance的2010年財務數據,按月進行統計
下面是按周統計
查看MySQL的manual
%X Year for the week where Sunday is the first day of the week, numeric, four digits; used with %V
%x Year for the week, where Monday is the first day of the week, numeric, four digits; used with %v
其中
1若是週一爲一週的第一天,則(小寫) DATE_FORMAT(date,'%x %v')
2若是週日爲一週的第一天,則(大寫) DATE_FORMAT(date,'%X %V')