什么是相当于:
SELECT operation_Id, Min(timestamp)
FROM exceptions
WHERE timestamp >= '2017-01-01'
GROUP BY operation_Id浅谈Azure应用洞察分析平台?
发布于 2017-04-12 15:46:42
这样使用概括运算符:
exceptions
| where timestamp >= datetime('2017-01-01')
| summarize min(timestamp) by operation_Idhttps://stackoverflow.com/questions/43373016
复制相似问题