Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySQLCASE WHENSingle-choice MCQ

What value does this CASE expression produce when grade is NULL?

SELECT CASE grade WHEN 'A' THEN 4 WHEN NULL THEN 0 ELSE -1 END AS points;