UNION ALL and NOT IN together(UNION ALL 和 NOT IN在一起)
问题描述
SQL Server - 我有 3 个简单的表(Fname、Lname 和 Exceptions),每一列都称为 Name.我希望我的最终结果看起来像:(Fname 中的每个人 + LName 中的每个人)-(例外中的每个人).
SQL Server - I have 3 simple tables (Fname, Lname and Exceptions) with one column each called Name. I want my end result to look like: (Everybody in Fname + Everybody in LName) - (Everybody in Exceptions).
名称:
Name
A
B
L 名称:
Name
Y
Z
例外:
Name
A
Z
预期查询结果集:
B
Y
当前 SQL 查询:
Select Name from Fname
UNION ALL
Select Name from Lname
WHERE Name NOT IN
(Select Name from Exceptions)
SQL 查询仅适用于删除出现在 LName 中但不在 Fname 中的数据.有人可以帮忙吗.
The SQL query only works on removing data which appears in LName but not in Fname. Can somebody please help.
推荐答案
UNION
的各个部分作为单独的查询处理,因此您可以将它们分组在子查询中:
The parts of a UNION
are handled as separate queries, so you can group them in a subquery:
SELECT Name
FROM (Select Name from Fname
UNION ALL
Select Name from Lname)sub
WHERE Name NOT IN (Select Name from Exceptions)
如果您不关心重复,您可以将其保留为 UNION ALL
.
You can keep that as UNION ALL
if you don't care about duplicates.
这篇关于UNION ALL 和 NOT IN在一起的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UNION ALL 和 NOT IN在一起
基础教程推荐
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01