共用方式為


todatetime()

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

將輸入轉換成 datetime 純量值。

注意

語法

todatetime(value)

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 Description
value 純量 ✔️ 要轉換成 datetime 的值。

傳回

如果轉換成功,結果會是 datetime 值。 否則,結果會是 null

範例

下列範例會將日期和時間字串轉換成 datetime 值。

print todatetime("2015-12-31 23:59:59.9")

下列範例會比較已轉換的日期字串與 datetime 值。

print todatetime('12-02-2022') == datetime('12-02-2022')

輸出

print_0
true