hey this is my requirment.
i need to check whether a column is null if so i need to return 'MISSING' else empty sting.
Column1(PrimaryKey) COLUMN2 COLUMN3
P1 ABC DEF
P2 NULL KJL
P3 NULL NULL
te result should be
COLUMN1 RESULT
P1 ''
P2 MISSINGCOLUMN2
P3 MISSINGCOLUMN3,COLUMN2
I tried using CONCAT ('MISSING', NVL(COLUMN2,'COLUMN2')) - its working if the value is NULL but in case of valid value it is retirning the valid value; because we cant pass 3 parameters to the NVL statement.