pyspark.sql.functions.map_concat¶
-
pyspark.sql.functions。
map_concat
( *關口:聯盟[ColumnOrName、列表(ColumnOrName_)元組[ColumnOrName_,…]] )→pyspark.sql.column.Column¶ -
返回所有給定的地圖的結合。
例子
> > >從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} |+ - - - - - - - - - - - - - - - - - - - - - - - - +