1

什么是等效的:

SELECT operation_Id, Min(timestamp)
FROM exceptions
WHERE timestamp >= '2017-01-01'
GROUP BY operation_Id

在 Azure Application Insights 分析平台上?

4

1 回答 1

3

像这样使用汇总运算符

exceptions
| where timestamp >= datetime('2017-01-01')
| summarize min(timestamp) by operation_Id
于 2017-04-12T15:46:42.983 回答