posted on 2010-08-31 16:21
诗特林 阅读(2481)
评论(0) 编辑 收藏 所属分类:
oracle
oracle connect by用法
oracle中的select语句可以用start with...connect by prior子句实现递归查询,connect by 是结构化查询中用到的,其基本语法是:
select ... from
where
start with
connect by
;
:过滤条件,用于对返回的所有记录进行过滤。
:查询结果重起始根结点的限定条件。
:连接条件
select * from t_department where levels=2 start with id = 'd-06-04' connect by prior superior=id;