Solution to find all child rows for a given parent row in MySQL

Solution to find all child rows for a given parent row in MySQL

Preface

Note: The test database version is MySQL 8.0

If you need to create tables and enter data under user scott, you can refer to:

Scott creates tables and enters data SQL script

1. Demand

Find all employees who work for JONES directly and indirectly (i.e., subordinates of JONES' subordinates).

The list of employees under JONES is as follows:

±------±-----+
| ename | lvl |
±------±-----+
| JONES | 1 |
| SCOTT | 2 |
| FORD | 2 |
| ADAMS | 3 |
| SMITH | 3 |
±------±-----+

2. Solution

Being able to move to the absolute top and bottom of a number is very useful.

No special formatting is required for this solution. The goal is simply to return all employees who are under employee JONES, which includes JONES himself.

This type of query demonstrates the usefulness of recursive SQL extensions such as Oracle's connect by and SQL Server/DB 2/MySQL 8.0's with clause.

with recursive emp2(ename,empno,lvl) as
(
SELECT ename,empno,1 lvl
 from emp 
 where ename = 'JONES'
union ALL
select e1.ename,e1.empno,lvl + 1
 from emp e1,emp2 e2
 where e1.mgr = e2.empno
)
select ename,lvl from emp2

Testing Log:

mysql> with recursive emp2(ename,empno,lvl) as
 -> (
 -> SELECT ename,empno,1 lvl
 -> from emp
 -> where ename = 'JONES'
 -> union ALL
 -> select e1.ename,e1.empno,lvl + 1
 -> from emp e1,emp2 e2
 -> where e1.mgr = e2.empno
 -> )
 -> select ename,lvl from emp2;
+-------+------+
| ename | lvl |
+-------+------+
| JONES | 1 |
| SCOTT | 2 |
| FORD | 2 |
| ADAMS | 3 |
| SMITH | 3 |
+-------+------+
5 rows in set (0.01 sec)

Summarize

This is the end of this article about finding all child rows for a given parent row in MySQL. For more information about finding all child rows for a given parent row in MySQL, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  Docker installation and deployment example on Linux

>>:  Some tips on deep optimization to improve website access speed

Recommend

Flex layout realizes the layout mode of upper and lower fixed and middle sliding

This article mainly introduces the layout method ...

Problems and solutions when replacing Oracle with MySQL

Table of contents Migration Tools Application tra...

mysql5.7.18.zip Installation-free version configuration tutorial (windows)

This is the installation tutorial of mysql5.7.18....

A Brief Analysis of CSS Selector Grouping

Selector Grouping Suppose you want both the h2 el...

Vue two-choice tab bar switching new approach

Problem Description When we are working on a proj...

Detailed explanation of MySQL database triggers

Table of contents 1 Introduction 2 Trigger Introd...

JavaScript object-oriented class inheritance case explanation

1. Object-oriented class inheritance In the above...

MySQL slow query: Enable slow query

1. What is the use of slow query? It can record a...

How to deploy SpringBoot project using Dockerfile

1. Create a SpringBooot project and package it in...

Using jQuery to implement the carousel effect

This article shares the specific code for impleme...

mysql5.7.21.zip installation tutorial

The detailed installation process of mysql5.7.21 ...

Various correct postures for using environment variables in Webpack

Table of contents Write in front Business code us...

Nginx uses ctx to realize data sharing and context modification functions

Environment: init_worker_by_lua, set_by_lua, rewr...