IntroductionIn development, we often encounter tree-structured scenarios. This article will use the department table as an example to compare the advantages and disadvantages of several designs. question Demand background : Search personnel by department. Recursion? Recursion can solve this problem, but it will inevitably consume performance Design 1: Adjacency List Note: (Common parent ID design) Table DesignCREATE TABLE `dept_info01` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Auto-increment primary key', `dept_id` int(10) NOT NULL COMMENT 'Department id', `dept_name` varchar(100) NOT NULL COMMENT 'Department name', `dept_parent_id` int(11) NOT NULL COMMENT 'Parent department id', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation time', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'modification time', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; This is the most common design, which can correctly express the tree structure of the menu without redundant data, but cross-level queries require recursive processing. SQL Examples1. Query the direct subset of a node SELECT * FROM dept_info01 WHERE dept_parent_id = 1001 advantage Simple structure; shortcoming 1. It is impossible to query all parents and all children of a node without recursion Design 2: Path EnumerationBased on Design 1, a parent department ID set field is added to store all parent sets, with multiple sets separated by fixed delimiters, such as commas. Table DesignCREATE TABLE `dept_info02` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Auto-increment primary key', `dept_id` int(10) NOT NULL COMMENT 'Department id', `dept_name` varchar(100) NOT NULL COMMENT 'Department name', `dept_parent_id` int(11) NOT NULL COMMENT 'Parent department id', `dept_parent_ids` varchar(255) NOT NULL DEFAULT '' COMMENT 'Parent department id set', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation time', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'modification time', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; SQL Examples 1. Query all subsets SELECT * FROM dept_info02 WHERE dept_parent_ids like '%1001%' 2). It is recommended to use the FIND_IN_SET function SELECT * FROM dept_info02 WHERE FIND_IN_SET( '1001', dept_parent_ids ) advantage
shortcoming
Design 3: Closure Table
Table DesignMain table CREATE TABLE `dept_info03` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Auto-increment primary key', `dept_id` int(10) NOT NULL COMMENT 'Department id', `dept_name` varchar(100) NOT NULL COMMENT 'Department name', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation time', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'modification time', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; Ancestor-Descendant Relationship Table CREATE TABLE `dept_tree_path_info` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Auto-increment primary key', `ancestor` int(10) NOT NULL COMMENT 'ancestor id', `descendant` int(10) NOT NULL COMMENT 'descendant id', `depth` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Level depth', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; Note: depth is the level depth field. The self-reference is 1, the direct child node is 2, the next level is 3, and so on. The level is the same as the level. SQL ExamplesInserting a new node INSERT INTO dept_tree_path_info (ancestor, descendant, depth) SELECT t.ancestor, 3001,t.depth+1 FROM dept_tree_path_info AS t WHERE t.descendant = 2001 UNION ALL SELECT 3001,3001,1 Query all ancestors SELECT c.* FROM dept_info03 AS c INNER JOIN dept_tree_path_info t ON c.dept_id = t.ancestor WHERE t.descendant = 3001 Query all descendants SELECT c.* FROM dept_info03 AS c INNER JOIN dept_tree_path_info t ON c.dept_id = t.descendant WHERE t.ancestor = 1001 Delete all subtrees DELETE FROM dept_tree_path_info WHERE descendant IN ( SELECT a.dept_id FROM ( SELECT descendant dept_id FROM dept_tree_path_info WHERE ancestor = 1001 ) a ) Delete leaf nodes DELETE FROM dept_tree_path_info WHERE descendant = 2001 Mobile Node
advantage
shortcoming
Use in combinationThe adjacency list method can be combined with the closure table method. In fact, the parent ID is redundantly added to the main table. In some businesses that only need to query direct relationships, the main table can be queried directly without linking two tables. The ancestor-descendant relationship table is particularly important when cross-level queries are required. Table DesignMain table CREATE TABLE `dept_info04` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Auto-increment primary key', `dept_id` int(10) NOT NULL COMMENT 'Department id', `dept_name` varchar(100) NOT NULL COMMENT 'Department name', `dept_parent_id` int(11) NOT NULL COMMENT 'Parent department id', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation time', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'modification time', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; Ancestor-Descendant Relationship Table CREATE TABLE `dept_tree_path_info` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Auto-increment primary key', `ancestor` int(10) NOT NULL COMMENT 'ancestor id', `descendant` int(10) NOT NULL COMMENT 'descendant id', `depth` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Level depth', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; SummarizeIn fact, in my previous work, I have seen different types of designs, including adjacency lists, path enumeration, and adjacency lists and path enumeration together. Each design has its own advantages and disadvantages, and the design you choose depends on which operations in your application need the most performance optimization.
In summary
This concludes this article on the analysis and sharing of the advantages and disadvantages of three designs of tree-structured tables in MYSQL. For more relevant MYSQL tree-structured table content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Is it easy to encapsulate a pop-up component using Vue3?
>>: Nginx stream configuration proxy (Nginx TCP/UDP load balancing)
The method to solve the problem of forgetting the...
1. Overall architecture diagram Compared to other...
Table of contents 1. What is syntactic sugar? 2. ...
Table of contents 1. System monitoring 2. File Op...
Copy code The code is as follows: @charset "...
First download the latest MySQL 5.7.17 Community ...
Preview knowledge points. Animation Frames Backgr...
I am currently developing a new app project. This...
How to achieve internationalization in React? The...
Preface HTTP and HTTPS In our daily life, common ...
1. Understand the WEB Web pages are mainly compos...
This article summarizes various ways to implement...
Table of contents Preface Why introduce unit test...
Although Mac systems come with PHP and Apache, so...
Network security is a very important topic, and t...