Recursive query of the parent class and subclass set in Oracle 11g

Source: Internet
Author: User

In an organization, it is often necessary to query all sub-classes under a department or all parent classes of a department. The recursive method is as follows:

1. query the subclass set

 
SelectA.*
FromOrganizations a startWithID= 97ConnectByNocycle prior A. ID=A. parentidOrder ByA. ID

2. query the parent class set

SelectA.*FromOrganizations a startWithID= 97
ConnectByNocycle prior A. parentid=A. IDOrder ByA. ID

----------------- Split line ------------

Note: During database table design, all departments are in the same table, and the Child parent node uses the parentid foreign key Association (during self-testing)

References:

A. http://docs.oracle.com/cd/B14117_01/server.101/b10759/queries003.htm#i2060615

B. http://docs.oracle.com/cd/B14117_01/server.101/b10759/pseudocolumns001.htm#i1009261

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.