如何在ADX中使用带点的字段创建表

时间:2019-07-18 03:38:36

标签: azure-data-explorer

我正在尝试创建一个以dot.sample作为字段的表,并收到"query could not be parsed"错误。

试图使用反斜杠对其进行转义,但无法正常工作。

我如何创建表格:

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

1 个答案:

答案 0 :(得分:1)

请参阅: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)