学习动态性能表(22)V$resource_limit
posted @ 2015-03-13 13:36 jack_Meng 阅读(57) | 评论 (0) 编辑
标签:
Oracle按不同时间分组统计的sql
如下表table1: 日期(exportDate) 数量(amount) -------------- ----------- 14-2月 -08 20 10-3月 -08 2 14-4月 -08 6 14-6月 -08 75 24-10月-09 23 14-11月-09 45 04-8月 -10 5 04-9月 -10 44 04-10月-10 88 注意:为了显示更直观,如下查询已皆按相应分组排序 1.按年份分组 select to_char(exportDate,‘yyyy‘),sum(amount) from table1 group by to_char(exportDate,‘yyyy‘); 年份 数量 ----------------------------- 2009 68 2010 137 2008 103 2.按月份分组 select to_char(exportDate,‘yyyy-mm‘),sum(amount) from table1 group by to_char(exportDate,‘yyyy-mm‘) order by to_char(exportDate,‘yyyy-mm‘); 月份 数量 ----------------------------- 2008-02 20 2008-03 2 2008-04 6 2008-06 75 2009-10 23 2009-11 45 2010-08 5 2010-09 44 2010-10 88 3.按季度分组 select to_char(exportDate,‘yyyy-Q‘),sum(amount) from table1 group by to_char(exportDate,‘yyyy-Q‘) order by to_char(exportDate,‘yyyy-Q‘); 季度 数量 ------------------------------ 2008-1 22 2008-2 81 2009-4 68 2010-3 49 2010-4 88 4.按周分组 select to_char(exportDate,‘yyyy-IW‘),sum(amount) from table1 group by to_char(exportDate,‘yyyy-IW‘) order by to_char(exportDate,‘yyyy-IW‘); 周 数量 ------------------------------ 2008-07 20 2008-11 2 2008-16 6 2008-24 75 2009-43 23 2009-46 45 2010-31 5 2010-35 44 2010-40 88
出处:http://www.2cto.com/database/201309/243555.html
posted @ 2015-03-13 13:36 jack_Meng 阅读(57) | 评论 (0) 编辑
posted @ 2015-03-13 13:32 jack_Meng 阅读(24) | 评论 (0) 编辑
posted @ 2015-03-13 13:31 jack_Meng 阅读(20) | 评论 (0) 编辑
posted @ 2015-03-13 13:30 jack_Meng 阅读(14) | 评论 (0) 编辑
posted @ 2015-03-13 13:29 jack_Meng 阅读(15) | 评论 (0) 编辑
posted @ 2015-03-13 13:27 jack_Meng 阅读(22) | 评论 (0) 编辑
posted @ 2015-03-13 13:26 jack_Meng 阅读(21) | 评论 (0) 编辑
posted @ 2015-03-13 13:25 jack_Meng 阅读(14) | 评论 (0) 编辑
posted @ 2015-03-13 13:23 jack_Meng 阅读(18) | 评论 (0) 编辑
posted @ 2015-03-13 13:22 jack_Meng 阅读(23) | 评论 (0) 编辑
posted @ 2015-03-13 13:21 jack_Meng 阅读(7) | 评论 (0) 编辑
posted @ 2015-03-13 13:19 jack_Meng 阅读(9) | 评论 (0) 编辑
posted @ 2015-03-13 13:17 jack_Meng 阅读(16) | 评论 (0) 编辑
posted @ 2015-03-13 13:16 jack_Meng 阅读(8) | 评论 (0) 编辑
posted @ 2015-03-13 13:14 jack_Meng 阅读(70) | 评论 (0) 编辑
posted @ 2015-03-12 16:11 jack_Meng 阅读(9) | 评论 (0) 编辑
posted @ 2015-03-12 16:05 jack_Meng 阅读(7) | 评论 (0) 编辑
posted @ 2015-03-12 16:02 jack_Meng 阅读(13) | 评论 (0) 编辑
posted @ 2015-03-12 15:59 jack_Meng 阅读(12) | 评论 (0) 编辑
posted @ 2015-03-12 15:56 jack_Meng 阅读(12) | 评论 (0) 编辑
posted @ 2015-03-12 15:53 jack_Meng 阅读(3) | 评论 (0) 编辑
posted @ 2015-03-12 15:44 jack_Meng 阅读(9) | 评论 (0) 编辑
posted @ 2015-03-12 15:20 jack_Meng 阅读(14) | 评论 (0) 编辑
posted @ 2014-12-30 13:32 jack_Meng 阅读(216) | 评论 (0) 编辑
posted @ 2014-12-24 17:29 jack_Meng 阅读(15) | 评论 (0) 编辑
posted @ 2014-12-24 11:22 jack_Meng 阅读(130) | 评论 (0) 编辑
posted @ 2014-12-18 14:53 jack_Meng 阅读(12) | 评论 (0) 编辑
posted @ 2014-12-18 14:50 jack_Meng 阅读(23) | 评论 (0) 编辑
posted @ 2014-12-18 14:48 jack_Meng 阅读(20) | 评论 (0) 编辑
posted @ 2014-12-18 14:47 jack_Meng 阅读(202) | 评论 (0) 编辑
posted @ 2014-12-18 14:43 jack_Meng 阅读(282) | 评论 (0) 编辑
posted @ 2014-12-11 12:12 jack_Meng 阅读(5) | 评论 (0) 编辑
posted @ 2014-12-11 11:50 jack_Meng 阅读(22) | 评论 (0) 编辑
posted @ 2014-12-10 16:47 jack_Meng 阅读(38) | 评论 (0) 编辑
posted @ 2014-12-10 16:44 jack_Meng 阅读(638) | 评论 (2) 编辑
posted @ 2014-12-10 16:27 jack_Meng 阅读(3182) | 评论 (1) 编辑
posted @ 2014-12-10 15:42 jack_Meng 阅读(40) | 评论 (0) 编辑
posted @ 2014-12-10 12:14 jack_Meng 阅读(937) | 评论 (0) 编辑
posted @ 2014-04-30 17:22 jack_Meng 阅读(2503) | 评论 (0) 编辑
posted @ 2014-04-30 17:15 jack_Meng 阅读(82) | 评论 (0) 编辑
posted @ 2014-04-30 16:41 jack_Meng 阅读(45) | 评论 (0) 编辑
posted @ 2014-04-30 16:24 jack_Meng 阅读(828) | 评论 (0) 编辑
posted @ 2014-04-29 16:12 jack_Meng 阅读(22) | 评论 (0) 编辑
posted @ 2014-04-29 16:07 jack_Meng 阅读(2143) | 评论 (0) 编辑
posted @ 2014-04-21 13:29 jack_Meng 阅读(40) | 评论 (0) 编辑
posted @ 2014-04-21 12:44 jack_Meng 阅读(45) | 评论 (0) 编辑
posted @ 2014-04-21 12:39 jack_Meng 阅读(1130) | 评论 (0) 编辑
posted @ 2014-04-21 12:30 jack_Meng 阅读(75) | 评论 (0) 编辑
posted @ 2014-04-21 12:29 jack_Meng 阅读(36) | 评论 (0) 编辑
posted @ 2014-04-21 11:46 jack_Meng 阅读(220) | 评论 (0) 编辑
posted @ 2014-04-21 11:36 jack_Meng 阅读(2175) | 评论 (0) 编辑
posted @ 2014-04-21 11:23 jack_Meng 阅读(212) | 评论 (0) 编辑
posted @ 2014-04-21 11:09 jack_Meng 阅读(40) | 评论 (0) 编辑
posted @ 2014-04-21 11:06 jack_Meng 阅读(28) | 评论 (0) 编辑
posted @ 2014-04-21 11:05 jack_Meng 阅读(79) | 评论 (0) 编辑
posted @ 2014-04-02 15:37 jack_Meng 阅读(72) | 评论 (0) 编辑
posted @ 2014-03-01 11:56 jack_Meng 阅读(256) | 评论 (0) 编辑
posted @ 2012-12-31 15:06 jack_Meng 阅读(92) | 评论 (0) 编辑
posted @ 2012-12-31 15:04 jack_Meng 阅读(4300) | 评论 (0) 编辑
posted @ 2012-11-17 14:50 jack_Meng 阅读(45) | 评论 (0) 编辑
posted @ 2012-11-13 16:52 jack_Meng 阅读(35) | 评论 (0) 编辑
posted @ 2012-11-13 16:35 jack_Meng 阅读(446) | 评论 (0) 编辑
posted @ 2012-11-13 16:33 jack_Meng 阅读(65) | 评论 (0) 编辑
posted @ 2012-11-09 17:00 jack_Meng 阅读(1162) | 评论 (0) 编辑
posted @ 2012-11-09 16:41 jack_Meng 阅读(6489) | 评论 (0) 编辑
posted @ 2012-11-08 14:25 jack_Meng 阅读(5840) | 评论 (0) 编辑
posted @ 2012-11-07 16:25 jack_Meng 阅读(43) | 评论 (0) 编辑
posted @ 2012-11-05 12:55 jack_Meng 阅读(55) | 评论 (0) 编辑
posted @ 2012-11-05 12:53 jack_Meng 阅读(39) | 评论 (0) 编辑
标签:
原文地址:http://www.cnblogs.com/Leo_wl/p/4713735.html