gpt4 book ai didi

mysql - 从深度嵌套的 mySQL 查询中选择多个列

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

select 
a
from
table_1
where
b in (
select
c
from
table_c
where
d in (
select
e
from
table_e
)
);

我也想在最终结果中传递“d”......有什么办法吗?

最佳答案

您需要使用JOIN:

select 
a ,
d
from
table_1
inner join table_c
ON b = c
inner join table_e
ON d = e

关于mysql - 从深度嵌套的 mySQL 查询中选择多个列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18586264/

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