gpt4 book ai didi

mysql - 表 1、表 2 的多列左连接

转载 作者:可可西里 更新时间:2023-11-01 06:33:15 27 4
gpt4 key购买 nike

我有两个表:table1,table2,如下所示

table1:
id name
1 tamil
2 english
3 maths
4 science

table2:
p1 p2 p3 p4 stat name
1 2 4 3 A raja
2 3 4 1 A maha

我的预期输出是

p1       p2       p3       p4
tamil english science maths
english maths science tamil

有人能帮我找出确切的查询吗?那应该使用左外连接。

最佳答案

select P1, t1.Name,P2, t3.Name, P3,t4.Name, P4 , t5.Name From Table2 T2
left join table1 t1 on
T2.P1 = T1.Id
left join table1 t3 on
T2.P2 = T3.Id
left join table1 t4 on
T2.P3 = T4.Id
left join table1 t5 on
T2.P4 = T5.Id

关于mysql - 表 1、表 2 的多列左连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33995104/

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