程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> Oracle 10G -- 增強的CONNECT BY子句

Oracle 10G -- 增強的CONNECT BY子句

編輯:Oracle數據庫基礎

為 了更好的查詢一個樹狀結構的表,在Oracle的PL/SQL中提供樂一個誘人的特性——CONNECT BY子句。它大大的方便了我們查找樹狀表:遍歷一棵樹、尋找某個分支......,但還是存在一些不足。在Oracle 10G,就對這個特性做了增強。下面就舉例說明一下。

CONNECT_BY_ISCYCLE

樹狀一般都是在一條記錄中記錄一個當前節點的ID和這個節點的父ID來實現。但是,一旦數據中出現了循環記錄,如兩個節點互為對方父節點,系統就會報ORA-01436錯誤,例如:

  • 如果有這樣的數據

    insert into t_tonedirlib(dirindex, fatherindex, dirname, status) values (666, 667, '123', 5);
    insert into t_tonedirlib(dirindex, fatherindex, dirname, status) values (667, 666, '456', 5);
  • 執行這樣的查詢

    select dirindex, fatherindex, RPAD(' ', 2*(LEVEL-1)) || dirname from t_tonedirlib
    start with fatherindex = 666
    connect by   fatherindex =   prior dirindex;
  • 結果是 ORA-01436: 用戶數據中的 CONNECT BY 循環。


10G中,可以通過加上NOCYCLE關鍵字避免報錯。並且通過CONNECT_BY_ISCYCLE屬性就知道哪些節點產生了循環
select CONNECT_BY_ISCYCLE, dirindex, fatherindex, RPAD(' ', 2*(LEVEL-1)) || dirname
from t_tonedirlib
start with fatherindex = 666
connect by NOCYCLE fatherindex =   prior dirindex
CONNECT_BY_ISCYCLE DIRINDEX FATHERINDEX RPAD(' ',2*(LEVEL-1))||dirname
;

----------------- ---------------- ---------------------------------
                  0                    667                    666 456
                  1                    666                    667 123
2 rows selected

CONNECT_BY_ISLEAF

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved