oracle 按每天,每周,每月,每季度,每年查询统计数据

前端之家收集整理的这篇文章主要介绍了oracle 按每天,每周,每月,每季度,每年查询统计数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
oracle 按每天,每周,每月,每季度,每年查询统计数据

//按天统计

select count(dataid) as 每天操作数量,sum()

from tablename

group by trunc(createtime,DD))

//按自然周统计 
select to_char(date,iw),sum() 
from  tablename
group by to_char(date,iw) 

//按自然月统计 
select to_char(date,mm),sum() 
from   tablename
group by to_char(date,mm) 

//按季统计 
select to_char(date,q),q) 

//按年统计 
select to_char(date,yyyy),yyyy)

猜你在找的Oracle相关文章