排除 MySQL UNION 查询的结果
从 MySQL UNION 中排除结果的正确方法是什么?我正在寻找相当于:
(query1)
UNION
(query2)
UNION
(query3)
EXCEPT
(query4)
What is the proper way to exclude results from a MySQL UNION? I'm looking for the equivalent to:
(query1)
UNION
(query2)
UNION
(query3)
EXCEPT
(query4)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 WHERE NOT IN。
You can use WHERE NOT IN.
进行排除比较的列可以为空吗?
意思是,这些值可以为 NULL 吗?
如果是 - 使用
NOT IN
或NOT EXISTS
- 其中任何一个都会比 LEFT JOIN/IS NULL 表现更好,请阅读此内容了解详细信息。如果不是,请使用
LEFT JOIN/IS NULL
,因为它更有效 - 请参阅本文了解详细信息。Can the column(s) being compared for exclusion be nullable?
Meaning, can the values be NULL?
If yes - use either
NOT IN
orNOT EXISTS
- either of these will perform better than LEFT JOIN/IS NULL, read this for details.If no, use a
LEFT JOIN/IS NULL
because it's more efficient - see this article for details.我知道这是 mySQL,但是也许这可行。我在 SQLServer 上使用这个
I know this is mySQL, however maybe this might work. I use this on SQLServer