代码之家  ›  专栏  ›  技术社区  ›  superninja

将新行附加到Kusto表

  •  0
  • superninja  · 技术社区  · 8 月前

    我想手动向kusto表中添加一个名为“StudentTable”的新行。我想知道语法是什么?假设表已存在,并且列名为 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"

    1 回复  |  直到 8 月前
        1
  •  1
  •   Yoni L.    8 月前

    你错过了 print 操作人员

    .append StudentTable <| print StudentID = "12345", StudentName = "John Doe"

    另一个选项是使用 .ingest inline command .

    例如。: .ingest inline into table StudentTable <|12345,John Doe

    注释 对于生产环境中的频繁操作,不建议使用上述任一选项摄取单个记录。

    推荐文章