what is the difference between the query and corelated
query
Answer Posted / manish
select * from emp; --->> query
select * from emp where sal=(select max(sal) from emp);
--> here a sub query is also there
select * from emp outer where sal= ( select avg(sal) from
emp e where dept.e=dept.outer) --> corelated query
| Is This Answer Correct ? | 9 Yes | 7 No |
Post New Answer View All Answers
What is type and rowtype in pl sql?
what is heap table? : Sql dba
what are the differences between char and varchar? : Sql dba
What is sorting in sql?
what is dbms? : Sql dba
what are local and global variables and their differences? : Sql dba
How do sql databases work?
Explain the uses of database trigger.
Is join and inner join the same?
Can we update views in sql?
How does a covering index work?
Can two tables have same primary key?
What is implicit cursor in pl sql?
Differences between Oracle 9i and 10g (Probably in terms of SQL and PL/SQL)?
Can you load data into multiple tables at once? : aql loader