rspec/rules/S3641/tsql/rule.adoc

9 lines
580 B
Plaintext
Raw Normal View History

2021-01-27 13:42:22 +01:00
A ``++WHERE++`` clause condition that uses ``++NOT IN++`` with a subquery will have unexpected results if that subquery returns ``++NULL++``. On the other hand, ``++NOT EXISTS++`` subqueries work reliably under the same conditions.
2020-06-30 12:48:39 +02:00
2021-02-02 15:02:10 +01:00
2021-01-27 13:42:22 +01:00
This rule raises an issue when ``++NOT IN++`` is used with a subquery. This rule doesn't check if the selected column is a nullable column because the rules engine has no information about the table definition. It's up to the developer to review manually if the column is nullable.
2020-06-30 12:48:39 +02:00
include::../noncompliant.adoc[]
include::../compliant.adoc[]