Expand description
LINT_CV_005: Prefer IS [NOT] NULL over =/<> NULL.
Comparisons like col = NULL or col <> NULL are not valid null checks in SQL.
Use IS NULL / IS NOT NULL instead.
LINT_CV_005: Prefer IS [NOT] NULL over =/<> NULL.
Comparisons like col = NULL or col <> NULL are not valid null checks in SQL.
Use IS NULL / IS NOT NULL instead.