Which type of subquery is executed once for each row returned by the outer query?

  • Correlated subquery
  • Derived table
  • Nested subquery
  • Scalar subquery
A correlated subquery is executed once for each row returned by the outer query. It depends on the values from the outer query, making it different from other subquery types. 
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *