snowflake.snowpark.functions.current_date¶ snowflake.snowpark.functions.current_date() → Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/src/snowflake/snowpark/functions.py#L4463-L4472)¶ 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