snowflake.snowpark.functions.current_date¶ snowflake.snowpark.functions.current_date() → Column[source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.6.1/src/snowflake/snowpark/functions.py#L2955-L2963)¶ Returns the current date for the system. Example CopyExpand>>> import datetime >>> result = session.create_dataframe([1]).select(current_date()).collect() >>> assert isinstance(result[0]["CURRENT_DATE()"], datetime.date) Show lessSee moreScroll to top