mysql统计语句

按年汇总,统计:
select   sum(mymoney) as   totalmoney,count(*)   as   sheets   from   mytable   where   1   group   by   date_format(col, '%Y ')   ;

按月汇总,统计:
select   sum(mymoney) as   totalmoney,count(*)   as   sheets   from   mytable   where   1   group   by   date_format(col, '%Y-%m ')   ;

按季度汇总,统计:
select   sum(mymoney) as   totalmoney,count(*)   as   sheets   from   mytable   where   1   group   by   concat(date_format(col, '%Y'),FLOOR((date_format(col, '%m')+2)/3));
select   sum(mymoney) as   totalmoney,count(*)   as   sheets   from   mytable   where   1   group   by   concat(date_format(col, '%Y'),FLOOR((date_format(col, '%m')+2)/3));

按小时:
select   sum(mymoney) as   totalmoney,count(*)   as   sheets   from   mytable   where   1   group   by   date_format(col, '%Y-%m-%d   %H ')   ;

一、年度查询
查询 本年度的数据
SELECT *
FROM blog_article
WHERE year( FROM_UNIXTIME( BlogCreateTime ) ) = year( curdate( ))


二、查询季度数据
查询数据附带季度数
SELECT ArticleId, quarter( FROM_UNIXTIME( `BlogCreateTime` ) )
FROM `blog_article`
其他的同前面部分:查询 本季度的数据
SELECT *
FROM blog_article
WHERE quarter( FROM_UNIXTIME( BlogCreateTime ) ) = quarter( curdate( ))

 

三、查询月度数据
本月统计(MySQL)
select * from booking where month(booking_time) =

month(curdate()) and year(booking_time) = year(curdate())

本周统计(MySQL)

select * from spf_booking where month(booking_time) =

month(curdate()) and week(booking_time) = week(curdate())


四、时间段

N天内记录

WHERE TO_DAYS(NOW()) - TO_DAYS(时间字段) <= N

你可能感兴趣的:(mysql,Blog)