应用程序见解分析查询

时间:2017-04-12 14:52:52

标签: sql azure azure-application-insights ms-app-analytics

等同于:

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

在Azure Application Insights分析平台上?

1 个答案:

答案 0 :(得分:3)

像这样使用summarize operator

exceptions
| where timestamp >= datetime('2017-01-01')
| summarize min(timestamp) by operation_Id