1
SQLBeginner#functions
NULL means unknown, so any comparison with = yields UNKNOWN. Test it with IS NULL / IS NOT NULL and substitute defaults with COALESCE, IFNULL or NVL.
SELECT name, COALESCE(phone, 'not provided') AS phone FROM customers WHERE deleted_at IS NULL;