You are viewing documentation about an older version (1.3.0). View latest version

snowflake.snowpark.functions.dayofyear¶

snowflake.snowpark.functions.dayofyear(e: ColumnOrName) → Column[source]¶

Extracts the corresponding day (number) of the year from a date or timestamp.

Example::
>>> import datetime
>>> df = session.create_dataframe(
...     [[datetime.datetime.strptime("2020-05-01 13:11:20.000", "%Y-%m-%d %H:%M:%S.%f")]],
...     schema=["a"],
... )
>>> df.select(dayofyear("a")).collect()
[Row(DAYOFYEAR("A")=122)]
Copy