gpt4 book ai didi

azure-application-insights - Application Insights 将列加入/合并为一个列

转载 作者:行者123 更新时间:2023-12-05 01:44:05 27 4
gpt4 key购买 nike

我有一个应用洞察查询。在此查询中,我想将多个列加入/合并为一个列以显示如何实现这一点。

我想结合 ip、城市、州、国家。

customEvents
| where timestamp >= ago(7d)
| where (itemType == 'customEvent')
| where name == "Signin"
| project timestamp, customDimensions.appusername, client_IP,client_City,client_StateOrProvince, client_CountryOrRegion
| order by timestamp desc

最佳答案

strcat 是你的 friend ,用你想要的任何字符串作为分隔符(我在示例中只使用空格):

| project timestamp, customDimensions.appusername, 
strcat(client_IP," ",client_City," ",client_StateOrProvince," ", client_CountryOrRegion)

另外,|其中 (itemType == 'customEvent') 在您的查询中是不必要的,因为 customEvents 表中的所有内容都已经是一个 customEvent。如果您以某种方式连接多个表(例如 union requests、customEvents 或查询中某处的 join引用多个表)

关于azure-application-insights - Application Insights 将列加入/合并为一个列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47232261/

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