//按天统计
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')
再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.youkuaiyun.com/jiangjunshow
SQL时间维度统计
本文提供了按天、自然周、自然月、季、年进行数据统计的SQL查询方法,包括使用TRUNC和TO_CHAR函数对日期进行格式化处理,以便于进行时间维度的数据聚合。
915

被折叠的 条评论
为什么被折叠?



