指定新列名时扩展运算符是否支持空格?

Does extend operator support whitespace when specify a new column name?

当我想用extend生成一个新的列名,而新的列名包含一个白色的space,代码如下:

requests 
| extend "users name" = ""
//other codes

然后发生错误:无法在第 xxx 行的“=”处解析查询。 所以问题是我们可以在新的列名中使用 white space with extend?

我也试过使用单引号,还是一样的错误。

您需要使用方括号:

数据表(['a b']:字符串)["this works"]

查看更多: https://docs.microsoft.com/en-us/azure/kusto/query/schema-entities/entity-names