博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle分析函数比较
阅读量:6041 次
发布时间:2019-06-20

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

hot3.png

select * from IMD_WMQ_SF_OUT where rownum<5; select entry_station, entry_lane, sum(total_toll)  from IMD_WMQ_SF_OUT where rownum<20 group by grouping sets(entry_station, entry_lane) ----------------------------------------------------- ---grouping sets(entry_station, entry_lane)  等价-- ---------------------------------------------------- select * from ( select entry_station, null,  sum(total_toll ) from IMD_WMQ_SF_OUT group by entry_station union all select null, entry_lane, sum(total_toll  ) from IMD_WMQ_SF_OUT group by entry_lane ) -------------------------------------------------------------- select entry_station,entry_lane,sum(total_toll) from IMD_WMQ_SF_OUT group by rollup(entry_station,entry_lane) ---等效--- select * from (select entry_station,entry_lane,sum(total_toll)  from IMD_WMQ_SF_OUT group by entry_station,entry_lane union select entry_station,null,sum(total_toll)  from IMD_WMQ_SF_OUT group by entry_station union select null,entry_lane,sum(total_toll)  from IMD_WMQ_SF_OUT group by entry_lane union select null,null,sum(total_toll) from IMD_WMQ_SF_OUT) ----------------------------------------------------------- select entry_station,entry_lane,sum(total_toll) from IMD_WMQ_SF_OUT where rownum<100 group by cube(entry_station,entry_lane)

转载于:https://my.oschina.net/u/1866459/blog/475513

你可能感兴趣的文章
android 模拟器 hardWare 属性说明
查看>>
六款值得推荐的android(安卓)开源框架简介
查看>>
max_element( )
查看>>
CSS Grid 布局
查看>>
接口的幂等性
查看>>
java中的类
查看>>
android 自定义文字跑马灯 支持拖拽,按住停止滚动,自定义速度
查看>>
SpringMVC完成文件上传的基本步骤
查看>>
实例168 使用指针输出数组元素
查看>>
bind 与unbind
查看>>
CSS: Flexbox
查看>>
Python学习
查看>>
Java并发_volatile实现可见性但不保证原子性
查看>>
百度地图添加带数字标注
查看>>
【luogu 1908】逆序对
查看>>
pthread_create线程创建的过程剖析(转)
查看>>
android存储访问框架Storage Access Framework
查看>>
周总结
查看>>
Spring Boot 要点--启动类和热部署
查看>>
Maven配置及本地仓库设置
查看>>