yuyee
oracle中的递归查询
start with .... connect by prior.....,如果prior缺省,则只能查询符合条件的起始行,并不能递归
从root到末梢:select * from permissiontable t start with parentid=1 connect by prior id=parentid
从末梢到root:select * from permissiontable t start with id=32 connect by prior parentid=id
posted on 2010-10-25 15:55
羔羊
阅读(201)
评论(0)
编辑
收藏
所属分类:
oracle
My Links
BlogJava
首页
联系
聚合
管理
Blog Stats
Posts - 28
Stories - 0
Comments - 1
Trackbacks - 0
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
给我留言
查看公开留言
查看私人留言
随笔分类
aop(4)
(RSS)
concurrent(5)
(RSS)
desginpattern(2)
(RSS)
IOC(2)
(RSS)
jvm(4)
(RSS)
linux
(RSS)
mina
(RSS)
oracle(2)
(RSS)
orm(2)
(RSS)
osgi(2)
(RSS)
缓存(2)
(RSS)
随笔档案
2010年11月 (13)
2010年10月 (14)
2010年9月 (1)
文章分类
aop
(RSS)
搜索
最新评论
1. re: cglib入门[未登录]
小白到此一游
--小白
阅读排行榜
1. 使用Annotation来完成spring aop(1812)
2. JAVA GC(1066)
3. cglib入门(1008)
4. ReentrantReadWriteLock读写锁(971)
5. OSGI小记(921)
评论排行榜
1. cglib入门(1)
2. JAVA GC(0)
3. JVM内存结构小记(0)
4. 使用Annotation来完成spring aop(0)
5. oracle中的递归查询(0)