下面将教您如何使用SQL语句实现查询连续号段,供您参考,如果您对SQL语句实现查询连续号段这个方法感兴趣的话,不妨一看,对您学习SQL语句使用会有所帮助。
- With tempTable As(
- select 2014 code,'00000001' tel from dual union all
- select 2014 code,'00000002' tel from dual union all
- select 2014 code,'00000003' tel from dual union all
- select 2014 code,'00000004' tel from dual union all
- select 2014 code,'00000005' tel from dual union all
- select 2014 code,'00000007' tel from dual union all
- select 2014 code,'00000008' tel from dual union all
- select 2014 code,'00000009' tel from dual union all
- select 2013 code,'00000120' tel from dual union all
- select 2013 code,'00000121' tel from dual union all
- select 2013 code,'00000122' tel from dual union all
- select 2013 code,'00000124' tel from dual union all
- select 2013 code,'00000125' tel from dual
- ),
- group_tempTable As(
- Select a.*, a.tel - Rownum 分组
- From (Select *
- From tempTable
- Order By code, tel) a
- )
- Select b.code, Min(b.tel) Start_Tel, Max(b.tel) End_Tel
- From group_tempTable b
- Group By b.code, b.分组
- Order By b.code, b.分组
执行结果:
- CODE START_TEL END_TEL
- 1 2013 00000120 00000122
- 2 2013 00000124 00000125
- 3 2014 00000001 00000005
- 4 2014 00000007 00000009
【编辑推荐】
单表多条件查询sql语句写法
使用SQL语句查询时间段
巧用SQL语句删除重复记录
两种数据库中查询表主键外键信息的SQL语句
教您使用SQL语句修改SQL主键
当前文章:使用SQL语句实现查询连续号段
本文网址:http://www.csdahua.cn/qtweb/news23/459823.html
网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网