首页 > 数据库技术 > 详细

Oracle lag()/lead() over()分析函数

时间:2016-07-06 20:00:41      阅读:328      评论:0      收藏:0      [点我收藏+]
with tmp as(
select ‘1‘ id ,‘aa‘ name ,‘22‘ age from dual union all
select ‘2‘ id ,‘bb‘ name ,‘20‘ age from dual union all
select ‘3‘ id ,‘CC‘ name ,‘21‘ age from dual
)
select a.*,
lead(age,1) over (order by id desc) lag,
a.age - lead(age,1) over (order by id desc) lag1
from tmp a

lead函数是按id倒序排序把下一行的age记录显示在当前行的列lag,为null显示null

技术分享

 

with tmp as(
select ‘1‘ id ,‘aa‘ name ,‘22‘ age from dual union all
select ‘2‘ id ,‘bb‘ name ,‘20‘ age from dual union all
select ‘3‘ id ,‘CC‘ name ,‘21‘ age from dual
)
select a.*,
lag(age,1) over (order by id desc) lag,
a.age - lag(age,1) over (order by id desc) lag1
from tmp a

lag函数是按id倒序排序把上一行的age记录显示在当前行的列lag,为null显示null

技术分享

 

 

Oracle lag()/lead() over()分析函数

原文:http://www.cnblogs.com/qingfengliaoren/p/5647800.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!