How to find all IDs of children recursively?(如何递归查找孩子的所有ID?)
问题描述
我想仅使用 MySQL 获取树中子项的所有 ID.
I would like to get all IDs from children in a tree with MySQL only.
我有一张这样的桌子:
ID parent_id name
1 0 cat1
2 1 subcat1
3 2 sub-subcat1
4 2 sub-subcat2
5 0 cat2
现在我正在尝试递归获取 cat1 (2,3,4) 的所有子 ID.有什么方法可以实现吗?
Now I'm trying to get all child IDs for cat1 (2,3,4) recursively. Is there any way how to achieve that?
推荐答案
有两种基本方法可以做到这一点:邻接列表和嵌套列表.看看在 MySQL 中管理分层数据.
There are two basic methods for doing this: adjacency lists and nested lists. Take a look at Managing Hierarchical Data in MySQL.
你拥有的是一个邻接表.不,没有一种方法可以使用单个 SQL 语句递归地获取所有后代.如果可能,只需将它们全部抓取并在代码中全部映射.
What you have is an adjacency list. No there isn't a way of recursively grabbing all descendants with a single SQL statement. If possible, just grab them all and map them all in code.
嵌套集可以做你想做的事,但我倾向于避免它,因为插入记录的成本很高,而且容易出错.
Nested sets can do what you want but I tend to avoid it because the cost of inserting a record is high and it's error-prone.
这篇关于如何递归查找孩子的所有ID?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何递归查找孩子的所有ID?


- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- SQL 临时表问题 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01