我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Oracle Lead/Last函数

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Oracle Lead/Last函数

Oracle Lead/Last函数

1.   Syntax

Oracle Lead/Last函数

Purpose

 

FIRST and LAST are very similar functions.Both are aggregate and analytic functions that operate on a set of values froma set of rows that rank as the FIRST or LAST withrespect to a given sorting specification. If only one row ranks as FIRSTor LAST, then the aggregate operates on the set with only one element.

 

If you omit the OVERclause, then the FIRST and LAST functions are treated as aggregate functions. You can use thesefunctions as analytic functions by specifying the OVER clause. Thequery_partition_clause is the only part of the OVER clause valid with thesefunctions. If you include the OVER clause but omit thequery_partition_clause, then the function is treated as an analytic function, but the window defined for analysis is theentire table.

中文说明:省略over子句,Fisrt/Last被当做聚合函数使用,见示例1;含over关键字但没query_partition_clause,Fisrt/Last被当做分析函数使用,分析的窗口是整个表,见示例2。

 

These functions take as an argument anynumeric data type or any nonnumeric data type that can be implicitly convertedto a numeric data type. The function returns the same data type as the numericdata type of the argument.

 

When you need a value from the first orlast row of a sorted group, but the needed value is not the sort key, the FIRSTand LAST functions eliminate the need for self-joins or views and enable betterperformance.

 

The aggregate_functionargument is any one of the MIN, MAX, SUM, AVG, COUNT, VARIANCE, or STDDEVfunctions. It operates on values from the rows thatrank either FIRST or LAST. If only one row ranks as FIRST or LAST, then theaggregate operates on a singleton (nonaggregate) set.

 

The KEEP keyword is for semantic clarity.It qualifies aggregate_function, indicating that only the FIRST or LAST valuesof aggregate_function will be returned.

 

DENSE_RANK FIRST or DENSE_RANK LASTindicates that Oracle Database will aggregate over only those rows with theminimum (FIRST) or the maximum (LAST) dense rank (also called olympic rank).

2.   说明

min(job_id) keep(dense_rank first order bycount(job_id) desc) over(partition by department_id)

语义:按每个部门查找工种人数最多的工种。

min:例如某个部门,人数占用最多的工种有两个,例如某个部门A工种3人,B工种3人,这时用min返回的值就是A,相应的用max返回的值就是B。若你想用AVG这类函数,则会报错,invalid number。其实作用就是防止返回两个值,也不是网上说的,完全没有意义(max和min结果是不一样的)。

keep:关键字。

dense_rank:排序操作,换成row_number试了下,直接抛出异常。

over:即是分析函数分析的窗口,省略over及其后面语句,则整个结果聚合(aggregate)

3.   示例

1.    示例1

select max(e.job_id) keep(dense_rank lastorder by count(job_id) desc),
      min(e.job_id) keep(dense_rank last order by count(job_id) desc),
      max(e.job_id) keep(dense_rank first order by count(job_id) desc),
      min(e.job_id) keep(dense_rank first order by count(job_id) desc)
 from employees e
 group by e.department_id, e.job_id;

返回的结果集如下

SA_REP  AC_ACCOUNT     SA_REP  SA_REP

发现:整个表的聚合,也验证了max和min的结果有时不一致。

2.    示例2

select distinct
      department_id,
      --count(job_id),
      min(job_id) keep(dense_rank first order by count(job_id) desc)over(partition by department_id) job_id
 from employees
 group by department_id, job_id
 order by 1;

分析窗口:以部门分组

返回结果集如下

1              10           AD_ASST

2              20           MK_MAN

3              30           PU_CLERK

4              40           HR_REP

5              50           SH_CLERK

6              60           IT_PROG

7              70           PR_REP

8              80           SA_REP

9              90           AD_VP

10           100         FI_ACCOUNT

11           110         AC_ACCOUNT

12                           SA_REP

返回每个部门的工种人数最多的工种,注意部门ID为空也返回了,这个是boss。

