azure 如何在KQL中插入基于列记录

2eafrhcq  于 2023-03-24  发布在  其他
关注(0)|答案(1)|浏览(111)

我使用内联查询插入数据到我的表。不使用内联查询,我们可以插入一个基于列的记录。使用内联你必须输入所有的列值,而不是它,我们可以只插入一个列值?

y1aodyip

y1aodyip1#

在KQL中插入基于单列记录。

  • 使用datatable我能够实现它
.show  databases

.create  table  Employee (Name:string, Id:int, Country:string, Age:int)

.set-or-replace  EmployeeTable <|
datatable(Name:string, Id:int, Country:string, Age:int)
[
"sanjay", 123, "india", 21,
"john", 456, "usa", 35,
"maria", 789, "france", 27
]

let newEmployeeTable = datatable (Id:int) [4567, 8901, 2345];

EmployeeTable

| union newEmployeeTable

相关问题