What is the difference between the EXISTS and IN clause in SQL?
EXISTS
IN
When should we use EXISTS, and when should we use IN
As per my knowledge when a subquery returns a NULL value then the whole statement becomes NULL. In that cases we are using the EXITS keyword. If we want to compare particular values in subqueries then we are using the IN keyword.
NULL
EXITS