Spark SQL - Get Current Timezone

Kontext Kontext 0 5291 4.77 index 6/16/2022

Spark SQL adds a new function named current_timezone since version 3.1.0 to return the current session local timezone.  Timezone can be used to convert UTC timestamp to a timestamp in a specific time zone.

Code snippet

spark-sql> SELECT current_timezone();
Australia/Sydney

Time zone can be used with other Spark functions like from_utc_timestamp which converts a UTC timestamp to a particular timestamp in a specified time zone.

spark-sql> SELECT from_utc_timestamp('2022-06-16', current_timezone());
2022-06-16 10:00:00
spark-sql spark-sql-function

Join the Discussion

View or add your thoughts below

Comments