Mysql如何获取我的表类的所有层次结构

时间:2017-03-23 19:53:55

标签: mysql

我的桌子:

类别 enter image description here

category_xref enter image description here

如何列出我的所有类别?

有几个级别的子类别

1 个答案:

答案 0 :(得分:0)

确实没有足够的信息来提供一个好的解决方案。假设您要在Category_ID上加入两个表。您可以执行以下操作:

select c.category_ID, c.Name, c.description, x.display_order
  from category c
  join category_xref x
    on x.category_id = x.category_id
 order by x.display_order;