ASA SQL Reference
SQL Functions
Alphabetical list of functions
To provide an abbreviated CASE expression by comparing expressions.
NULLIF ( expression-1, expression-2 )
expression-1 An expression to be compared.
expression-2 An expression to be compared.
NULLIF compares the values of the two expressions.
If the first expression equals the second expression, NULLIF returns NULL.
If the first expression does not equal the second expression, or if the second expression is NULL, NULLIF returns the first expression.
The NULLIF function provides a short way to write some CASE expressions.
SQL/92 Entry-level feature.
SQL/99 Core feature.
Sybase Compatible with Adaptive Server Enterprise.
The following statement returns the value a:
SELECT NULLIF( 'a', 'b' )
The following statement returns NULL.
SELECT NULLIF( 'a', 'a' )