gpt4 book ai didi

SQL select where matching record exists and no matching record

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

我需要交叉引用 2 个表。

在 tb1 中是 booking_ref,投资者

在 tb2 中是 booking_ref、investor、cost

麻烦的是如果没有成本,表2中没有记录

所以我有以下查询...

SELECT 
tb1.booking_ref, tb1.investor, tb2.cost
FROM
tb1, tb2
WHERE
tb1.booking_ref = tb2.booking_ref
AND
tb1.investor = tb2.investor
AND
tb1.investor = ''12345''

这会显示 tb2 中有匹配 booking_ref 的所有预订,但我还需要显示没有匹配 booking_ref 的预订

有什么想法吗??

最佳答案

在这种情况下你需要一个左连接。

SELECT 
tb1.booking_ref, tb1.investor, tb2.cost
FROM
tb1
left join tb2
on tb1.booking_ref = tb2.booking_ref
and tb1.investor = tb2.investor
WHERE tb1.investor = ''12345''

关于SQL select where matching record exists and no matching record,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3865680/

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