共用方式為


startofday()

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

如果提供的話,傳回包含日期的開始時間,並依位移移移。

語法

startofday(date [, offset ])

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 描述
date datetime ✔️ 要尋找開始的日期。
offset int 要從輸入日期位移的天數。 預設值是 0。

傳回

datetime,代表指定 日期 值的日期開始時間,如果指定,則為位移。

範例

range offset from -1 to 1 step 1
| project dayStart = startofday(datetime(2017-01-01 10:10:17), offset) 

輸出

dayStart
2016-12-31 00:00:00.0000000
2017-01-01 00:00:00.0000000
2017-01-02 00:00:00.0000000