EasyOutput prediction

EXCEPT removes rows found in the second set

Given these tables:

all_users:

name
Alice
Bob
Carol

active_users:

name
Bob
Carol

What does this query return?

SELECT name FROM all_users
EXCEPT
SELECT name FROM active_users;

← → arrow keys to navigate

Sign in to save your progress.

EXCEPT removes rows found in the second set - SQL Set Operations Quiz | Unnested