acos 表中使用的 model、lft 和 rght 字段是什么?

发布于 2024-08-29 23:27:29 字数 89 浏览 4 评论 0原文

acos 表中 model、lft 和 rght 字段的 cakePHP 用法/含义是什么? 同样,aros 表中的 lft 和 rght 字段的用法/含义是什么?

What are the cakePHP usages/meanings of the model, lft, and rght fields in a acos table?
Similarly, what are the usages/meanings of the lft and rght fields in a aros table?

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

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

发布评论

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

评论(1

情仇皆在手 2024-09-05 23:27:29

修改前序树遍历数据建模技术通常需要它们用于建模分层数据。它们允许快速单一查询方式选择分支中的所有节点。这意味着您不必使用递归和多个查询。即

SELECT * FROM tree WHERE left > 4 AND 右 < 8

其中 4 和 8 可能是父节点的左值和右值,您要提取其子节点和孙子节点。

They are required by the Modified Pre-order Tree Traversal data modelling technique commonly used for modelling hierarchical data. They allow quick single query ways of selecting all nodes in a branch. This means you don't have to use recursion and multiple queries. I.e.

SELECT * FROM tree WHERE left > 4 AND right < 8

Where 4 and 8 might be the left and right values of a parent node, whose children and grand children you want to extract.

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