摘要: 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(dat 阅读全文
posted @ 2019-10-23 16:32 小泉哥 阅读(3168) 评论(0) 推荐(0)