gpt4 book ai didi

kql - 如何在 KQL 中正确使用 in for 字符串列表

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

下面的代码有效

let names = dynamic(['Windows Installer', 'Software Protection']);

ConfigurationChange
| where Computer like "SRV"
| where SvcPreviousState == "Running"
| where SvcState == "Stopped"
// | where SvcDisplayName in (names)
| order by TimeGenerated

正如注释掉的那样,我只想检查 SvcDisplayName 的列表。

根据文档,这应该有效,但确实有问题

: Failed to resolve table or column or scalar expression named 'names'

我将如何正确使用 in with a list for SvcDisplayName ?

最佳答案

空行被视为查询之间的分隔符,除非您选择执行整个代码。
请参阅下面的屏幕截图。

选择全部代码执行。
=> 有效查询

select the code for execution

将光标放在要执行的查询上。
let语句后没有空行。
=> 有效查询

put the cursor on the query for execution - without blank line

将光标放在要执行的查询上。
let语句后有一个空行。
=> 无效查询

请注意查询是如何用浅蓝色标记的,而不是 let 语句

put the cursor on the query for execution - with blank line

关于kql - 如何在 KQL 中正确使用 in for 字符串列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71480397/

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