Could anyone clearly explain the diference between sub
query and correlated sub query?
Answer Posted / sriram
Correlated subquery runs once for each row selected by the
outer query. It contains a reference to a value from the
row selected by the outer query.
Nested subquery runs only once for the entire nesting
(outer) query. It does not contain any reference to the
outer query row.
For example
Correlated Subquery:
select e1.empname e1.basicsal e1.deptno from emp e1 where
e1.basicsal (select max(basicsal) from emp e2 where
e2.deptno e1.deptno)
Nested Subquery:
select empname basicsal deptno from emp where (deptno
basicsal) in (select deptno max(basicsal) from emp group by
deptno)
Please let me know if I am wrong...............
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is temporal table in db2?
How does cobol compile db2 program?
What os does db2 run on?
before altering a table is it necessary to lock ? if lock what is it ? how to do ? ifi want to lock a table what is that command ?
What is difference between rollback and commit?
What is the result of open cursor statement?
What is database reorganization?
How can record locking be achieved in those DB2 versions which do not support it?
What do you mean by cursor?
Can you tell me how can you find out the # of rows updated after an update statement?
what is the responsibility of the construction superintendent
What is the advantage in De-normalizing tables in DB2?
What does db2 plan contain?
Define declaration generator (dclgen).
How is deadlock resolved?