我是mysql的新手。这是我的桌子:
类别表:
id | name | prent
----------------------------
1 | os | null
2 | linux | 1
3 | ubuntu | 2
4 | xubuntu | 3
5 | lubuntu | 3
6 | zubuntu | 3
7 | zubuntu 2 | 6
8 | suse | 2
9 | fedora | 2
10 | windowse | 1
11 | windowse xp | 10
12 | windowse 7 | 10
13 | windowse 8 | 10
14 | food | null
15 | dance | null
每个类别都有一个父类,我想准备它们以显示在下拉菜单中。
这就是我想要得到的:
id | name | depth
----------------------------
1 | os | 0
2 | -linux | 1
3 | --ubuntu | 2
4 | ---xubuntu | 3
5 | ---lubuntu | 3
6 | ---zubuntu | 3
7 | ----zubuntu 2 | 4
8 | --suse | 2
9 | --fedora | 2
10 | -windows | 1
11 | --windows xp | 2
12 | --windows 7 | 2
13 | --windows 8 | 2
14 | food | 0
15 | dance | 0
在这里,类别不按顺序排列,我的代码必须为远离父母的子类别提供顺序。根据每个类别的父级深度提供名称前的缩进。每个类别的孩子数量没有限制,但类别总数不会超过 100 个。
有没有给出这样结果的查询?我更喜欢可以在 PHP 框架中以活动记录的形式运行的查询。