Rules for Using NULL as a Literal
The literal NULL can be used in the following ways.
CAST (NULL AS value)
CASE expression
THEN NULL
END
or
CASE expression
THEN expression
ELSE NULL
END
DEFAULT NULL
SELECT NULL
This usage is a Teradata extension to the ANSI/ISO SQL-2008 standard because it does not specify a FROM clause.
SELECT TYPE(NULL)
This usage is a Teradata extension to the ANSI/ISO SQL-2008 standard because it does not specify a FROM clause.