MERGE - Amazon Glue DataBrew
Amazon Web Services 文档中描述的 Amazon Web Services 服务或功能可能因区域而异。要查看适用于中国区域的差异,请参阅 中国的 Amazon Web Services 服务入门 (PDF)

MERGE

将两列或多列合并为一个新列。

参数
  • sourceColumns:JSON 编码字符串,表示要合并的一列或多列的列表。

  • delimiter:要在目标列中显示的值之间的可选分隔符。

  • targetColumn:要创建的合并列的名称。

例 示例

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