Hi All,
I've got a cursor that looks a bit like this...
cursor my_cursor (in_other_value varchar2);
select *
from a, b
where a.foriegn_key = b.primary_key (+)
and nvl(b.other_value(+),'^^' = nvl(nvl(in_other_value,b.other_value),'^^)
I thought this would work but it doesn't, My problem is...