从父ID中递归获取所有子类别

时间:2015-11-28 08:12:38

标签: php sql joomla

我在解决此问题时遇到问题:我的数据库看起来像这样。

        ID  parent_cat_id  child_cat_id
         1   27          10
         2   15          20
         3   80          90
         4   90          88
         5   60          30
         6   88          40
         7   15          60
         8   30          40
         9   27          95
         10  40          30

上下文是用户选择产品搜索的类别,我需要获得类别ID以及所有可以达到4级深度的孩子。

数据库类似于这篇文章: Check if column value exists in another column in SQL

然而OP只需要1个匹配,它需要递归。我还在尝试几种解决方案,但我很茫然。会喜欢一些建议。

提前致谢。

0 个答案:

没有答案