Oracle Tree Operations

Source: Internet
Author: User

Select  with by ... prior

1. Find all the immediate child nodes of a node (the node itself + all descendants), with the following two ways.

Select ID, TypeName, TypeCode, ParentID, Ordernum  from Purchase_type where = 1  with ='+' by =  Prior ID
Order by Ordernum

Or

Select ID, TypeName, TypeCode, ParentID, Ordernum  from Purchase_type where = 1  with ='+' by   ParentID  order by Ordernum

Show Results:

2. Find all the immediate parent nodes of a node (the node itself + all ancestors (parent class of Parent class ...). ))。

Select ID, typename, TypeCode, ParentID, Ordernum
From Purchase_type
where status = 1
Start with id = ' 136 '
Connect by id = Prior ParentID
Order siblings by Ordernum

Or

Select ID, TypeName, TypeCode, ParentID, Ordernum  from Purchase_type where = 1 with ='136' by           ID    order by Ordernum

Show Results:

Oracle Tree Operations

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.