gpt4 book ai didi

sql - 如何查找未加入的记录?

转载 作者:行者123 更新时间:2023-12-03 06:01:34 25 4
gpt4 key购买 nike

我有两个连接在一起的表。

A有很多B

通常你会这样做:

select * from a,b where b.a_id = a.id

获取a中在b中具有记录的所有记录。

如何只获取 a 中的记录,而 b 中没有任何记录?

最佳答案

select * from a where id not in (select a_id from b)

或者就像这个帖子上的其他人所说的那样:

select a.* from a
left outer join b on a.id = b.a_id
where b.a_id is null

关于sql - 如何查找未加入的记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/151099/

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