我的原始查询返回 7975 行。添加 where 子句,我收到 7917 行。我想要SELECT
58 行的差异。为了做到这一点,我写了我认为是反向的 where 子句。不幸的是,我只看到 41 行,而不是预期的 58 行。
TableName.Column 和 TableName.Column2 都可以为空。
原来在哪里
where ((TableName.Column in ('1', '2', '3))
or (TableName.Column2 in ('1', '2', '3))
我的逆向尝试
where ((TableName.Column not in ('1', '2', '3))
and (TableName.Column2 not in ('1', '2', '3))