还在苦苦敲代码开发APP?你out啦! 试试积木搭建APP吧~

oracle group 取每组第一条

来源:清泛编译     2017-04-06 16:56:31    人气:     我有话说( 0 人参与)

Oracle查询:取出每组中的第一条记录按type字段分组,code排序,取出每组中的第一条记录方法一:select type,min(code) from group_infogro...

Oracle查询:取出每组中的第一条记录

按type字段分组,code排序,取出每组中的第一条记录:

 

方法一:

select type,min(code) from group_info group by type;

注意:select 后面的列要在group by 子句中,或是用聚合函数包含,否则会有语法错误。

 

方法二:

SELECT * FROM(
SELECT z.type , z.code ,ROW_NUMBER()
OVER(PARTITION BY z.type ORDER BY z.code) AS code_id
FROM group_info z
)
WHERE code_id =1;

这里涉及到的over()是oracle的分析函数。

 

参考sql reference文档:

Analytic functions compute an aggregate value based on a group of rows. They differ from aggregate functions in that they return multiple rows for each group.

Analytic functions are the last set of operations performed in a query except for the final ORDER BY clause. All joins and all WHERE , GROUP BY , and HAVING clauses are completed before the analytic functions are processed. Therefore, analytic functions can appear only in the select list or ORDER BY clause.

语法结构:

analytic_function ([ arguments ]) OVER (analytic_clause)

其中analytic_clause结构包括:

[ query_partition_clause ] [ order_by_clause [ windowing_clause ] ]

也就是:函数名( [ 参数 ] ) over( [ 分区子句 ]  [ 排序子句 [ 滑动窗口子句 ] ])

这里PARTITION BY 引导的分区子句类似于聚组函数中的group by,排序子句可看成是select语句中的order by。

oracle group

本文源自互联网,采用知识共享署名-非商业性使用 4.0 国际许可协议进行许可,
版权归原作者,如有问题请联系service@tsingfun.com (编辑:admin)
分享到: