snowflake.snowpark.functions.sysdate¶ snowflake.snowpark.functions.sysdate() → Column[source]¶ Returns the current timestamp for the system, but in the UTC time zone. Example: CopyExpand>>> df = session.create_dataframe([1], schema=["a"]) >>> df.select(sysdate()).collect() is not None True Show lessSee moreScroll to top