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.

replace

Function: replace
  replace text with another piece of text

Examples:

  replace('some-text-literal', '-', '_')
  -- Result: "some_text_literal"

  replace(text_column, 'datum', 'data')
  -- Result: "text column data"




Signatures
text, text, text -> text