DB2的递归查询

在db2可以使用sql语句来进行递归查询,就是使用 with语句

1.先建一个树形表:

None.gif create   table tst  (
None.gifid  
integer ,
None.gifparentId 
int ,
None.gifname 
varchar ( 20 ))

2.插入数据
None.gif insert   into  tst  values  
None.gif(
1 , 0 , ' a ' ),
None.gif(
2 , 0 , ' b ' ),
None.gif(
3 , 1 , ' c ' ),
None.gif(
4 , 1 , ' d ' ),
None.gif(
5 , 4 , ' d ' ),
None.gif(
6 , 5 , ' d ' )
3.使用递归查询
None.gif with  rpl (id,parentId,name)  as  
None.gif(
None.gif
select  id,parentId,name  from  tst   where  parentId = 1  
None.gif
union   all  
None.gif
select   child.id,child.parentId,child.name  from  rpl parent, tst child  where  parent.id = child.parentId
None.gif)
None.gif
select   *   from  rpl

这个语句在在db2 7中就有了,在sql2005中才出现.

转载于:https://www.cnblogs.com/yg_zhang/archive/2006/12/09/db2.html

你可能感兴趣的:(DB2的递归查询)