MySQL query tree structure method

MySQL query tree structure method

MySQL query tree structure

1. About tree structure

insert image description here

Data of this type of structure usually requires self-association fields such as id and parentId in the table structure. Sometimes, in order to improve query efficiency, more redundant fields can be added, such as index, where the value of index is the set of id strings of all parent directories.

Regarding the assembly of tree structure data, the common writing method is to construct a complete tree through recursion in the program. The method of simply using SQL is not commonly used. Examples of the two methods are given below.

2. How to define custom functions in MySQL

What is a MySQL custom function: Aggregate functions, date functions and the like are all MySQL functions. The functions we define here can be used in the same way as them, but can only be used in the defined database. Custom functions are similar to stored procedures, but the difference is that functions only return one value and are not allowed to return a result set.

2.1 Create test data

CREATE TABLE `tree` (
  `id` bigint(11) NOT NULL,
  `pid` bigint(11) NULL DEFAULT NULL,
  `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
INSERT INTO `tree` VALUES (1, 0, '中国');
INSERT INTO `tree` VALUES (2, 1, 'Sichuan Province');
INSERT INTO `tree` VALUES (3, 2, 'Chengdu');
INSERT INTO `tree` VALUES (4, 3, 'Wuhou District');
INSERT INTO `tree` VALUES (5, 4, 'Red Archway');
INSERT INTO `tree` VALUES (6, 1, 'Guangdong Province');
INSERT INTO `tree` VALUES (7, 1, 'Zhejiang Province');
INSERT INTO `tree` VALUES (8, 6, 'Guangzhou');

2.2 Get all child nodes under a node

CREATE FUNCTION `GET_CHILD_NODE`(rootId varchar(100))   
RETURNS varchar(2000)  
BEGIN   
DECLARE str varchar(2000);  
DECLARE cid varchar(100);   
SET str = '$';   
SET cid = rootId;   
WHILE cid is not null DO   
    SET str = concat(str, ',', cid);   
    SELECT group_concat(id) INTO cid FROM tree where FIND_IN_SET(pid, cid);   
END WHILE;   
RETURN str;   
END

Calling a custom function

select * from tree where FIND_IN_SET(id, GET_CHILD_NODE(2)); 

insert image description here

2.3 Get all parent nodes of a node

CREATE FUNCTION `GET_PARENT_NODE`(rootId varchar(100))   
RETURNS varchar(1000)   
BEGIN   
DECLARE fid varchar(100) default '';   
DECLARE str varchar(1000) default rootId;   
  
WHILE rootId is not null do   
    SET fid =(SELECT pid FROM tree WHERE id = rootId);   
    IF fid is not null THEN   
        SET str = concat(str, ',', fid);   
        SET rootId = fid;   
    ELSE   
        SET rootId = fid;   
    END IF;   
END WHILE;   
return str;  
END

Calling a custom function

select * from tree where FIND_IN_SET(id, GET_PARENT_NODE(5)); 

insert image description here

3. Oracle database method

You only need to use the start with connect by prior statement to complete the recursive tree query. Please refer to the relevant information for details.

4. The program code recursively builds the tree

I will not give the complete code here. The recursive method is very simple. First, find out all the tree nodes, and then recursively add all the child nodes through the add method in the TreeNode class. The core code is as follows:

public class TreeNodeDTO {
    
    private String id;
    private String parentId;
    private String name;
    private List<TreeNodeDTO> children = new ArrayList<>();
    public void add(TreeNodeDTO node) {
        if ("0".equals(node.parentId)) {
            this.children.add(node);
        } else if (node.parentId.equals(this.id)) {
            this.children.add(node);
        } else {
         	//Recursively call add() to add child nodes for (TreeNodeDTO tmp_node : children) {
                tmp_node.add(node);
            }
        }
    }
 }

5. Through hashMap, only one traversal is required

You can complete the tree generation: Five-star recommendation

List<TreeNodeDTO> list = dbMapper.getNodeList();
ArrayList<TreeNodeDTO> rootNodes = new ArrayList<>();
Map<Integer, TreeNodeDTO> map = new HashMap<>();
for (TreeNodeDTO node : list) {
    map.put(node.getId(), node);
    Integer parentId = node.getParentId();
    // Determine whether there is a parent node (if there is no parent node, it is a parent menu)
    if (parentId.equals('0')){
        rootNodes.add(node);
        // Find the menu that is not the parent menu and includes its parent menu ID in the collection
    } else if (map.containsKey(parentId)){
        map.get(parentId).getChildren().add(node);
    }
}

MySQL query with tree structure information

In Oracle, there is a function application that can directly query the tree structure information. For example, if there is an organizational member structure with the following tree structure, then if we want to query all the node information under one of the nodes

In Oracle, you can use the following syntax to query directly

START WITH CONNECT BY PRIOR

But there is no such syntax in MySQL.

What if you also want to query such data structure information? We can define our own functions. We initialize the above information into the database. First, create a table to store this information. ID stores its own ID information, and PARENT_ID stores the parent ID information.

CREATE TABLE `company_inf` (
  `ID` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `NAME` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `PARENT_ID` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL
)

Then initialize the information in the table

INSERT INTO company_inf VALUES ('1','General Manager Wang Damazi','1');
INSERT INTO company_inf VALUES ('2','R&D Manager Liu Daquezi','1');
INSERT INTO company_inf VALUES ('3','Sales Manager Ma Erlangzi','1');
INSERT INTO company_inf VALUES ('4','Finance Manager Zhao Santuozi','1');
INSERT INTO company_inf VALUES ('5','Secretary Employee J','1');
INSERT INTO company_inf VALUES ('6','R&D Team Leader Wu Dabangchui','2');
INSERT INTO company_inf VALUES ('7','Zheng Laoliu, head of R&D Group 2','2');
INSERT INTO company_inf VALUES ('8','Salesperson G','3');
INSERT INTO company_inf VALUES ('9','Salesperson H','3');
INSERT INTO company_inf VALUES ('10','Financial Personnel I','4');
INSERT INTO company_inf VALUES ('11','Developer A','6');
INSERT INTO company_inf VALUES ('12','Developer B','6');
INSERT INTO company_inf VALUES ('13','Developer C','6');
INSERT INTO company_inf VALUES ('14','Developer D','7');
INSERT INTO company_inf VALUES ('15','Developer E','7');
INSERT INTO company_inf VALUES ('16','Developer F','7');

For example, if we want to query all employees under the R&D manager Liu Daquzi, we can write this in Oracle

  SELECT *
  FROM T_PORTAL_AUTHORITY
  START WITH ID='1'
  CONNECT BY PRIOR ID = PARENT_ID

In Mysql, we need the following custom function

CREATE FUNCTION getChild(parentId VARCHAR(1000))
RETURNS VARCHAR(1000)
BEGIN
    DECLARE oTemp VARCHAR(1000);
    DECLARE oTempChild VARCHAR(1000);
    SET oTemp = '';
    SET oTempChild = parentId;
    WHILE oTempChild is not null DO
        IF oTemp != '' THEN
            SET oTemp = concat(oTemp,',',oTempChild);
        ELSE
            SET oTemp = oTempChild;
        END IF;
        SELECT group_concat(ID) INTO oTempChild FROM company_inf where parentId<>ID and FIND_IN_SET(parent_id,oTempChild)>0;
    END WHILE;
RETURN oTemp;
END

Then you can query like this

SELECT * FROM company_inf WHERE FIND_IN_SET(ID,getChild('2'));

At this time, the information obtained by checking the query is all the employee information under Liu Daquzi.

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Implementation method of Mysql tree recursive query
  • How to implement tree-like query of all child nodes in MySQL
  • MySQL multi-level structure-tree search introduction
  • MySQL recursive query tree table child nodes, parent nodes specific implementation

<<:  Vue.js application performance optimization analysis + solution

>>:  Examples of two ways to implement a horizontal scroll bar

Recommend

Detailed explanation of how to pass password to ssh/scp command in bash script

Install SSHPASS For most recent operating systems...

How to use & and nohup in the background of Linux

When we work in a terminal or console, we may not...

Implement QR code scanning function through Vue

hint This plug-in can only be accessed under the ...

Linux ssh server configuration code example

Use the following terminal command to install the...

A brief discussion on event-driven development in JS and Nodejs

Table of contents Event-driven and publish-subscr...

Detailed explanation of invisible indexes in MySQL 8.0

Word MySQL 8.0 has been released for four years s...

Detailed tutorial for springcloud alibaba nacos linux configuration

First download the compressed package of nacos fr...

GET POST Differences

1. Get is used to obtain data from the server, wh...

JavaScript implements H5 gold coin function (example code)

Today I made a Spring Festival gold coin red enve...