最新活动:电脑PC端+手机端+微网站+自适应网页多模板选择-建站388元起价!!!
当前位置:主页 > 网站建设 > oracle 树查询 语句建站知识

oracle 树查询 语句建站知识

时间:2023-05-23 11:05:23 阅读: 文章分类: 网站建设 作者: 建站小能手

导读:1建站知识oracle 树查询,需要的朋友可以参考下,代码有点乱不好意思啊建设网站公司seo网站排名优化软件。

建设网站公司seo网站排名优化软件格式: SELECT column FROM table_name START WITH column=value CONNECT BY PRIOR 父主键=子外键 select lpad(' ',4*(level-1))||name name,job,id,super from emp start with super is null connect by prior id=super 例子: 原始数据:select no,q from a_example2 NO NAME ---------- ------------------------------ 001 a01 001 a02 001 a03 001 a04 001 a05 002 b01 003 c01 003 c02 004 d01 005 e01 005 e02 005 e03 005 e04 005 e05 需要实现得建设网站到结果是: 001 a01;a02;a03 002 b01 003 c01;c02 004 d01 005 e01;e02;e03;e04;e05 思路: 1、ORACLE8.1之后有个connect by 子句,取出整棵树数据。 create table a_example1 ( no char(3) not null, name varchar2(10) not null, parent char(3) ) insert into a_example1 values('001','老王',null) insert into a_example1 values('101','老李',null) insert into a_example1 values('002','大王1','001') insert into a_example1 values('102','大李1','101') insert into a_example1 values('003','大王2','001') insert into a_example1 values('103','大李2','101') insert into a_example1 values('003','小王1','002') insert into a_example1 values('103','小李1','102') NO  NAME PARENT 001 老王 101 老李 002 大王1 001 102 大李1 101 003 大王2 001 103 大李2 101 003 小王1 002 103 小李1 102 //按照家族树取数据 select * from a_example1 select level,sys_connect_by_path(name,'/') path from a_example1 start with /*name = '老王' and*/ parent is null connect by parent = prior no 结果: 1 /老王 2 /老王/大王1 3 /老王/大王1/小王1 2 /老王/大王2 1 /老李 2 /老李/大李1 3 /老李/大李1/小李1 2 /老李/大李2 按照上面思路,我们只要将原始数据做成如下结构: NO NAME 001 a01 001 a01/a02 001 a01/a02/a网站seo优化培训03 001 a01/a02/a03/a04 001 a01/a02/a03/a04/a05 002 b01 003 c01 003 c01/c02 004 d01 005 e01 005 e01/e02 005 e01/e02/e03 005 e01/e02/e03/e04 005 e01/e02/e03/e04/e05 最后按NO分组,取最大的一个值即为所需的结果。 NO NAME 001 a01/a02/a03/a04/a05 002 b01 003 c01/c02 004 d01 005 e01/e02/e03/e04/e05 SQL语句: select no,max(sys_connect_by_path(name,';')) result from (select no,name,rn,lead(rn) over(partition by no order by rn) rn1 from (select no,name,row_number() over(order by no,name desc) rn from a_example2) ) start with rn1 is null connect by rn1 = prior rn group by no 语句分析: 1、 select no,name,row_number() over(order by no,name desc) rn from a_example2 按照NO升序排序,同时按照NAME降序排序,产生伪列,目的是要形成树结构 NO  NAME RN 001 a03 1 001 a02 2 001 a01 3 002 b01 4 003 c02 5 003 c01 6 004 d01 7 005 e05 8 005 e04 9 005 e03 10 005 e02 11 005 e01 12 2、select no,name,rn,lead(rn) over(partition by no o企业网站建设rder by rn) rn1 from ( select no,name,row_number() over(order by no,name desc) rn from a_example2) 生成家族谱,即子节点与父节点有对应关系,对应关系通过rn和 rn1。其中lead为上一条记录的RN值 NO  NAME RN  RN1  001 a03 1 2 --说明:针对NO=001来说,其下一条记录的RN=2 001 a02 2 3 --说明:针对NO=001来说,其下一条记录的RN=3 001 a01 3  --说明:针对NO=001来说,其下一条记录的RN IS NULL 002 b01 4 003 c02 5 6 003 c01 6 004 d01 7 005 e05 8 9 005 e04 9 10 005 e03 10 11 005 e02 11 12 005 e01 12 3、select no,sys_connect_by_path(name,';') result from (select no,name,rn,lead(rn) over(partition by no order by rn) rn1 from ( select no,name,row_number() over(order by no,name desc) rn from a_example2)) start with rn1 is null connect by rn1 = prior rn 正式生成树 NO   RESULT 001 ;a01 001 ;a01;a02 001 ;a01;a02;a03 002 ;b01 005 ;e01 005 ;e01;e02 005 ;e01;e02;e03 005 ;e01;e02;e03;e04 005 ;e01;e02;e03;e04;e05 003 ;c01 003 ;c01;c02 004 ;d01 将上面结果按照NO分组,取result最大值即可,所以将上述语句改为 select no,max(sys_connect_by_path(name,';')) result from (select no,name,rn,lead(rn) over(partition by no order by rn) rn1 from (select no,name,row_number() over(order by no,name desc) rn from a_example2) ) start with rn1 is null connect by rn1 = prior rn group by no 得到所需结果。相关建设网站公司seo网站排名优化软件。

关键词标签: 标签 语句

声明: 本文由我的SEOUC技术文章主页发布于:2023-05-23 ,文章oracle 树查询 语句建站知识主要讲述语句,标签,oracle 树查询 语句建站知识1网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: https://www.seouc.com/article/web_5443.html

我的IDC 网站建设技术SEOUC.COM
专注网站建设,SEO优化,小程序设计制作搭建开发定制网站等,数千家网站定制开发案例,网站推广技术服务。
  • 5000+合作客服
  • 8年从业经验
  • 150+覆盖行业
  • 最新热门源码技术文章