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
How many sql commands are there?
how to run 'mysql' commands from a batch file? : Sql dba
what is a table called, if it has neither cluster nor non-cluster index? What is it used for? : Sql dba
What are the different tcl commands in sql?
What are the advantages of sql?
How do I save the results of sql query in a file?
What company owns postgresql?
How to look at the current sql*plus system settings?
What are different types of sql commands?
Are subqueries faster than joins?
What are the types of dbms?
Suppose a student column has two columns, name and marks. How to get name and marks of the top three students.
What is sqlite format?
How would you pass hints to the sql processor?
What are the different types of triggers?