Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 589 Bytes

replace-empty-strings-null.md

File metadata and controls

25 lines (19 loc) · 589 Bytes

Replace empty strings with NULLs

Explore this snippet here.

Description

An essential part of cleaning a new data source is deciding how to treat missing values. The CASE statement can help with replacing empty values with something else:

WITH data AS (
  SELECT *
  FROM (VALUES ('a'), ('b'), (''), ('d')) AS data (str)
)

SELECT
  CASE WHEN LENGTH(str) != 0 THEN str END AS str
FROM data;
str
a
b
NULL
d