BigQuery SQL - COALESCE and IFNULL Functions
Similar as other databases, BigQuery also supports a large number of SQL dialects. COALESCE and IFNULL functions are provided to deal with nullable values.
COALESCE
SELECT coalesce(NULL, 1, 2) as Col;
Output (in JSON format):
[ { "Col": "1" } ]
IFNULL
SELECT ifnull(NULL, 1) AS Col;
Output (in JSON format):
[ { "Col": "1" } ]
copyright
This page is subject to Site terms.
comment Comments
No comments yet.