什么是等效的:
SELECT operation_Id, Min(timestamp)
FROM exceptions
WHERE timestamp >= '2017-01-01'
GROUP BY operation_Id
在 Azure Application Insights 分析平台上?
什么是等效的:
SELECT operation_Id, Min(timestamp)
FROM exceptions
WHERE timestamp >= '2017-01-01'
GROUP BY operation_Id
在 Azure Application Insights 分析平台上?
像这样使用汇总运算符:
exceptions
| where timestamp >= datetime('2017-01-01')
| summarize min(timestamp) by operation_Id