DEV Community

[Comment from a deleted post]
Collapse
 
rodkammer profile image
Rodrigo Kammer

Excellent post! I always follow your articles.
I believe that it's possible to use CASE expressions to check for NULL. The following statement should execute properly.

SELECT game, 
       CASE WHEN year IS NULL THEN '2020' 
            ELSE year 
       END AS year
  FROM sega_sales