0

我正在使用Azure 应用程序洞察力,并希望仅从时间戳中提取时间部分。

例如:

   Input : "2017-01-23T20:00:00.2804261Z"; //This is a Timestamp data type
   Output : 20:00:00.2804261Z
4

1 回答 1

1

您可以从现有时间戳中减去一天以仅保留其中的“时间”部分:

QueryHere
| extend date_output = floor(timestamp, 1d)
| extend time_output = timestamp - date_output 

输出将类似于

Timestamp: "2017-01-23T20:00:00.2804261Z"
date_output: "2017-01-23T00:00:00.0000000Z"
time_output: "20:00:00.2804261"
于 2017-02-18T01:17:35.650 回答