3.    几种写法比较

1.       method 1

with t as
 (select department_id, job_id, count(job_id)cnt
   from employees
  group by department_id, job_id)
select department_id, max(job_id)  --再次聚合
 from t
 where (department_id, cnt) in (selectdepartment_id, max(cnt) from t group by department_id)
 group by department_id
 order by 1;

1              10           AD_ASST

2              20           MK_REP

3              30           PU_CLERK

4              40           HR_REP

5              50           ST_CLERK

6              60           IT_PROG

7              70           PR_REP

8              80           SA_REP

9              90           AD_VP

10           100         FI_ACCOUNT

11           110         AC_MGR

总结:1. boss这个部门,即部门为空,没有返回;

    2.某个部门工种人数最多的,有两个工种,不得不再次进行聚合。

    3.代码较为繁琐。

2.       method 2

select department_id, job_id
 from (select e.department_id,
               e.job_id,
               count(e.job_id),
               row_number() over(partition bydepartment_id order by count(job_id) desc) rk
         from employees e
        group by e.department_id, e.job_id)
 where rk = 1;

1              10           AD_ASST

2              20           MK_MAN

3              30           PU_CLERK

4              40           HR_REP

5              50           ST_CLERK

6              60           IT_PROG

7              70           PR_REP

8              80           SA_REP

9              90           AD_VP

10           100         FI_ACCOUNT

11           110         AC_ACCOUNT

12                           SA_REP

总结:1.用row_number排序,然后使用外查询过滤row_number为1的;

    2.boss这个人包含的结果返回。

3.       method 3

select 
      department_id,
      count(job_id),
      min(job_id) keep(dense_rank first order by count(job_id) desc)over(partition by department_id) job_id
 from employees
 group by department_id, job_id
 order by 1;

1              10           1              AD_ASST

2              20           1              MK_MAN

3              20           1              MK_MAN

4              30           5              PU_CLERK

5              30           1              PU_CLERK

6              40           1              HR_REP

7              50           20           SH_CLERK

8              50           20           SH_CLERK

9              50           5              SH_CLERK

10           60           5              IT_PROG

11           70           1              PR_REP

12           80           5              SA_REP

13           80           29           SA_REP

14           90           1              AD_VP

15           90           2              AD_VP

16           100         5              FI_ACCOUNT

17           100         1              FI_ACCOUNT

18           110         1              AC_ACCOUNT

19           110         1              AC_ACCOUNT

20                           1              SA_REP

这里按department_id, job_id分组,我们只关心department_id, job_id,SQL进行调整下

tuneSQL

select distinct
      department_id,
      --count(job_id),
      min(job_id) keep(dense_rank first order by count(job_id) desc)over(partition by department_id) job_id
 from employees
 group by department_id, job_id
 order by 1;

1              10           AD_ASST

2              20           MK_MAN

3              30           PU_CLERK

4              40           HR_REP

5              50           SH_CLERK

6              60           IT_PROG

7              70           PR_REP

8              80           SA_REP

9              90           AD_VP

10                 100         FI_ACCOUNT

11                 110         AC_ACCOUNT

12                           SA_REP

总结:1.boss这个部门返回;

    2.没有涉及子查询,代码简洁;

    3.仔细对比,method2和method3的结果,还是稍有差异


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Oracle Lead/Last函数

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

