Which SQL function is used to convert a NULL value in a query result into a default value, such as 0?
COALESCE is the standard ANSI SQL function for handling NULLs.
Why this answer
COALESCE is a standard function used to return the first non-null value in a list, often used to replace NULLs.