gpt4 book ai didi

Mysql子查询导致 "where"子句

转载 作者:IT老高 更新时间:2023-10-28 23:45:59 26 4
gpt4 key购买 nike

这样可以执行mysql查询吗?

select (select A from B where ... ) as C from D where C like ' ... '

我需要在一般的“where”子句中使用子查询的结果。

最佳答案

您可以将其包装在这样的子查询中:

SELECT * 
FROM (
select (select A from B where ... ) as C from D
) subq
WHERE
C like ' ... '

关于Mysql子查询导致 "where"子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8590421/

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