what is the difference between the query and corelated
query
Answer Posted / chintu
A query is nothing but if we want to evaluate one thing we
will write query. like
select * from emp; --->> query
A Query is evaluated once for each and every row from the
parent statement is called corellated Query.
like
select * from emp outer where sal= ( select avg(sal) from
emp e where dept.e=dept.outer) --> corelated query
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the use of pl/sql table?
What is indexing oracle sql?
How do I run a program in pl sql?
What is pl/sql table? Why it is used?
What is the purpose of using pl/sql?
What is the use of function "module procedure" in pl/sql?
Is sql between inclusive?
Can we declare a column having number data type and its scale is larger than pricesionex: column_name number(10,100),column_name numbaer(10,-84)
What is the life of an sql statement?
What is tuple in sql?
What is structural independence and why is it important?
What is sql and db2?
What is the use of non clustered index?
What is the difference between the implicit and explicit cursors?
What is the difference between subquery and correlated query?