snowflake.snowpark.functions.systimestamp¶
- snowflake.snowpark.functions.systimestamp() Column[source]¶
Returns the current timestamp for the system.
- Returns:
A
Columnwith the current system timestamp.
Example:
>>> df = session.create_dataframe([1], schema=["a"]) >>> result = df.select(systimestamp()).collect() >>> import datetime >>> assert isinstance(result[0]["SYSTIMESTAMP()"], datetime.datetime)