Answer Posted / asnani_satish@yahoo.com
Minor correction in above answer
Difference between sub-query, correlated query and query as
table
1. Sub-query : the inner query is executed in entirety
before the outer query is executed
eg select * from emp where deptno in (select deptno from dept);
2. Correlated Query: For each record fetched in outer query
corresponding matching records are fetched in sub-query
because of join condition within inner sub-query. Answers
1,2,3 are correct
3. Query as Table: A query can behave as a table
select a.empno,a.sal,a.sal/b.avgsal*100 as percent_avg_sal
from emp a,(select deptno,avg(sal) avgsal from emp group by
deptno) b
where a.deptno=b.deptno;
Here the entire "(select deptno,avg(sal).....)" behaves as
table named "b" containing dept wise average sal. The query
is behaving as a temporary table.
| Is This Answer Correct ? | 6 Yes | 9 No |
Post New Answer View All Answers
What are properties of the transaction?
What is difference between table and view?
What is sqlca in db2?
If a cursor is open, how can we find in a pl/sql block?
What are two statement types in sql?
What is the use of sql trace?
What kind of join is join?
How to write a single statement that concatenates the words ?hello? And ?world? And assign it in a variable named greeting?
What is sql key?
Name some usages of database trigger?
what is the difference between mysql_fetch_object and mysql_fetch_array? : Sql dba
What are the three forms of normalization?
What is sql deadlock?
what is a scheduled jobs or what is a scheduled tasks? : Sql dba
How to Execute a Package in PL/SQL.?