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
Can we call stored procedure in function?
Why cross join is used?
How to add new employee details in an employee_details table with the following details
what is msql? : Sql dba
What is type and rowtype in pl sql?
Are pl sql variables case sensitive?
What is cartesian join in sql?
What is scalar data type in pl sql?
What is the difference between jpql and sql?
Why do we use cursors?
what are the performance and scalability characteristics of mysql? : Sql dba
Does sql view stored data?
Why stored procedure is better than query?
What is partition by in sql?
What is a unique constraint?