gpt4 book ai didi

mysql - 从其他表中选择列作为 select 语句?

转载 作者:行者123 更新时间:2023-11-29 04:46:37 25 4
gpt4 key购买 nike

我想通过一条sql语句通过不同的表检索一些信息。我想做类似的事情:

select col1,
col2,
(select col1
from table 2),
(select col1
from table 3),
from table1
join table2
join table3

有人可以帮忙吗?

最佳答案

首先,确定您希望如何获取数据。如果你想使用子查询,很好,否则使用连接。例如,对于子查询,它可能看起来像这样:

select t1.col1,
t1.col2,
(select col1 from table2 t2 where t2.field = t1.field),
(select col1 from table3 t3 where t3.field = t1.field)
from table1 t1

相反,如果您想使用连接,它可能看起来像这样:

select t1.col1,
t1.col2,
t2.col1,
t3.col1
from table1 t1
join table2 t2 on t2.field = t1.field
join table3 t3 on t3.field = t1.field

关于mysql - 从其他表中选择列作为 select 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17995587/

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