Question: How would you retrieve data on all the customers where no phone number is stored?
- `SELECT * FROM customers WHERE PhoneNumber = NULL;`
- `SELECT * FROM customers WHERE PhoneNumber IS NOT VALID;`
- `SELECT * FROM customers WHERE PhoneNumber IS NULL;`
- `SELECT * FROM customers WHERE PhoneNumber IS UNKNOWN;`
Answer: The correct answer of the above question is Option C:`SELECT * FROM customers WHERE PhoneNumber IS NULL;`