snowflake.snowpark.functions.sysdate

snowflake.snowpark.functions.sysdate() Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.16.0/src/snowflake/snowpark/functions.py#L3542-L3552)

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
语言: 中文