what is the difference between the query and corelated
query
Answer Posted / aravinda
query: query is single time validation of conditions for
entire result once result is fetched there no further
validation of records.
corelated sub query : each record is validated with inner
query aftr fetch.
1) outer query will execute first and pass a value to inner
query.
2) based on outer query value inner query will execute.
3) based on inner query value the outer query record will be
validated.
inner query will execute for every record of outer query( if
outer query has 10 records inner query will execute 10 times)
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is varchar sql?
What is the example of procedure?
What is rank () in sql?
What are tables in sql?
Why should I use postgresql?
Explain the difference in execution of triggers and stored procedures?
What is the cause of mutating table error and how can we solve it?
Is delete faster than truncate?
What's the difference between inner join and left join?
what is a cursor? : Sql dba
What does (*) mean in sql?
How do you concatenate in sql?
tell me about various levels of constraint. : Sql dba
Is it possible to pass parameters to triggers?
Is sql harder than python?