Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有下表,我想获得一个粒子 id 的完整层次结构:
id,parent_id
1,空
2,1
4,1
5,2
6,2
7,5
对于 id=2 我想得到“5,6,7”作为输出
上述输出的原因是 5,6 是 2 的孩子,7 是 5 的孩子
它应该适用于层次结构中的任意数量的级别