如何实现SQL语句的递归查询

2025-01-21 11:22:50
推荐回答(3个)
回答1:

1.创建测试表,createtabletest_connect(idnumber,p_idnumber);

2.插入测试数据,

Insertintotest_connectvalues(1,1);

Insertintotest_connectvalues(2,1);

Insertintotest_connectvalues(3,2);

Insertintotest_connectvalues(4,3);

提交;

3.查询数据表的内容,选择*fromtest_connect,

4.执行递归查询语句,将答案添加到nocycle元素中,就不会有[ora-01436:CONNECTBYerrorintheuserdata]。执行结果如下:

Select*

来自test_connectt

从id=4开始

由nocyclepriort连接。p_id=t.i.

回答2:

在SQL SERVER 2000 中你可以先一些自定义函数,或一些存储过程,实现递归:
select level,TypeName
from ProductType t
START WITH t.ParentID=0
CONNECT BY PRIOR t.ProductTypeID= t.ParentID;

回答3:

select * from table_name where id in (select id from table connect by prior id = pid start with id = 你想起始的ID);
(select id from table connect by prior id = pid start with id = 你想起始的ID);
这部分就可以递归查询到所有以某一个父ID下的所有的包含父ID在内的所有ID