Recursive query methods for oracle and mysql: oraclemysql Recursion

Source: Internet
Author: User

Recursive query methods for oracle and mysql: oraclemysql Recursion

Oracle:

1. query the institutions under the jurisdiction of an institution: (start)

Select * from t00_organ t start with t. organkey = # uporgankey # connect by prior t. organkey = t. uporgankey;

2. Example (with query)

With emps (employee_id, name, job_id, salary, lvl) (

Select employee_id, first_name | ',' | last_name name, job_id, salary, 1 as lvl

From employees

Where manager_id is null

Union all

Select emp. employee_id, emp. first_name | ',' | emp. last_name, emp. job_id, emp. salary, root. lvl + 1

From employees emp, emps root

Where emp. manager_id = root. employee_id

)

Select * from emps;

MYSQL:

Create function 'fcgettreelist' (rid INT)

RETURNS varchar (1000)

BEGIN

DECLARE sTemp VARCHAR (1000 );

DECLARE sTempChd VARCHAR (1000 );

SET sTemp = '$ ';

SET sTempChd = cast (rid as CHAR );

WHILE sTempChd is not null DO

SET sTemp = concat (sTemp, ',', sTempChd );

SELECT group_concat (id) INTO sTempChd FROM treeNodes where FIND_IN_SET (pid, sTempChd)> 0;

End while;

RETURN sTemp;

END

-- Call

SELECT * from test where FIND_IN_SET (id, fcGetTreeList (1 ));

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.