snowflake.snowpark.functions.getdate¶ snowflake.snowpark.functions.getdate() → Column[source]¶ Returns the current timestamp for the system in the local time zone. Returns: A Column with the current date and time. Example: CopyExpand>>> df = session.create_dataframe([1], schema=["a"]) >>> result = df.select(getdate()).collect() >>> import datetime >>> assert isinstance(result[0]["GETDATE()"], datetime.datetime) Show lessSee moreScroll to top