pyspark.sql.functions.month

pyspark.sql.functions.month(col)[source]

Extract the month of a given date as integer.

New in version 1.5.0.

Examples

>>> df = spark.createDataFrame([('2015-04-08',)], ['dt'])
>>> df.select(month('dt').alias('month')).collect()
[Row(month=4)]