博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
orale 查询每年、每月、每日统计量的sql语句
阅读量:6703 次
发布时间:2019-06-25

本文共 597 字,大约阅读时间需要 1 分钟。

每年
select to_char(createtime, 'YYYY') 年, count(*) from table  group by to_char(createtime, 'YYYY');
每季度
select to_char(createtime, 'q') 年, count(*) from table  group by to_char(createtime, 'q');
每月
select to_char(createtime, 'YYYY') 年, to_char(createtime, 'mm') 月, count(*) from table  group by to_char(createtime, 'YYYY'), to_char(createtime, 'mm');
每日
select to_char(createtime, 'YYYY') 年,to_char(createtime, 'mm') 月,to_char(createtime, 'dd') 日, count(*) from table group by to_char(createtime, 'YYYY'), to_char(createtime, 'mm'),to_char(createtime, 'dd');
当中createtime为date类型。假设为varchar先要转换为date类型

转载地址:http://magoo.baihongyu.com/

你可能感兴趣的文章
Windows 恢复环境(Windows RE模式)
查看>>
基于Annotation的输入校验
查看>>
Kinect for windows开发准备
查看>>
SQL Server 2012 官方培训课程体系
查看>>
为什么恍然大悟与知识管理的几个感触:人艰不拆
查看>>
Microsoft Azure Site Recovery (1) 安装服务器代理
查看>>
Vmware view 5.0 POC环境搭建参考v1.0
查看>>
程序员娶妻子的经典准则
查看>>
【点评】运维工程师的职责和前景 【第一次编辑】
查看>>
smarty配置以及变量调节器详解
查看>>
rman备份恢复命令之switch
查看>>
技术合作 索尼腾龙联手申请镜头专利
查看>>
关于 MySQL 8.0 新特性“隐藏索引”的一点思考
查看>>
使用Spring Data Redis操作Redis(二)
查看>>
Cisco c3560三层交换机配置
查看>>
SystemCenter2012SP1实践(33)离线申请证书与远程桌面证书
查看>>
Lync日常维护之二:批量修改用户所属SIP域
查看>>
docker高级应用之集群与auto scale
查看>>
Mysql高性能备份方案解决数据不间断访问(LVM快照方式备份)
查看>>
Hyper-V 3.0服务器虚拟化:打造坚固的云
查看>>