snowflake.snowpark.functions.localtime¶ snowflake.snowpark.functions.localtime() → Column[source]¶ Returns the current time for the system. Returns: A Column with the current local time. Example: CopyExpand>>> import datetime >>> result = session.create_dataframe([1]).select(localtime()).collect() >>> assert isinstance(result[0]["LOCALTIME()"], datetime.time) Show lessSee moreScroll to top