Output full path of hierarchy : Hierarchical Queries « Query Select « Oracle PL/SQL Tutorial

Oracle PL/SQL Tutorial
1. Introduction
2. Query Select
3. Set
4. Insert Update Delete
5. Sequences
6. Table
7. Table Joins
8. View
9. Index
10. SQL Data Types
11. Character String Functions
12. Aggregate Functions
13. Date Timestamp Functions
14. Numerical Math Functions
15. Conversion Functions
16. Analytical Functions
17. Miscellaneous Functions
18. Regular Expressions Functions
19. Statistical Functions
20. Linear Regression Functions
21. PL SQL Data Types
22. PL SQL Statements
23. PL SQL Operators
24. PL SQL Programming
25. Cursor
26. Collections
27. Function Procedure Packages
28. Trigger
29. SQL PLUS Session Environment
30. System Tables Data Dictionary
31. System Packages
32. Object Oriented
33. XML
34. Large Objects
35. Transaction
36. User Privilege
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL/SQL Tutorial » Query Select » Hierarchical Queries 
2. 40. 9. Output full path of hierarchy
SQL>
SQL> create table emp
  2  empno      NUMBER(4)    constraint E_PK primary key
  3  , ename      VARCHAR2(8)
  4  , init       VARCHAR2(5)
  5  , job        VARCHAR2(8)
  6  , mgr        NUMBER(4)
  7  , bdate      DATE
  8  , sal        NUMBER(6,2)
  9  , comm       NUMBER(6,2)
 10  , deptno     NUMBER(2)    default 10
 11  ;

Table created.

SQL> insert into emp values(1,'Tom','N',   'TRAINER', 13,date '1965-12-17',  800 , NULL,  20);

row created.

SQL> insert into emp values(2,'Jack','JAM', 'Tester',6,date '1961-02-20',  1600300,   30);

row created.

SQL> insert into emp values(3,'Wil','TF' ,  'Tester',6,date '1962-02-22',  1250500,   30);

row created.

SQL> insert into emp values(4,'Jane','JM',  'Designer', 9,date '1967-04-02',  2975, NULL,  20);

row created.

SQL> insert into emp values(5,'Mary','P',  'Tester',6,date '1956-09-28',  12501400,  30);

row created.

SQL> insert into emp values(6,'Black','R',   'Designer', 9,date '1963-11-01',  2850, NULL,  30);

row created.

SQL> insert into emp values(7,'Chris','AB',  'Designer', 9,date '1965-06-09',  2450, NULL,  10);

row created.

SQL> insert into emp values(8,'Smart','SCJ', 'TRAINER', 4,date '1959-11-26',  3000, NULL,  20);

row created.

SQL> insert into emp values(9,'Peter','CC',   'Designer',NULL,date '1952-11-17',  5000, NULL,  10);

row created.

SQL> insert into emp values(10,'Take','JJ', 'Tester',6,date '1968-09-28',  15000,     30);

row created.

SQL> insert into emp values(11,'Ana','AA',  'TRAINER', 8,date '1966-12-30',  1100, NULL,  20);

row created.

SQL> insert into emp values(12,'Jane','R',   'Manager',   6,date '1969-12-03',  800 , NULL,  30);

row created.

SQL> insert into emp values(13,'Fake','MG',   'TRAINER', 4,date '1959-02-13',  3000, NULL,  20);

row created.

SQL> insert into emp values(14,'Mike','TJA','Manager',   7,date '1962-01-23',  1300, NULL,  10);

row created.

SQL>
SQL> column  full_path format a40
SQL>
SQL> select  ename
  2  ,       connect_by_root ename            as Designer
  3  ,       sys_connect_by_path(ename,' > ') as full_path
  4  from    emp
  5  start   with job = 'Designer'
  6  connect by prior empno = mgr;

ENAME    DESIGNER FULL_PATH
-------- -------- ----------------------------------------
Jane     Jane      > Jane
Smart    Jane      > Jane > Smart
Ana      Jane      > Jane > Smart > Ana
Fake     Jane      > Jane > Fake
Tom      Jane      > Jane > Fake > Tom
Black    Black     > Black
Jack     Black     > Black > Jack
Wil      Black     > Black > Wil
Mary     Black     > Black > Mary
Take     Black     > Black > Take
Jane     Black     > Black > Jane
Chris    Chris     > Chris
Mike     Chris     > Chris > Mike
Peter    Peter     > Peter
Jane     Peter     > Peter > Jane
Smart    Peter     > Peter > Jane > Smart
Ana      Peter     > Peter > Jane > Smart > Ana
Fake     Peter     > Peter > Jane > Fake
Tom      Peter     > Peter > Jane > Fake > Tom

ENAME    DESIGNER FULL_PATH
-------- -------- ----------------------------------------
Black    Peter     > Peter > Black
Jack     Peter     > Peter > Black > Jack
Wil      Peter     > Peter > Black > Wil
Mary     Peter     > Peter > Black > Mary
Take     Peter     > Peter > Black > Take
Jane     Peter     > Peter > Black > Jane
Chris    Peter     > Peter > Chris
Mike     Peter     > Peter > Chris > Mike

27 rows selected.

SQL>
SQL>
SQL> drop table emp;

Table dropped.
2. 40. Hierarchical Queries
2. 40. 1. Hierarchical Queries
2. 40. 2. Using the CONNECT BY and START WITH Clauses
2. 40. 3. Formatting the Results from a Hierarchical Query
2. 40. 4. Starting at a node other than the root
2. 40. 5. Traversing Upward Through the Tree
2. 40. 6. Eliminating Nodes and Branches from a Hierarchical Query
2. 40. 7. Add where clause to a Hierarchical Query
2. 40. 8. employee tree: who is my manager
2. 40. 9. Output full path of hierarchy
2. 40. 10. sys_connect_by_path
2. 40. 11. pseudocolumn LEVEL and an example of using the levels.
2. 40. 12. pseudocolumn LEVEL and an example of using the levels with an update.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.