update t1 set b=(SELECT decode(count(*),0,'N','Y') FROM t2 WHERE t1.id = t2.id);
to the following structruce:
update t1 set b= case when exists ( select null from t2 where t1.id =t2.id ) then 'Y' else 'N' end;
update t1 set b=(SELECT decode(count(*),0,'N','Y') FROM t2 WHERE t1.id = t2.id);
update t1 set b= case when exists ( select null from t2 where t1.id =t2.id ) then 'Y' else 'N' end;
No comments:
Post a Comment