树遍历SQL查询

发布于 2024-12-05 03:42:01 字数 378 浏览 0 评论 0原文

任何人,请帮我完成遍历树的 SQL 查询。 我有一个名为 users 的表,其中包含 idnameparent 列。

请帮助我执行一个可以从所需的根遍历树的 SQL 查询。

编辑 你好,我得到了这个似乎已经解决的 URL。

用于在 MySQL 中遍历树的深度嵌套子查询

但我不知道不了解 JOIN,那就是无法用我的表构造查询:-( :-(

Anyone, please help me with the SQL query for traversing the tree.
I have a table called users, which has the columns id, name , and parent.

Please, help me with a SQL query that can traverse the tree from the desired root.

EDIT
Hi i got this URL that seems to be solved.

Deeply nested subqueries for traversing trees in MySQL

But i don't have knowledge of JOIN, Thats y i cant construct the query with my table :-(
:-(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

站稳脚跟 2024-12-12 03:42:01

MySQL 不支持递归查询。大多数其他品牌的数据库都支持使用公共表表达式语法的递归查询语法(以WITH开头的查询)。

为了解决 MySQL 中的树遍历查询,您需要以不同的方式存储数据,以便可以在一个查询中查询整个树。对此有几种解决方案:

  • 路径枚举
  • 嵌套集
  • 闭包表

有关详细信息,请参阅:

MySQL does not support recursive queries. Most other brands of database support recursive query syntax with the common table expression syntax (queries beginning with WITH).

To solve tree traversal queries in MySQL, you need to store the data differently so you can query whole trees in one query. There are several solutions for this:

  • Path Enumeration
  • Nested Sets
  • Closure Table

For details, see:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文