gpt4 book ai didi

mysql - 请帮我为此编写 sql 查询

转载 作者:行者123 更新时间:2023-11-30 01:32:51 25 4
gpt4 key购买 nike

表 1:-

name | location | Area | Region | Country
-----------------------------------------
abc 8 6 9 12

表 2:-

lid | lname | aid | rid | cid
def 8 6 9 12

表 3:-

aid | aname | rid | cid
6 ghi 9 12

表 4:-

rid | rname | cid
9 jkl 12

表 5:-

cid | cname
12 mno

如何在 mysql 中加入这 5 个表并检索“abc, def, ghi, jkl, mno ”;

最佳答案

我希望这对您有用。

SELECT table1.name, table2.lname ,table3.aname,table4.rname,table5.cname 
FROM table1
WHERE
LEFT JOIN table2 ON table2.lid = table1.location
LEFT JOIN table3 ON table3.aid = table1.area
LEFT JOIN table4 ON table4.rid = table1.region
LEFT JOIN table5 ON table5.cid = table1.country

关于mysql - 请帮我为此编写 sql 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17248064/

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