gpt4 book ai didi

mysql - MySQL 中的反向返回值?

转载 作者:行者123 更新时间:2023-11-29 09:57:43 25 4
gpt4 key购买 nike

好的,给定以下数据集:

ID , name    , lineManagerKey, lineManagerName
1 , Joe , null , null
2 , Herbert , 1 , Joe
3 , John , 1 , Joe
4 , George , null , null
5 , Paul , null , null
6 , Ringo , null , null
7 , Frank , null , null
8 , Jeff , 7 , Frank

我想返回以下内容:

Manager,Minion
Joe,Herbert
Joe,John
Frank,Jeff

我在考虑可能的查询时似乎想要返回多行?有什么想法吗?

最佳答案

select lineManagerName as Manager,name as Minion from table where lineManagerName is not null;

关于mysql - MySQL 中的反向返回值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53561110/

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