SQL - Subqueries
Why is the
EXISTS operator often more efficient than using IN with subqueries?EXISTS operator often more efficient than using IN with subqueries?EXISTS returns true as soon as it finds the first matching row, stopping further search.IN often evaluates the entire subquery result set before filtering, which can be less efficient.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions