datetime_utc_to_local()
適用対象: ✅Microsoft Fabric✅Azure データ エクスプローラー✅Azure Monitor✅Microsoft Sentinel
time-zone 仕様を使用して、UTC datetime をローカル datetime に変換。
構文
datetime_utc_to_local(
from,
timezone)
構文規則について詳しく知る。
パラメーター
件名 | タイプ | Required | 説明 |
---|---|---|---|
from | datetime |
✔️ | 変換する UTC 日時。 |
timezone | string |
✔️ | 変換するタイムゾーン。 この値は、サポートされている timezones のいずれかである必要があります。 |
返品
UTC datetime に対応する timezone のローカル datetime。
例
print dt=now()
| extend pacific_dt = datetime_utc_to_local(dt, 'US/Pacific'), canberra_dt = datetime_utc_to_local(dt, 'Australia/Canberra')
| extend diff = pacific_dt - canberra_dt
出力
dt | pacific_dt | canberra_dt | diff |
---|---|---|---|
2022-07-11 22:18:48.4678620 | 2022-07-11 15:18:48.4678620 | 2022-07-12 08:18:48.4678620 | -17:00:00 |
関連するコンテンツ
- datetime をローカルから UTC に変換するには、 datetime_local_to_utc() を参照してください。
- タイムゾーン
- サポートされているタイムゾーンの一覧
- format_datetime()