MERGE - Amazon Glue DataBrew
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

MERGE

Merges two or more columns into a new column.

Parameters
  • sourceColumns – A JSON-encoded string representing a list of one or more columns to be merged.

  • delimiter – An optional separator between the values, to appear in the target column.

  • targetColumn – The name of the merged column to be created.

Example

{ "RecipeAction": { "Operation": "MERGE", "Parameters": { "delimiter": " ", "sourceColumns": "[\"first_name\",\"last_name\"]", "targetColumn": "Merged Column 1" } } }