snowflake.snowpark.functions.sysdate¶
- snowflake.snowpark.functions.sysdate() Column [source] (https://github.com/snowflakedb/snowpark-python/blob/v1.26.0/snowpark-python/src/snowflake/snowpark/functions.py#L4240-L4251)¶
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