Posts

Showing posts with the label nvl2

NVL, NVL2 function

Image
NVL SELECT NVL(NULL,'want') from dual; NVL2 SELECT NVL2('not','one','two') from dual UNION ALL SELECT NVL2(NULL,'one','two') from dual;