Skip to main content
🔮 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;

🔮 What is the output?