How would you retrieve data on all the customers where no phone number is stored?
SELECT * FROM customers WHERE PhoneNumber IS UNKNOWN;
SELECT * FROM customers WHERE PhoneNumber IS NOT VALID;
SELECT * FROM customers WHERE PhoneNumber IS NULL;
SELECT * FROM customers WHERE PhoneNumber = NULL;