you can’t specify NULL for exp1 in NULLIF function
select NULLIF(NULL, NULL) from dual;
It will produce an error. (see below)
But you can specify NULL for exp2, it will work
select NULLIF(1, NULL) from dual;
you can’t specify NULL for exp1 in NULLIF function
select NULLIF(NULL, NULL) from dual;
It will produce an error. (see below)
But you can specify NULL for exp2, it will work
select NULLIF(1, NULL) from dual;