Multiple choice Which SQL operator is used to test whether the sub query or inner query has any tuples? SQL intersect SQL union SQL in SQL join SQL exists Reveal answer Fill a bubble to check yourself E Correct answer Explanation The 'SQL exists' simply tests whether the inner query returns any row. If it does, then the outer query proceeds. If not, the outer query does not execute, and the entire SQL statement returns nothing.