分析函式學習2 SYS_CONNECT_BY_PATH
SYS_CONNECT_BY_PATH is valid only in hierarchical queries. It returns the path of a column value from root to node, with column values separated by char for each row returned by CONNECT BY condition.
Both column and char can be any of the datatypes CHAR, VARCHAR2, NCHAR, or NVARCHAR2. The string returned is of VARCHAR2 datatype and is in the same character set as column.
The following example returns the path of employee names from employee Kochhar to all employees of Kochhar (and their employees):
SELECT LPAD(' ', 2*level-1)||SYS_CONNECT_BY_PATH(last_name, '/') "Path"
FROM employees
START WITH last_name = 'Kochhar'
CONNECT BY PRIOR employee_id = manager_id;
Path
---------------------------------------------------------------
/Kochhar
/Kochhar/Greenberg
/Kochhar/Greenberg/Faviet
/Kochhar/Greenberg/Chen
/Kochhar/Greenberg/Sciarra
/Kochhar/Greenberg/Urman
/Kochhar/Greenberg/Popp
/Kochhar/Whalen
/Kochhar/Marvis
/Kochhar/Baer
/Kochhar/Higgens
/Kochhar/Higgens/Gietz
12 rows selected.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/219138/viewspace-913419/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 分析函式的學習函式
- 分析函式rollup||cube學習函式
- 分析函式(學習筆記)函式筆記
- 分析函式學習1 level函式
- Oracle的SYS_CONNECT_BY_PATH函式Oracle函式
- 分析函式connect by | start with學習函式
- 2. PHP 函式學習 stripos ()PHP函式
- oracle學習筆記8: 分析函式Oracle筆記函式
- 分析函式學習3 ROW_NUMBER函式
- Oracle分析函式-2Oracle函式
- 函式學習函式
- 【Mysql 學習】日期函式函式MySql函式
- spark RDD的學習,filter函式的學習,split函式的學習SparkFilter函式
- 【SQL 學習】分析函式之RANK() DENSE_RANK ()SQL函式
- 【函式】Oracle函式系列(2)--數學函式及日期函式函式Oracle
- MySQL函式學習(一)-----字串函式MySql函式字串
- 函式學習五函式
- 函式學習六函式
- 函式學習三函式
- 函式學習四函式
- 函式學習二函式
- 函式的學習函式
- 學習Rust 函式Rust函式
- 學習dump函式函式
- ORACLE函式學習Oracle函式
- 2. 流程控制 與 函式 |《 刻意學習 Golang 》函式Golang
- 【Go】Go語言學習筆記-2-函式Go筆記函式
- Sql Server函式全解(2):數學函式SQLServer函式
- 【層次查詢】Hierarchical Queries之SYS_CONNECT_BY_PATH函式函式
- 字串函式學習三字串函式
- 字串函式學習一字串函式
- 字串函式學習二字串函式
- TypeScript學習(二)—— 函式TypeScript函式
- js學習二函式JS函式
- 【Mysql 學習】流程函式MySql函式
- numpy學習回顧-數學函式及邏輯函式函式
- 【從零開始學習 MySql 資料庫】(2) 函式MySql資料庫函式
- 【從零開始學習Oracle資料庫】(2)函式Oracle資料庫函式