gpt4 book ai didi

mysql - 将多个子查询的结果合并到一个集合中

转载 作者:行者123 更新时间:2023-11-29 03:07:42 24 4
gpt4 key购买 nike

我试图根据其他表中的 ID 排除我表中的行。我有 2 个表,其中一个“select * from”结果像 (1,2,3)

我正在尝试将这两个子查询的结果合并为一个,例如:

(1,2,3) + (4,5) = (1,2,3,4,5)

所以我可以用“NOT IN (1,2,3,4,5)”过滤大表

我一直在查看 GROUP_CONCAT、UNION 和所有其他类型,但我似乎无法找到真正有效的方法。

有人有想法吗?

最佳答案

select *
from Table3
where id not in (
select id from Table1 --your subquery that returns 1,2,3
union all
select id from Table2 --your subquery that returns 4,5
)

关于mysql - 将多个子查询的结果合并到一个集合中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12938337/

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