我正在使用Azure Application insights,并希望从时间戳中提取时间部分。
例如:
Input : "2017-01-23T20:00:00.2804261Z"; //This is a Timestamp data type
Output : 20:00:00.2804261Z
答案 0 :(得分: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"