oracle中lag(函数和lead(函数的用法

oracle 中 lag() 和 lead() 函数可从当前行获取指定行偏移量之前(lag())或之后(lead())行的值。它们用于分析时间序列数据和计算移动平均值。lag() 函数返回之前的行的值,lead() 函数返回之后的行的值。偏
oracle中lag(函数和lead(函数的用法
2024-05-03

oracle lead函数的用法是什么

Oracle Lead函数用于在结果集中获取指定行的下一行数据。其语法如下:LEAD(expr, offset, default) OVER (PARTITION BY col1, col2 ORDER BY col3) 其中,expr是
oracle lead函数的用法是什么
2024-04-09

oracle lead函数的作用是什么

Oracle Lead函数是一种窗口函数,用于访问当前行之后的行中的数据。Lead函数可用于在查询中获取当前行之后的指定行数的数据,并可以在数据集中按特定的排序顺序访问这些行。Lead函数的语法如下:LEAD(expression, of
oracle lead函数的作用是什么
2024-04-09

MySQL中LAG()函数和LEAD()函数的使用

目录一、窗口函数的基本用法二、LAG()和LEAD()函数介绍三、数据准备(建表sql在最后)四、建表数据sql一、窗口函数的基本用法从mysql8之后才开始支持窗口函数 OVER ([PARTITION BY <用于分组的
2022-08-12

sql lead函数的用途有哪些

SQL中的LEAD()函数用于获取指定列中当前行后面的行的值。该函数通常用于在结果集中查找下一个行的值,以便进行比较或计算。LEAD()函数的一些常见用途包括:在表中查找下一个值,以便进行比较或计算在时间序列数据中查找下一个时间点的值
sql lead函数的用途有哪些
2024-04-09

sql中lead函数的作用是什么

在SQL中,LEAD函数用于访问指定行之后的行的数据。它可以用来获取指定行之后的下一行的数值。LEAD函数可用于在结果集中访问下一个行的值,可以在查询结果中实现对下一行的访问和操作。LEAD函数的语法如下:LEAD(expression,
sql中lead函数的作用是什么
2024-04-09

【Mysql系列】LAG与LEAD开窗函数

💝💝💝欢迎来到我的博客,很高兴能够在这里和您见面!希望您在这里可以感受到一份轻松愉快的氛围,不仅可以获得有趣的内容和知识,也可以畅所欲言、分享您的想法和见解。 推荐:kwan 的首页,
【Mysql系列】LAG与LEAD开窗函数
2023-12-22

sql lead函数的用法是什么

在SQL中,LEAD函数用于访问当前行之后指定行数的行的数据。它可以用于获取下一行的值,而不改变原始查询结果的顺序。LEAD函数通常与ORDER BY子句一起使用,以确保结果按照特定的顺序返回。LEAD函数的基本语法如下:LEAD(ex
sql lead函数的用法是什么
2024-04-09

sql中lead函数的用途有哪些

获取当前行之后的指定行数的值返回当前行之后的下一行的指定列值可以用于计算当前行与下一行之间的差值在排序后的结果集中,可以获取当前行之后的行的指定值可以用于获取当前行之后的行的行号可以用于查找当前行之后的行的某个特定值
sql中lead函数的用途有哪些
2024-04-09

sql中lead函数的使用方法是什么

在SQL中,LEAD函数用于访问当前行后面指定偏移量的行数据。其基本语法如下:LEAD(expression, offset, default) OVER (PARTITION BY partition_clause ORDER BY o
sql中lead函数的使用方法是什么
2024-04-09

Oracle函数

1.Lag向上取一条,Lead向下取一条  Lag(Field01) over(order by Field02)2.Rollup函数即内卷函数  分组统计3. decode(条件,值1,返回值1,值2,返回值2,...值n,返回值n,缺省值)4.LAST_D
Oracle函数
2017-12-05

Oracle中的函数——Round()函数

Round(exp1,exp2)函数具有四舍五入的功能,分为以下两种情况:1.exp2数为非负四舍五入的位数从小数点后开始计数,小数点后|exp2|位,看後一位,进本位,后面舍去select Round(125.455,0) from dual ---12
Oracle中的函数——Round()函数
2016-11-27

Oracle中的函数——NVL()函数

NVL(exp1,exp2)函数时判断判断某个值是否为null。若为null,则返回exp2,否则返回exp1---格式1select nvl(exp1,exp2) from db_table ---例子select monthid,decode(nvl(sa
Oracle中的函数——NVL()函数
2017-11-03

编程热搜

目录