pyspark.sql.functions.dayofmonth

pyspark.sql.functions.dayofmonth(col: ColumnOrName) → pyspark.sql.column.Column[source]

Extract the day of the month of a given date as integer.

New in version 1.5.0.

Examples

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