from_utc_timestamp
function
Applies to: Databricks SQL
Databricks Runtime
Returns the timestamp at timeZone
for a timestamp expr
at UTC
.
For a list of valid timezones, see List of tz database time zones.
Get started
Load & manage data
Work with data
Administration
Reference & resources
CLUSTER BY
clause (TABLE)mask
clauseROW FILTER
clause更新しました 2025/02/10
from_utc_timestamp
function Applies to: Databricks SQL
Databricks Runtime
Returns the timestamp at timeZone
for a timestamp expr
at UTC
.
For a list of valid timezones, see List of tz database time zones.
expr
: A TIMESTAMP
expression with a UTC timestamp.
timeZone
: A STRING
expression that is a valid timezone.
> SELECT from_utc_timestamp('2016-08-31', 'Asia/Seoul');
2016-08-31 09:00:00
> SELECT from_utc_timestamp('2017-07-14 02:40:00.0', 'GMT+1');
'2017-07-14 03:40:00.0'