我有一张名为table
. 它有一个以id
type命名的字段INT(11)
,它代表行的标识符,它还有其他字段,但我认为它们与这个问题无关。
我有另一个名为table_children
. 它有一个名为parent
type的字段,INT(11)
该字段称为table.id
外键。它有另一个以child
type命名的字段INT(11)
,也table.id
称为外键。此表描述了table
行到table
行的父子关系。
这是一个可能的设置。
table table_children
id parent child
0 0 1
1 1 2
2 1 3
3 3 4
4
如何在最少数量的请求中获得id
所有后代的 's ?0
这里的答案是1
, 2
, 3
, 4
。
感谢您的帮助。