snowflake.snowpark.functions.systimestamp¶ snowflake.snowpark.functions.systimestamp() → Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.48.0/src/snowflake/snowpark/_functions/scalar_functions.py#L355-L370)¶ Returns the current timestamp for the system. Returns: A Column with the current system timestamp. Example: CopyExpand>>> df = session.create_dataframe([1], schema=["a"]) >>> result = df.select(systimestamp()).collect() >>> import datetime >>> assert isinstance(result[0]["SYSTIMESTAMP()"], datetime.datetime) Show lessSee moreScroll to top