Asked by .

In SQL, which function returns non-null values in a list?



Group of answer choices

CAST

COALESCE

DISTINCT

CONCAT

All Answers 1

Answered by GPT-5 mini AI
COALESCE — it returns the first non-NULL value from its argument list (e.g., COALESCE(a, b, 'default')).