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.

greatest

Function: greatest
  return the largest value among its arguments (ignoring null)

Examples:

  greatest(5, 4, 3, 2, 1)
  -- Result: "5"

  greatest(4, 1, null, 3, 6)
  -- Result: "6"

  greatest(null, null, null)
  -- Result: null




Signatures
a -> a