- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章浅谈MYSQL中树形结构表3种设计优劣分析与分享由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
在开发中经常遇到树形结构的场景,本文将以部门表为例对比几种设计的优缺点; 。
需求背景:根据部门检索人员, 问题:选择一个顶级部门情况下,跨级展示当前部门以及子部门下的所有人员,表怎么设计更合理 ?
递归吗 ?递归可以解决,但是势必消耗性能 。
注:(常见父id设计) 。
1
2
3
4
5
6
7
8
9
|
create
table
`dept_info01` (
`id`
int
(10) unsigned
not
null
auto_increment comment
'自增主键'
,
`dept_id`
int
(10)
not
null
comment
'部门id'
,
`dept_name`
varchar
(100)
not
null
comment
'部门名称'
,
`dept_parent_id`
int
(11)
not
null
comment
'父部门id'
,
`create_time` datetime
not
null
default
current_timestamp
comment
'创建时间'
,
`update_time` datetime
not
null
default
current_timestamp
on
update
current_timestamp
comment
'修改时间'
,
primary
key
(`id`) using btree
) engine=innodb auto_increment=1
default
charset=utf8;
|
这样是最常见的设计,能正确的表达菜单的树状结构且没有冗余数据,但在跨层级查询需要递归处理.
1.查询某一个节点的直接子集 。
1
|
select
*
from
dept_info01
where
dept_parent_id =1001
|
优点 。
结构简单 ,
缺点 。
1.不使用递归情况下无法查询某节点所有父级,所有子集 。
在设计1基础上新增一个父部门id集字段,用来存储所有父集,多个以固定分隔符分隔,比如逗号.
1
2
3
4
5
6
7
8
9
10
|
create
table
`dept_info02` (
`id`
int
(10) unsigned
not
null
auto_increment comment
'自增主键'
,
`dept_id`
int
(10)
not
null
comment
'部门id'
,
`dept_name`
varchar
(100)
not
null
comment
'部门名称'
,
`dept_parent_id`
int
(11)
not
null
comment
'父部门id'
,
`dept_parent_ids`
varchar
(255)
not
null
default
''
comment
'父部门id集'
,
`create_time` datetime
not
null
default
current_timestamp
comment
'创建时间'
,
`update_time` datetime
not
null
default
current_timestamp
on
update
current_timestamp
comment
'修改时间'
,
primary
key
(`id`) using btree
) engine=innodb auto_increment=1
default
charset=utf8;
|
1.查询所有子集 1).通过模糊查询 。
1
2
3
4
5
6
|
select
*
from
dept_info02
where
dept_parent_ids
like
'%1001%'
|
2).推荐使用 find_in_set 函数 。
1
2
3
4
5
6
|
select
*
from
dept_info02
where
find_in_set(
'1001'
, dept_parent_ids )
|
优点 。
缺点 。
主表 。
1
2
3
4
5
6
7
8
|
create
table
`dept_info03` (
`id`
int
(10) unsigned
not
null
auto_increment comment
'自增主键'
,
`dept_id`
int
(10)
not
null
comment
'部门id'
,
`dept_name`
varchar
(100)
not
null
comment
'部门名称'
,
`create_time` datetime
not
null
default
current_timestamp
comment
'创建时间'
,
`update_time` datetime
not
null
default
current_timestamp
on
update
current_timestamp
comment
'修改时间'
,
primary
key
(`id`) using btree
) engine=innodb auto_increment=1
default
charset=utf8;
|
祖先后代关系表 。
1
2
3
4
5
6
7
|
create
table
`dept_tree_path_info` (
`id`
int
(10) unsigned
not
null
auto_increment comment
'自增主键'
,
`ancestor`
int
(10)
not
null
comment
'祖先id'
,
`descendant`
int
(10)
not
null
comment
'后代id'
,
`depth` tinyint(4)
not
null
default
'0'
comment
'层级深度'
,
primary
key
(`id`) using btree
) engine=innodb auto_increment=1
default
charset=utf8;
|
注:depth 层级深度字段 ,自我引用为 1,直接子节点为 2,再一下层为 3,一次类推,第几层就是几 .
插入新节点 。
1
2
3
4
5
|
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
|
查询所有祖先 。
1
2
3
4
5
6
7
|
select
c.*
from
dept_info03
as
c
inner
join
dept_tree_path_info t
on
c.dept_id = t.ancestor
where
t.descendant = 3001
|
查询所有后代 。
1
2
3
4
5
6
7
|
select
c.*
from
dept_info03
as
c
inner
join
dept_tree_path_info t
on
c.dept_id = t.descendant
where
t.ancestor = 1001
|
删除所有子树 。
1
2
3
4
5
6
7
8
9
10
11
|
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
)
|
删除叶子节点 。
1
2
3
4
5
|
delete
from
dept_tree_path_info
where
descendant = 2001
|
移动节点 。
优点 。
缺点 。
可以将邻接表方式与闭包表方式相结合使用。实际上就是将父id冗余到主表中,在一些只需要查询直接关系的业务中就可以直接查询主表,而不需要关联2张表了。在需要跨级查询时祖先后代关系表就显得尤为重要.
主表 。
1
2
3
4
5
6
7
8
9
|
create
table
`dept_info04` (
`id`
int
(10) unsigned
not
null
auto_increment comment
'自增主键'
,
`dept_id`
int
(10)
not
null
comment
'部门id'
,
`dept_name`
varchar
(100)
not
null
comment
'部门名称'
,
`dept_parent_id`
int
(11)
not
null
comment
'父部门id'
,
`create_time` datetime
not
null
default
current_timestamp
comment
'创建时间'
,
`update_time` datetime
not
null
default
current_timestamp
on
update
current_timestamp
comment
'修改时间'
,
primary
key
(`id`) using btree
) engine=innodb auto_increment=1
default
charset=utf8;
|
祖先后代关系表 。
1
2
3
4
5
6
7
|
create
table
`dept_tree_path_info` (
`id`
int
(10) unsigned
not
null
auto_increment comment
'自增主键'
,
`ancestor`
int
(10)
not
null
comment
'祖先id'
,
`descendant`
int
(10)
not
null
comment
'后代id'
,
`depth` tinyint(4)
not
null
default
'0'
comment
'层级深度'
,
primary
key
(`id`) using btree
) engine=innodb auto_increment=1
default
charset=utf8;
|
其实,在以往的工作中,曾见过不同类型的设计,邻接表,路径枚举,邻接表路径枚举一起来的都见过。每种设计都各有优劣,如果选择设计依赖于应用程序中哪种操作最需要性能上的优化.
。
设计 | 表数量 | 查询直接子 | 查询子树 | 同时查询多个节点子树 | 插入 | 删除 | 移动 |
---|---|---|---|---|---|---|---|
邻接表 | 1 | 简单 | 需要递归 | 需要递归 | 简单 | 简单 | 简单 |
枚举路径 | 1 | 简单 | 简单 | 查多次 | 相对复杂 | 简单 | 复杂 |
闭包表 | 2 | 简单 | 简单 | 简单 | 相对复杂 | 简单 | 复杂 |
。
综上所述 。
到此这篇关于浅谈mysql中树形结构表3种设计优劣分析与分享的文章就介绍到这了,更多相关mysql 树形结构表内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。
原文链接:https://blog.csdn.net/qq_38011415/article/details/95462698 。
最后此篇关于浅谈MYSQL中树形结构表3种设计优劣分析与分享的文章就讲到这里了,如果你想了解更多关于浅谈MYSQL中树形结构表3种设计优劣分析与分享的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我目前正在尝试基于哈希表构建字典。逻辑是:有一个名为 HashTable 的结构,其中包含以下内容: HashFunc HashFunc; PrintFunc PrintEntry; CompareF
如果我有一个指向结构/对象的指针,并且该结构/对象包含另外两个指向其他对象的指针,并且我想删除“包含这两个指针的对象而不破坏它所持有的指针”——我该怎么做这样做吗? 指向对象 A 的指针(包含指向对象
像这样的代码 package main import "fmt" type Hello struct { ID int Raw string } type World []*Hell
我有一个采用以下格式的 CSV: Module, Topic, Sub-topic 它需要能够导入到具有以下格式的 MySQL 数据库中: CREATE TABLE `modules` ( `id
通常我使用类似的东西 copy((uint8_t*)&POD, (uint8_t*)(&POD + 1 ), back_inserter(rawData)); copy((uint8_t*)&PODV
错误 : 联合只能在具有兼容列类型的表上执行。 结构(层:字符串,skyward_number:字符串,skyward_points:字符串)<> 结构(skyward_number:字符串,层:字符
我有一个指向结构的指针数组,我正在尝试使用它们进行 while 循环。我对如何准确初始化它并不完全有信心,但我一直这样做: Entry *newEntry = malloc(sizeof(Entry)
我正在学习 C,我的问题可能很愚蠢,但我很困惑。在这样的函数中: int afunction(somevariables) { if (someconditions)
我现在正在做一项编程作业,我并没有真正完全掌握链接,因为我们还没有涉及它。但是我觉得我需要它来做我想做的事情,因为数组还不够 我创建了一个结构,如下 struct node { float coef;
给定以下代码片段: #include #include #define MAX_SIZE 15 typedef struct{ int touchdowns; int intercepti
struct contact list[3]; int checknullarray() { for(int x=0;x<10;x++) { if(strlen(con
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: Empty “for” loop in Facebook ajax what does AJAX call
我刚刚在反射器中浏览了一个文件,并在结构构造函数中看到了这个: this = new Binder.SyntaxNodeOrToken(); 我以前从未见过该术语。有人能解释一下这个赋值在 C# 中的
我经常使用字符串常量,例如: DICT_KEY1 = 'DICT_KEY1' DICT_KEY2 = 'DICT_KEY2' ... 很多时候我不介意实际的文字是什么,只要它们是独一无二的并且对人类读
我是 C 的新手,我不明白为什么下面的代码不起作用: typedef struct{ uint8_t a; uint8_t* b; } test_struct; test_struct
您能否制作一个行为类似于内置类之一的结构,您可以在其中直接分配值而无需调用属性? 前任: RoundedDouble count; count = 5; 而不是使用 RoundedDouble cou
这是我的代码: #include typedef struct { const char *description; float value; int age; } swag
在创建嵌套列表时,我认为 R 具有对列表元素有用的命名结构。我有一个列表列表,并希望应用包含在任何列表中的每个向量的函数。 lapply这样做但随后剥离了列表的命名结构。我该怎么办 lapply嵌套列
我正在做一个用于学习目的的个人组织者,我从来没有使用过 XML,所以我不确定我的解决方案是否是最好的。这是我附带的 XML 文件的基本结构:
我是新来的 nosql概念,所以当我开始学习时 PouchDB ,我找到了这个转换表。我的困惑是,如何PouchDB如果可以说我有多个表,是否意味着我需要创建多个数据库?因为根据我在 pouchdb
我是一名优秀的程序员,十分优秀!