PLSQL NOTES Differences
PLSQL NOTES Differences
EXISTS:
queries.
2.IN
is much faster than IN, when the subquery results is very large.
2.EXISTS
3.The first row from the outer query is selected ,then the
inner query is executed and , the outer query output
uses this result for checking.This process of inner query
execution repeats as many no.of times as there are
outer query rows. That is, if there are ten rows that can
result from outer query, the inner query is executed that
many no.of times.