我想手动向kusto表中添加一个名为“StudentTable”的新行。我想知道语法是什么?假设表已存在,并且列名为 StudentID 和 StudentName
StudentID
StudentName
文档中没有任何说明: https://learn.microsoft.com/en-us/azure/data-explorer/kusto/management/data-ingestion/ingest-from-query
这会是语法吗? .append async StudentTable <| StudentID = "12345", StudentName = "John Doe"
.append async StudentTable <| StudentID = "12345", StudentName = "John Doe"
你错过了 print 操作人员
print
.append StudentTable <| print StudentID = "12345", StudentName = "John Doe"
另一个选项是使用 .ingest inline command .
.ingest inline
例如。: .ingest inline into table StudentTable <|12345,John Doe
.ingest inline into table StudentTable <|12345,John Doe
注释 对于生产环境中的频繁操作,不建议使用上述任一选项摄取单个记录。