度量快速开发平台-专业、快速的软件定制快开平台
标题:
oracle按每天,每周,每月,每季度,每年查询统计数据
[打印本页]
作者:
fteair
时间:
2020-6-1 14:09
作者:
张兴康
时间:
2020-6-1 14:58
作者:
caixuqad
时间:
2020-6-3 16:52
作者:
caixuqad
时间:
2020-6-30 19:19
标题:
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'),sum()
from tablename
group by to_char(date,'q')
//按年统计
select to_char(date,'yyyy'),sum()
from tablename
group by to_char(date,'yyyy')
作者:
caixuqad
时间:
2020-6-30 19:20
欢迎光临 度量快速开发平台-专业、快速的软件定制快开平台 (http://plat.delit.cn/)
Powered by Discuz! X3.2