【发布时间】:2021-08-25 06:22:50
【问题描述】:
我在我的 KQL 中提供一个 csv 文件作为外部数据源。我运行查询以匹配列:
Events | where Title has_any (ColumnName) | project Title, EventId
现在,我想将输出与匹配的列值连接起来。就像如果列有值: "test","test2","test3" 和 "test2" 在上面的查询中匹配,结果表应该是这样的:
Title,EventId,MatchedColumnValue
请帮忙
【问题讨论】:
标签: azure azure-data-explorer kql kusto-explorer