树遍历SQL查询
任何人,请帮我完成遍历树的 SQL 查询。 我有一个名为 users
的表,其中包含 id
、name
和 parent
列。
请帮助我执行一个可以从所需的根遍历树的 SQL 查询。
编辑 你好,我得到了这个似乎已经解决的 URL。
但我不知道不了解 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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:
For details, see: