将 cte 转换为 mysql

发布于 2024-10-06 13:39:02 字数 380 浏览 6 评论 0原文

我在 mssql 中有一个递归 cte,它可以找到某个节点的所有子节点。用数据库术语来说:

create table nodes (
     id         int primary key autoincrement,
     parent     int
)

通过这个表,我有一个用于创建视图的 cte:

create view (
     node_id    int,
     child_id   int
)

我如何在 mysql 中做到这一点? (我无法更改表格式以适应其他方法,例如嵌套集合模型)

最坏的情况,我可以创建一个函数来做到这一点吗?

谢谢!

i have a recursive cte in mssql which finds all children of a certain node. in db terms:

create table nodes (
     id         int primary key autoincrement,
     parent     int
)

with this table i had a cte that i used to create a view:

create view (
     node_id    int,
     child_id   int
)

how do i do that in mysql? (I cannot change the table format to accomodate other methods such as with the nested set model)

worst case, could i make a function to do it?

thanks!

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

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

发布评论

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

评论(1

故事↓在人 2024-10-13 13:39:02

您可能想看看这个讨论:

How do you use MySQL 中的“WITH”子句?

You may want to look at this discussion:

How do you use the "WITH" clause in MySQL?

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