您有 2 个表 Customers 和 Blacklist,均包含 firstname 和 lastname 列。
如何找到好的客户?请注意,由于字符限制,我不能将姓氏附加或连接到名字(反之亦然)。
我认为左连接会起作用。请确认。
select c.lastname,c.firstname
from Curtomers c
left join Blacklist b
ON (c.lastname = b.lastname
AND c.firstname = b.lastname)
where b.firstname is null
and b.lastname is null