SQL FunctionsConditional FunctionsNULLIFOn this pageNULLIFReturns NULL if two expressions are equal. Otherwise return expr1. They must have the same data type. Syntax NULLIF(<expr1>, <expr2>) Examples SELECT NULLIF(0, NULL);┌─────────────────┐│ nullif(0, null) │├─────────────────┤│ 0 │└─────────────────┘