数据库

位置:IT落伍者 >> 数据库 >> 浏览文章

Oracle按不同时间分组统计的sql


发布日期:2022年04月27日
 
Oracle按不同时间分组统计的sql

Oracle按不同时间分组统计的sql

如下表table:

日期(exportDate) 数量(amount)

注意为了显示更直观如下查询已皆按相应分组排序

按年份分组

select to_char(exportDateyyyysum(amount) from table group by to_char(exportDateyyyy

年份 数量

按月份分组

select to_char(exportDateyyyymmsum(amount) from table group by to_char(exportDateyyyymm

order by to_char(exportDateyyyymm

月份 数量

按季度分组

select to_char(exportDateyyyyQsum(amount) from table group by to_char(exportDateyyyyQ

order by to_char(exportDateyyyyQ

季度 数量

按周分组

select to_char(exportDateyyyyIWsum(amount) from table group by to_char(exportDateyyyyIW

order by to_char(exportDateyyyyIW

周 数量

上一篇:Oracle数据库替代加密算法

下一篇:OracleDBA数据库日常维护完全手册