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
Can we join two tables without common column?
can a stored procedure call itself or recursive stored procedure? : Sql dba
Explain ttitle and btitle.
How do I run a pl sql procedure in sql developer?
how to convert character strings to dates? : Sql dba
what is unique key constraint? : Sql dba
Does truncate remove indexes?
What is #table in sql?
how can we find the number of rows in a table using mysql? : Sql dba
what is the difference between myisam static and myisam dynamic? : Sql dba
Can you sum a count in sql?
What is execution plan in sql?
What is sqlerrm?
How can check sql version from command line?
What is embedded sql what are its advantages?