gpt4 book ai didi

sql - TableAU 左连接(子集)表 B

转载 作者:行者123 更新时间:2023-12-04 22:22:26 26 4
gpt4 key购买 nike

我想将 TableA 连接到 TableB,其中 tableA 中的某个条件为真
所以我做这种类型的 SQL 查询

Select * from
TableA Left Join TableB on TableA.fld1 = TableB.fld2
where TableA.fld3 = True

这工作正常。
但是现在我只想对 TableB 中的某些记录进行连接,即那些记录
在满足一定条件的表B中,特别是fld4有 作为它的值(value)。我想这样做的原因是我想知道 tableA 中的哪些行在 tableB 中的行中 tableB 中没有匹配,其中 fld4 是 .

如果我要删除 TableB 中 fld4 为 的所有行真并运行上面的查询
我会得到正确的结果。我需要做的就是在某些单元格中找到结果记录集中的行为空。
但是,如果不是首先从 TableB 中删除行,而是将查询更改为下面的查询,我将根本没有返回任何行
Select * from
TableA Left Join TableB on TableA.fld1 = TableB.fld2
where TableA.fld3 = True
and TableB.fld4 = false

如果我的漫谈有意义,有人可以告诉我我做错了什么吗?
谢谢

最佳答案

您应该将条件放在 join 子句中。当您有一个 where 子句在左连接查询的“右侧”过滤行时,您最终会排除行。尝试这个:

Select * 
from TableA
Left Join TableB
on TableA.fld1 = TableB.fld2
and TableB.fld4 = false
where TableA.fld3 = True

关于sql - TableAU 左连接(子集)表 B,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/973222/

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