How can we fallback through multiple contact methods?
COALESCE evaluates sequential arguments from left to right, returning the first non-NULL entry.
Cascading contact lookups (mobile -> home -> email -> fallback), tiered attribute resolution.
SELECT
name,
COALESCE(phone, email, 'No Contact') AS contact
FROM employees;Practice typing production-grade SQL code for COALESCE Multiple Values.