Last active
June 28, 2019 06:21
-
-
Save paslandau/b40d8e265884ce2c19b966e52fbf72b9 to your computer and use it in GitHub Desktop.
Convert timestamp/date/datetime to different timezone in BigQuery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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