gpt4 book ai didi

mysql查询;选择类别树中的所有项目

转载 作者:行者123 更新时间:2023-11-29 03:43:42 24 4
gpt4 key购买 nike

我有一个包含类别的表,其中一个类别可以有一个 parentid(是其他类别的子项)。当我想过滤父类别 ID 上的项目时,我希望查询包括所有子类别。

假设我有这个类别结构:

id || title     || parentid
1 || Sports || 0
2 || Tennis || 1
3 || Wimbledon || 2

现在我在 Wimbledon 类别中有一篇文章。我想显示类别运动中的所有文章。

SELECT item.* FROM #table_items AS item WHERE item.catid = 1;

上述查询不会返回 Wimbledon 类别中的文章。这可能吗?

最佳答案

SELECT item.* FROM #table_items AS item,#categories as catg
WHERE item.parentid = cat.parentid;

关于mysql查询;选择类别树中的所有项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9722865/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com