我有一个看起来像这样的SQL表。
id | parent_id
1 | 2
2 | 4
3 | 5
4 | 6
7 | 5
8 | 7
我需要的是所有没有父母的id以及所有id的列表。像。的东西。
parent_id | id
6 | 4
6 | 2
6 | 1
5 | 7
5 | 8
5 | 3
提前谢谢。
答案 0 :(得分:0)
我真的不明白你想要的东西......
也许这个:
SELECT parent_id,id FROM table ORDER BY parent_id DESC, id DESC;