Table of Contents

Search

  1. About the Data Vault SQL Reference
  2. Introduction to SQL Reference for Informatica Data Vault
  3. Date and Time Arithmetic
  4. WHERE Clauses
  5. UNION Operator
  6. Parameterized Query
  7. Functions

Data Vault SQL Reference

Data Vault SQL Reference

NULL Predicates Example

NULL Predicates Example

The following query retrieves all Part table records that do not have a null value in their
color
data column:
SELECT * FROM part WHERE color IS NOT NULL;
When used in a predicate, the NULL operator keyword must be preceded with either the IS or IS NOT keywords. Operators such as = or <> cannot be used with the NULL keyword.

0 COMMENTS

We’d like to hear from you!