1. What makes a subquery 'correlated'?
- It contains an INNER JOIN.
- It references columns belonging to the outer query's tables.
- It runs asynchronously in the background.
- It is written inside a CTE.
Hint: Correlated subqueries refer to variables/columns in the parent query, creating a dependency between outer and inner loops.