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 are the benefits of using the db2 database?
Explain package in db2 and its advantages?
What is the purpose of rollback and commit?
Explain in brief how does db2 determine what lock-size to use?
What is null in db2?
How many types of page locks can be held in db2?
Comment whether the cursor is closed during commit or not.
Is ibm db2 free?
How to view db2 table structure?
What are the various data types available in db2?
How would the varchar column remarks defined?
What is the usage of open cursor command?
What is cloudant database?
What is a db2 package?
List out the three types of page locks that can be held.