gpt4 book ai didi

mysql - 如何连接两列不同的 mySQL select 语句?

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

我如何组合以下两个 mySQL select 语句,以便我在不同的列但在同一个表中得到每个?

select a.property as p1 from T1 a inner join T2 b on a.id = b.id1;

select a.property as p2 from T1 a inner join T2 b on a.id = b.id2;

这些语句中的每一个都单独工作,并将返回相同数量的行。我只想在同一个表的两列中获得两个结果。

最佳答案

像这样在单个语句中使用它

select 
case when a.id=b.id1 then a.property end as p1,
case when a.id=b.id2 then a.property end as p2
from
T1 a inner join T2 b on a.id in (b.id1,b.id2)

关于mysql - 如何连接两列不同的 mySQL select 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11609682/

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