using NVL function in subselect of an update
537177Apr 28 2007 — edited Apr 29 2007Hi,
nvl is not working in my situation
Here is my select
SELECT nvl(a.id, 'WAS NULL') FROM table_1 a, table_2 b
WHERE a.id=b.id;
Now here I get NULL instead of 'WAS NULL' as I accepted.
Table a and table b do not have any identical ids, still I need to be a value returned.
Is there a way?
Thanks