码迷,mamicode.com
首页 > 数据库 > 详细

sql 统计查询(按月统计)

时间:2018-07-27 15:30:45      阅读:632      评论:0      收藏:0      [点我收藏+]

标签:eve   left join   check   rac   group by   ring   str   order by   dual   

--String 类型 转化为 年月日  yyyy-mm-dd      to_date(substr(t.submit_time,1,10)))

如果统计一年  需要用  left  join 

(select level mymonth from dual
connect by level<13) n  

left join  (

select  extract(month from to_date(v.CHECK_TIME,‘yyyy-mm-dd hh24:mi:ss‘)) as  tmonths from table_name v

group by extract(month from to_date(v.CHECK_TIME,‘yyyy-mm-dd hh24:mi:ss‘)) 

ORDER BY tmonths  ) m  on  m.tmonths  =n.mymonth 

sql 统计查询(按月统计)

标签:eve   left join   check   rac   group by   ring   str   order by   dual   

原文地址:https://www.cnblogs.com/xkoko/p/9377658.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!