Raymond Raymond

BigQuery SQL - COALESCE and IFNULL Functions

event 2021-03-13 visibility 2,633 comment 0 insights toc
more_vert
insights Stats
toc Table of contents

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"
  }
]
More from Kontext
comment Comments
No comments yet.

Please log in or register to comment.

account_circle Log in person_add Register

Log in with external accounts