- 1、本文档共6页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
oracle递归
(2011-08-30 11:16:59)
▼
标签:
转载 原文地址:oracle作者:普贝尔
--本文章可以直接粘贴到PLSQL运行,--测试名称:测试oracle递归 ?
--oracle版本:oracle8i
--样表:s_coalarea_test(地区表)
--表 level(等 1 level决定
-- ? ? ? ?省份 level(等级) 2
-- ? ? ? ?地区 level(等 3
-- ? ? ? ?依次
--备注:这张地区表是一颗树,递归查询主要就是方便维护树
--1:归
--需求:根据地区名称
--备注:aid是表主parentid是父areaname地区名称
--分析:滤
select s.areaname from ?s_coalarea_test s?
start with ? ? ? ? ? ? ? ? ? ? ?--start with 是递归入口,也就是递归的起始位置
s.areaname =黑 ? ? ? ? ? ?--指明入口条件?
connect by prior ? ? ? ? ? ? ? ?--prior 前序遍 指明遍 入不写 默 ? ? ? ? ?
s.aid=s.parentid ? ? ? ? ? ? ? ?--级联条件也就是你的树通过哪个字段相连的 顺序决定查询结果 须注意?
--测试2: start with
--需求:根据多个地区名
select s.areaname from ?s_coalarea_test s?
start with ? ? ? ? ? ? ? ? ? ? ?
s.areaname =黑龙江 ? --递归入口可以是多个值,其原理:先根据start with过滤记录
or ? ? ? ? ? ? ? ? ? ? --然后根据
s.areaname=山西?
connect by prior ? ? ? ? ? ? ? ? ? ? ? ? ?
s.aid=s.parentid ?
--测试3:再?
--需求:根据多个地区名
--错误:测试结果让人恼火,原来start with先于where
select s.areaname from ?s_coalarea_test s
where s.areaname=黑龙江
or
s.areaname = 山西?
start with ? ? ? ? ? ? ? ? ? ? ?
??s.areaname = s.areaname --既然start with只是where过滤的结果了
connect by prior ? ? ? ? ? ? ? ? ? ? ? ? ?
s.aid=s.parentid ?
--测试4:
--需求:根据地区名,
select s.areaname from ?s_coalarea_test s
start with ? ? ? ? ? ? ? ? ? ? ?
??s.areaname=大同
connect by prior ? ? ? ? ? ? ? ? ? ? ? ? ?
s.parentid=s.aid --注意,此时仅仅是级联条件顺序改变了
?? ? ? ? ? ? ? ? --总结:到底是查父节点还是子节点,有级联顺序决定
?? ? ? ? ? ? ? ? --规律:【本记录字段】=【
?? ? ? ? ? ? ? ? --如本实例:是通过本记录的parentid匹配其他aid(主
?? ? ? ? ? ? ? ? -- ? ? ? ? ?如aid(主parentid,
?? ? ? ? ? ? ? ??
--测试5:
--需求:根据地区名称
select s.areaname from ?s_coalarea_test s
where s.arealevel=1 ? --对遍历结果进行过滤
start with ? ? ? ? ? ?--start with 必where之后,但是可以是where and之 入下例 ? ? ? ??
??s.areaname=大同
connect by prior ? ? ? ? ? ? ? ? ? ? ? ? ?
s.parentid=s.aid
--测试5:
--需求:根据地区名称
select s.areaname from ?s_coalarea_test s
where s.arealevel=1 ? --对遍历结果进行过滤
start with ? ? ? ? ? ?--start with 之前不需要加and ? ? ??
??s.areaname=大同
connect by prior ? ? ? ? ? ? ? ? ? ? ? ? ?
s.
您可能关注的文档
最近下载
- 航空运输地理单元四中国航空区划描述.ppt
- 喉肿瘤的护理措施.pptx VIP
- 第10课《往事依依》教学设计2024—2025学年统编版语文七年级上册.docx
- 中华民族一家亲,同心共筑中国梦.pptx VIP
- 职业技术学院处室工作人员学年考核细则.doc
- 基于plc的自动售货机系统设计—学士学位论文.doc VIP
- 知道网课跨文化沟通心理学智慧树章节测试答案2023.docx
- 苏教版五年级上册《我们的大脑》教学设计.docx
- 众泰-T600-产品使用说明书-T600 2.0T 豪华型DCT-JNJ6460QT-T600车系使用手册20131201.pdf
- RTO 操作规程考试试题及答案.docx
文档评论(0)