acos 表中使用的 model、lft 和 rght 字段是什么?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
修改前序树遍历数据建模技术通常需要它们用于建模分层数据。它们允许快速单一查询方式选择分支中的所有节点。这意味着您不必使用递归和多个查询。即
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.