如何在带点的字段的 ADX 中创建 table

How to create a table in ADX with field with dot

我正在尝试创建一个 table 并将 dot.sample 作为字段并出现 "query could not be parsed" 错误。

尝试使用反斜杠对其进行转义,但无效。

我如何创建 table:

.create table testingTwo (dot.sample: string, normalfield: string)

参见:https://docs.microsoft.com/en-us/azure/kusto/query/schema-entities/entity-names#identifier-naming-rules

例如:

.create table MyTable (['dot.sample']: string, other_column: int)