connect by prior start with语句详解

connect by prior start with语句详解

ID:6321869

大小:48.50 KB

页数:8页

时间:2018-01-10

connect by prior start with语句详解_第1页
connect by prior start with语句详解_第2页
connect by prior start with语句详解_第3页
connect by prior start with语句详解_第4页
connect by prior start with语句详解_第5页
资源描述:

《connect by prior start with语句详解》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、connectbypriorstartwith语句详解收藏通过STARTWITH...CONNECTBY...子句来实现SQL的层次查询.自从Oracle9i开始,可以通过SYS_CONNECT_BY_PATH函数实现将父节点到当前行内容以“path”或者层次元素列表的形式显示出来。自从Oracle10g中,还有其他更多关于层次查询的新特性。例如,有的时候用户更关心的是每个层次分支中等级最低的内容。那么你就可以利用伪列函数CONNECT_BY_ISLEAF来判断当前行是不是叶子。如果是叶子就会在伪列中显示“1”,如果不是叶子而是一个分支(例如当前内容是其他行的父亲)就显示“0

2、”。在Oracle10g之前的版本中,如果在你的树中出现了环状循环(如一个孩子节点引用一个父亲节点),Oracle就会报出一个错误提示:“ORA-01436:CONNECTBYloopinuserdata”。如果不删掉对父亲的引用就无法执行查询操作。而在Oracle10g中,只要指定“NOCYCLE”就可以进行任意的查询操作。与这个关键字相关的还有一个伪列——CONNECT_BY_ISCYCLE,如果在当前行中引用了某个父亲节点的内容并在树中出现了循环,那么该行的伪列中就会显示“1”,否则就显示“0”。Thestartwith..connectbyclausecanbeuse

3、dtoselectdatathathasahierarchicalrelationship(usuallysomesortofparent->child,boss->employeeorthing->parts).Itisalsobeingusedwhenansqlexecutionplanisexplained.syntax:select...[startwithinitial-condition]connectby[nocycle]recurse-conditionlevelWithlevelitispossibletoshowthelevelinthehierarchi

4、calrelationofallthedata.--oracle9isys_connect_by_pathWithsys_connect_by_pathitispossibletoshowtheentirepathfromthetopleveldowntothe'actual'child.--oracle10gconnect_by_rootconnect_by_rootisanewoperatorthatcomeswithOracle10gandenhancestheabilitytoperformhierarchicalqueries.connect_by_is_leafc

5、onnect_by_isleafisanewoperatorthatcomeswithOracle10gandenhancestheabilitytoperformhierarchicalqueries.connect_by_iscycleconnect_by_is_cycleisanewoperatorthatcomeswithOracle10gandenhancestheabilitytoperformhierarchicalqueries.--startwith...connectby...的处理机制Howmustastartwith...connectbyselect

6、statementbereadandinterpreted?IfOracleencounterssuchanSQLstatement,itproceedsasdescribedinthefollowingpseudecode.forrecin(select*fromsome_table)loopifFULLFILLS_START_WITH_CONDITION(rec)thenRECURSE(rec,rec.child);endif;endloop;procedureRECURSE(recinMATCHES_SELECT_STMT,new_parentINfield_type)

7、isbeginAPPEND_RESULT_LIST(rec);forrec_recursein(select*fromsome_table)loopifFULLFILLS_CONNECT_BY_CONDITION(rec_recurse.child,new_parent)thenRECURSE(rec_recurse,rec_recurse.child);endif;endloop;endprocedureRECURSE;createdbyzhouwf07262006.*****************

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。