共用方式為


make_datetime()

適用於:✅Microsoft網狀架構Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel

建立 指定日期和時間之間的日期時間 純量值。

語法

make_datetime(yearmonthday)

make_datetime(yearmonthdayhourminute)

make_datetime(yearmonthday、hourminute、second)

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 描述
year int ✔️ 年值介於 0 到 9999 之間。
month int ✔️ 介於 1 到 12 之間的月份值。
day int ✔️ 根據月份,介於 1 到 28-31 之間的日值。
hour int 介於 0 到 23 之間的小時值。
minute int 介於 0 到 59 之間的分鐘值。
second double 介於 0 到 59.99999999 之間的第二個值。

傳回

如果成功,結果將會是 datetime 值,否則結果會是 Null。

範例

print year_month_day = make_datetime(2017,10,01)

輸出

year_month_day
2017-10-01 00:00:00.0000000
print year_month_day_hour_minute = make_datetime(2017,10,01,12,10)

輸出

year_month_day_hour_minute
2017-10-01 12:10:00.0000000
print year_month_day_hour_minute_second = make_datetime(2017,10,01,12,11,0.1234567)

輸出

year_month_day_hour_minute_second
2017-10-01 12:11:00.1234567