ORACLE代码基于月份分组数据

时间:2017-01-11 19:47:47

标签: sql

我的表格的日期格式为yyyymmdd。我想根据月份和通知类型提取报告。

Below is the input

以下是预期产量。

Expected output

请告诉我们。如何使用SQL实现这一目标?

1 个答案:

答案 0 :(得分:0)

这样的事情会起作用。

 select to_number(substr(date, 5, 2)) month
 , notiftype
 , count(*)
 from yourTable
 group by to_number(substr(date, 5, 2)), notiftype

但是,选择没有年份的月份很少是个好主意。