Skip
Arish's avatar

41. Practice - IS NULL


Exercise: Find Missing Data

Find students without email addresses.

Solution

sql
1SELECT * FROM students
2WHERE email IS NULL;