pyspark.sql.functions.map_concat

pyspark.sql.functions。 map_concat ( *關口:聯盟[ColumnOrName、列表(ColumnOrName_)元組[ColumnOrName_,…]] )→pyspark.sql.column.Column

返回所有給定的地圖的結合。

參數
關口 或str

列名或年代

例子

> > >pyspark.sql.functions進口map_concat> > >df=火花sql(“選擇地圖(1,a, 2, b) map1,地圖(3 c) map2”)> > >df選擇(map_concat(“map1”,“map2”)別名(“map3”))顯示(截斷=)+ - - - - - - - - - - - - - - - - - - - - - - - - +| map3 |+ - - - - - - - - - - - - - - - - - - - - - - - - +| {b 1 - > 2 - > 3 - > c} |+ - - - - - - - - - - - - - - - - - - - - - - - - +