-
+
Functions and Operators
SELECT NULLIF(value, '(none)') ...
+
+
+ COALESCE and NULLIF are
+ just shorthand for CASE expressions. They are actually
+ converted into CASE expressions at a very early stage
+ of processing, and subsequent processing thinks it is dealing with
+ CASE. Thus an incorrect COALESCE or
+ NULLIF usage may draw an error message that
+ refers to CASE.
+
+
+