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 null value in db2?
What does a deadlock mean in DB2?
What kind of database is db2?
What is a buffer in memory?
What is ibm db2 database?
What is concurrency?
Where can you declare a cursor in a cobol-db2 program?
What is dclgen (declaration generator)?
What is db2 catalog database?
Explain the function done by data manager?
What are types of indexes?
What is dclgen in db2?
Define buffer pool.
Mention the various locks that are available in db2.
What is sqlca?