Table.AddKey
Thêm một khóa vào bảng.
Syntax
Table.AddKey(
table as table,
columns as list,
isPrimary as logical
) as table
Remarks
Thêm một khóa vào table
, trong đó columns
là danh sách bao gồm các tên cột xác định khóa và isPrimary
chỉ định đó có phải là khóa chính không.
Examples
Example #1
Thêm một khóa chính cột đơn vào bảng.
let
table = Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
}),
resultTable = Table.AddKey(table, {"Id"}, true)
in
resultTable
Result:
Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
})
Category
Table.Transformation