snowflake.snowpark.functions.systimestamp¶ snowflake.snowpark.functions.systimestamp() → Column[source]¶ 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