startofweek()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
傳回包含日期的周開始,如果提供,則由位移移移。
一周的開始被視為星期天。
語法
startofweek(
date [,
offset ])
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
date | datetime |
✔️ | 要尋找周開始的日期。 |
offset | int |
要從輸入日期位移的周數。 預設值是 0。 |
傳回
datetime,代表指定 日期 值的周開始時間,如果指定,則為位移。
範例
range offset from -1 to 1 step 1
| project weekStart = startofweek(datetime(2017-01-01 10:10:17), offset)
輸出
weekStart |
---|
2016-12-25 00:00:00.0000000 |
2017-01-01 00:00:00.0000000 |
2017-01-08 00:00:00.0000000 |