Oracle不连续的值,如何实现查找上一条、下一条
2018-06-18 02:07:50来源:未知 阅读 ()
1. 遇到的问题
已知一个题库,希望实现当前页切换上一题,下一题的需求。
查看得知,数据库中用于查询的字段(主键)是不连续的。如上图所示:stxh为主键number类型。
2. 实现方式lead over
2.1 实现代码
下一条 select nowId, afterId from( SELECT stxh nowId, lead(stxh,1) over (order by stxh) as afterId from EXM_KSTK) where afterId-nowId>0 and nowId = 54; 上一条 select beforeId, nowId from( SELECT stxh beforeId, lead(stxh,1) over (order by stxh) as nowId from EXM_KSTK) where nowId-beforeId>0 and nowId = 54;
2.2 lead方法说明
lead(value_expr [,offset][,default]) over([query_partition_clause] order by Order_by_clause)
value_expr:值表达式,通常是字段,也可是是表达式。
offset:偏移,如果>0 表示与当前行相比,向前的行数。默认值为1
default:默认值,偏移结果不存在时,默认的返回值。
2.3 分析"实现代码"
以上一条为例吧,主要分析lead over 部分:
SELECT 字段名 beforeId, lead(在字段名,偏移量) over (order by 字段名) as nowId from 表名)
整条的使用就是需要传入当前的nowId值
3. 结合需求完善sql
3.1 上一条(主键stxh)
首先需要通过当前id获取上一条记录id值
select beforeId from
(SELECT stxh beforeId, lead(stxh,1) over (order by stxh) as nowId from EXM_KSTK) where nowId-beforeId>0 and nowId = 54;
通过这条sql就拿到上一条的id值了,然后再select查询即可。
SELECT * FROM EXM_KSTK stxh = ( select beforeId from (SELECT stxh beforeId, lead(stxh,1) over (order by stxh) as nowId from EXM_KSTK) where nowId-beforeId>0 and nowId = 54 )
3.2 下一条(主键stxh)
直接贴代码吧。
SELECT * FROM EXM_KSTK stxh = ( select afterId from( SELECT stxh nowId, lead(stxh,1) over (order by stxh) as afterId from EXM_KSTK) where afterId-nowId>0 and nowId = 54 )
3.3 补充说明
EXM_KSTK:表名
stxh:我的表主键
54:上文所用到的54就是你需要去传入的当前已知的id值
博客地址:https://www.cnblogs.com/niceyoo
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:Maven 私服的简单使用
下一篇:解决mysql服务无法启动的问题
- Flink 如何分流数据 2020-06-11
- 老板让你抗住千万级流量,如何做架构设计? 2020-06-11
- 如何干掉 if else 策略+工厂 2020-06-11
- 类的继承,方法重新中修饰符如何定义 2020-06-10
- 如何写出高质量Spring 组件? 2020-06-08
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash