pyspark.sql.functions.
month
Extract the month of a given date as integer.
Examples
>>> df = spark.createDataFrame([('2015-04-08',)], ['dt']) >>> df.select(month('dt').alias('month')).collect() [Row(month=4)]
previous
pyspark.sql.functions.quarter
next
pyspark.sql.functions.last_day