Skip to content

Instantly share code, notes, and snippets.

@paslandau
Last active June 28, 2019 06:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paslandau/b40d8e265884ce2c19b966e52fbf72b9 to your computer and use it in GitHub Desktop.
Save paslandau/b40d8e265884ce2c19b966e52fbf72b9 to your computer and use it in GitHub Desktop.
Convert timestamp/date/datetime to different timezone in BigQuery
#standardSQL
# Convert date / time to a different timezone in BigQuery; standard-sql; 2018-04-08
# @see http://www.pascallandau.com/bigquery-snippets/convert-timestamp-date-datetime-to-different-timezone/
WITH examples AS (
SELECT TIMESTAMP("2018-04-08T15:50:10+00:00") AS timestamp # Daylight saving time
UNION ALL SELECT TIMESTAMP("2018-03-08T15:50:10+00:00") # Standard time
)
SELECT
timestamp,
DATETIME(timestamp) as datetime,
DATE(timestamp) as date,
TIME(timestamp) as time,
DATETIME(timestamp, "Europe/Berlin") as datetime_berlin,
DATE(timestamp, "Europe/Berlin") as date_berlin,
TIME(timestamp, "Europe/Berlin") as time_berlin
FROM examples
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment