gpt4 book ai didi

mysql - 使用 SQL 显示表 person 的孙辈

转载 作者:行者123 更新时间:2023-11-29 10:48:08 24 4
gpt4 key购买 nike

我有一个名为person(ID,fname,Age,Gender,parentID)的表,谁能告诉我如何在SQL中显示没有孙子的人?

最佳答案

这应该可以解决问题,但如果你有很多人和很多 child ,可能会有点慢:

SELECT DISTINCT p.*
FROM person p
LEFT JOIN person c ON c.parentID = p.ID
LEFT JOIN person gc on gc.parentID = c.ID
WHERE gc.ID IS NULL

关于mysql - 使用 SQL 显示表 person 的孙辈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44201718/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com