Linkedin电面的一道SQL题# JobHunting - 待字闺中
j*n
1 楼
平时用SQL都处理简单的问题,今天电面被问到,几分钟内还真是不知道怎么处理:
有一个table A,2 columns, 5 rows as follows:
Children parents
a b
b c
c d
e f
f g
可以看到b是a的parent,c是b的parent,以此类推。要求找出最顶端的"祖宗",即返回
以下table:
a d
b d
c d
e g
f g
想知道用SQL怎么处理呢?
有一个table A,2 columns, 5 rows as follows:
Children parents
a b
b c
c d
e f
f g
可以看到b是a的parent,c是b的parent,以此类推。要求找出最顶端的"祖宗",即返回
以下table:
a d
b d
c d
e g
f g
想知道用SQL怎么处理呢?