mysql如何按年和月统计

mysql如何按年和月统计,第1张

select DATE_FORMAT(来电时间,'%Y-%m') as 月, 问题类别 , count(1) as 数量 from

( select 来电时间, 问题类别 from mytable where 问题类别 = '农村用水投诉' ) tmptable

group by DATE_FORMAT(来电时间,'%Y-%m') ,问题类别 ORDER BY 月 ASC

select

table.year,

table.month,

table.day

from

(SELECT

year(time) year,

month(time) month,

day(time) day

FROM

table) table

group by table.year,table.month,table.day

order BY table.year,table.month,table.day desc

望采纳,有疑问或是有更好写法,请多交流


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6170851.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-17
下一篇 2023-03-17

发表评论

登录后才能评论

评论列表(0条)

保存