gpt4 book ai didi

sql - 应用程序洞察分析查询

转载 作者:行者123 更新时间:2023-12-02 08:06:10 30 4
gpt4 key购买 nike

相当于什么:

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

在 Azure Application Insights 分析平台上?

最佳答案

使用summarize operator像这样:

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

关于sql - 应用程序洞察分析查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43373016/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com