What is the purpose of the EXISTS operator in SQL?
Q1. What is the purpose of the EXISTS operator in SQL?
Answer: To test whether a subquery returns any rows
Explanation: EXISTS operator tests whether a subquery returns any rows, allowing you to conditionally execute a query based on the existence of data.