๐ฎ Output PredictionSQ SQL Medium+20 XP
NULL Comparison
How many rows does this return if 3 users have NULL email?
SQL
SELECT * FROM users WHERE email = NULL;
How many rows does this return if 3 users have NULL email?
SELECT * FROM users WHERE email = NULL;