snowflake.snowpark.functions.sysdate

snowflake.snowpark.functions.sysdate() Column[source]

Returns the current timestamp for the system, but in the UTC time zone.

Example:

>>> df = session.create_dataframe([1], schema=["a"])
>>> df.select(sysdate()).collect() is not None
True
Copy