本文介绍了在多个列中选择NOT IN的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要实现以下查询
SELECT *
FROM friend
WHERE ( friend.id1, friend.id2 )
NOT IN (SELECT id1,
id2
FROM likes)
,但NOT IN不能在多个列上实现。我如何写这个查询
but NOT IN can't be implemented on multiple columns. How do I write this query
推荐答案
我不知道你是否想:
select * from friend f
where not exists (
select 1 from likes l where f.id1 = l.id and f.id2 = l.id2
)
它只有在id1与id1相关,id2与id2不是两者。
it works only if id1 is related with id1 and id2 with id2 not both.
这篇关于在多个列中选择NOT IN的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!