MySQL query tree structure1. About tree structureData 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 MySQLWhat 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 dataCREATE 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 nodeCREATE 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)); 2.3 Get all parent nodes of a nodeCREATE 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)); 3. Oracle database methodYou 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 treeI 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 requiredYou 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 informationIn 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 directlySTART 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:
|
<<: Vue.js application performance optimization analysis + solution
>>: Examples of two ways to implement a horizontal scroll bar
Install SSHPASS For most recent operating systems...
MySQL Limit can query database data in segments a...
When we work in a terminal or console, we may not...
1. Overview I searched a lot online and found tha...
hint This plug-in can only be accessed under the ...
background In order to support Docker containeriz...
Table of contents Preparation Install VMware Work...
Use the following terminal command to install the...
When the software package does not exist, it may ...
This article uses an example to describe how to r...
Table of contents Event-driven and publish-subscr...
Word MySQL 8.0 has been released for four years s...
First download the compressed package of nacos fr...
1. Get is used to obtain data from the server, wh...
Today I made a Spring Festival gold coin red enve...