mysql uses stored procedures to implement tree node acquisition method

mysql uses stored procedures to implement tree node acquisition method

As shown in the figure:

Table Data

For such a tree, how to get all the nodes under "Gao Yinrui" (one SQL statement is definitely not enough)

Write via stored procedure

DELIMITER //
CREATE FUNCTION `getChildLst`(rootId INT)
 
RETURNS varchar(1000) READS SQL DATA
 
BEGIN
 DECLARE sTemp VARCHAR(1000);
 
 DECLARE sTempChd VARCHAR(1000);
 
 SET sTemp = '$';
 
 SET sTempChd =cast(rootId as CHAR);
 
 WHILE sTempChd is not null DO
 
 SET sTemp = concat(sTemp,',',sTempChd);
 
 SELECT group_concat(id) INTO sTempChd FROM document_file_name where FIND_IN_SET(pId,sTempChd)>0;
 
 END WHILE;
 
 RETURN sTemp;
 
END //

Create the above stored procedure

select * from document_file_name where find_in_set(id, getChildLst(1)); 

Summarize

This is the end of this article about how to use stored procedures in MySQL to get tree nodes. For more information about how to get tree nodes in MySQL stored procedures, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Simple writing of MYSQL stored procedures and functions
  • Detailed example of MySQL data storage process parameters
  • Two ways to write stored procedures in Mysql with and without return values
  • Detailed explanation of MySQL stored procedures, cursors, and transaction examples
  • How to create a stored procedure in MySQL and add records in a loop
  • Detailed explanation of the entry-level use of MySql stored procedure parameters

<<:  Native js custom right-click menu

>>:  js to achieve cool fireworks effect

Recommend

Introduction to 10 online development tools for web design

1. Online Text Generator BlindTextGenerator: For ...

Typical cases of MySQL index failure

Table of contents Typical Cases Appendix: Common ...

Detailed explanation of how to configure static IP in Centos8

After installing centos 8, the following error wi...

JQuery implements hiding and displaying animation effects

This article shares the specific code of JQuery t...

abbr mark and acronym mark

The <abbr> and <acronym> tags represen...

Use the njs module to introduce js scripts in nginx configuration

Table of contents Preface 1. Install NJS module M...

How to use Docker-compose to deploy Django applications offline

Table of contents Install Docker-ce for the devel...

Use shell script to install python3.8 environment in CentOS7 (recommended)

One-click execution To install Python 3.8 in a vi...

Three Vue slots to solve parent-child component communication

Table of contents Preface Environment Preparation...

Detailed steps to implement the Excel import function in Vue

1. Front-end-led implementation steps The first s...

Sample code for implementing menu permission control in Vue

When people are working on a backend management s...

Detailed explanation of Mysql communication protocol

1.Mysql connection method To understand the MySQL...

HTML is the central foundation for the development of WEB standards

HTML-centric front-end development is almost what ...