Choose the functions that can be used with NULL values
-
NVL
-
NULLIF
-
DECODE
-
COALESCE
A,B,D
Correct answer
Explanation
NVL, NULLIF, and COALESCE are standard SQL functions designed specifically to handle NULL values. While DECODE can handle NULLs in its logic, it is primarily a conditional transformation function rather than a dedicated NULL-handling function like the others.