Native cloud deployment on Azure is currently not available for Exasol 8, but you can install Exasol as a Linux application on Azure VM instances. For more information, see Installation.
Native cloud deployment on GCP is currently not available for Exasol 8, but you can install Exasol as a Linux application on GCP VM instances.
Please select a platform to see relevant administration content.
NULLIF
Purpose
This function returns the value NULL, if two expressions are identical. Otherwise, the first expression is returned.
Syntax
nullif::=
Usage Notes
The NULLIF function is equivalent to the CASE expression CASE WHEN expr1=expr2 THEN NULL
ELSE expr1 END.