pyspark.sql.functions.map_keys¶
-
pyspark.sql.functions.
map_keys
(col)[source]¶ Collection function: Returns an unordered array containing the keys of the map.
New in version 2.3.0.
- Parameters
- col
Column
or str name of column or expression
- col
Examples
>>> from pyspark.sql.functions import map_keys >>> df = spark.sql("SELECT map(1, 'a', 2, 'b') as data") >>> df.select(map_keys("data").alias("keys")).show() +------+ | keys| +------+ |[1, 2]| +------+