Oracle FIRST_VALUE函数语法详解及应用实例

查询语句中发现与主键匹配的机构名有多个,业务要求只显示排在最前面的一个。

试了group by,发现主查询返回记录数会狂增,用FIRST_VALUE后问题基本解决。

SQL语句与以下类似:

ACSN
AS
(
SELECT DISTINCT
       cs.P_ID AS P_ID,
       css.SSN AS SSN,
       ci.HMS_ID AS HMS_ID,
       ci.HMS_ID AS HMS_ID,
       FIRST_VALUE(org.ORG_NAME) OVER (PARTITION BY cs.P_ID,css.SSN ORDER BY org.ORG_NAME) AS ACSN
      
FROM   HDDO.OA_V org,   
       HDDO.CIA_V ci,     
       HDDO.CSA_V cs,   
       HDDO.CSSA_V css  


WHERE  org.HO_ID=ci.HO_ID
       AND ci.HMS_ID=cs.HMS_ID
       AND ci.HMS_ID=css.HMS_ID
       AND ci.CONTACT_ROLE='ACSNL' 
       AND ci.CONTACT_STATUS= 'ACTIVE'
       AND org.ETL_YN_DELETED='N'
       AND ci.ETL_YN_DELETED='N'
)


以下为Oracle Database SQL Language Reference中关于FIRST_VALUE函数的说明。

------------------------------------------------------------------------------------------------------------------------------------

FIRST_VALUE


Syntax


Purpose
FIRST_VALUE is an analytic function. It returns the first value in an ordered set of values. If the first value in the set is null, then the function returns NULL unless you
specify IGNORE NULLS. This setting is useful for data densification.
{RESPECT | IGNORE} NULLS determines whether null values of expr are included in or eliminated from the calculation. The default is RESPECT NULLS. If you specify IGNORE NULLS, then FIRST_VALUE returns the first non-null value in the set, or NULL if all values are null. Refer to "Using Partitioned Outer Joins: Examples" on page 19-52 for an example of data densification.
You cannot nest analytic functions by using FIRST_VALUE or any other analytic function for expr. However, you can use other built-in function expressions for expr.
Refer to "About SQL Expressions" on page 6-1 for information on valid forms of expr.
Examples
The following example selects, for each employee in Department 90, the name of the employee with the lowest salary.
SELECT department_id, last_name, salary,
FIRST_VALUE(last_name)
OVER (ORDER BY salary ASC ROWS UNBOUNDED PRECEDING) AS lowest_sal
FROM (SELECT * FROM employees
WHERE department_id = 90
ORDER BY employee_id)
ORDER BY last_name;
DEPARTMENT_ID LAST_NAME SALARY LOWEST_SAL
------------- ------------------------- ---------- -------------------------
90 De Haan 17000 Kochhar
90 King 24000 Kochhar
90 Kochhar 17000 Kochhar
See Also: "Analytic Functions" on page 5-11 for information on syntax, semantics, and restrictions, including valid forms of expr
Note: The two forms of this syntax have the same behavior. The top branch is the ANSI format, which Oracle recommends. The bottom branch is deprecated but is supported for backward compatibility.
FIRST_VALUE
( expr )
RESPECT
IGNORE
NULLS
( expr
RESPECT
IGNORE
NULLS
)
OVER ( analytic_clause )
FIRST_VALUE

The example illustrates the nondeterministic nature of the FIRST_VALUE function.
Kochhar and DeHaan have the same salary, so are in adjacent rows. Kochhar appears first because the rows returned by the subquery are ordered by employee_id.
However, if the rows returned by the subquery are ordered by employee_id in descending order, as in the next example, then the function returns a different value:
SELECT department_id, last_name, salary,
FIRST_VALUE(last_name)
OVER (ORDER BY salary ASC ROWS UNBOUNDED PRECEDING) AS fv
FROM (SELECT * FROM employees
WHERE department_id = 90
ORDER by employee_id DESC)
ORDER BY last_name;
DEPARTMENT_ID LAST_NAME SALARY FV
------------- ------------------------- ---------- -------------------------
90 De Haan 17000 De Haan
90 King 24000 De Haan
90 Kochhar 17000 De Haan
The following example shows how to make the FIRST_VALUE function deterministic by
ordering on a unique key.
SELECT department_id, last_name, salary, hire_date,
FIRST_VALUE(last_name)
OVER (ORDER BY salary ASC, hire_date ROWS UNBOUNDED PRECEDING) AS fv
FROM (SELECT * FROM employees
WHERE department_id = 90
ORDER BY employee_id DESC)
ORDER BY last_name;
DEPARTMENT_ID LAST_NAME SALARY HIRE_DATE FV
------------- --------------- ---------- --------- -------------------------
90 De Haan 17000 13-JAN-01 De Haan
90 King 24000 17-JUN-03 De Haan
90 Kochhar 17000 21-SEP-05 De Haan
When you use a logical offset (RANGE instead of ROWS), the function is deterministic.
When duplicates are found for the ORDER BY expression, the FIRST_VALUE is the lowest value of expr:
SELECT department_id, last_name, salary,
FIRST_VALUE(last_name)
OVER (ORDER BY salary ASC RANGE UNBOUNDED PRECEDING) AS lowest_sal
FROM (SELECT * FROM employees
WHERE department_id = 90
ORDER BY employee_id);
DEPARTMENT_ID LAST_NAME SALARY LOWEST_SAL
------------- ------------------------- ---------- -------------------------
90 De Haan 17000 De Haan
90 Kochhar 17000 De Haan
90 King 24000 De Haan




  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值