Socrata was acquired by Tyler Technologies in 2018 and is now the Data and Insights division of Tyler. The platform is still powered by the same software formerly known as Socrata but you will see references to Data & Insights going forward.

coalesce

Function: coalesce
  Take the leftmost non-null value.
  This function can take an arbitrary number of arguments, but
  every argument must be of the same type.

  Examples:

    coalesce(null, null, "some_value") -- "some_value"

    coalesce(
      maybe_this_column,
      maybe_this_other_column,
      maybe_this_one
    )

Signatures
a -> a