Table.AddKey
Table.AddKey(table as table, columns as list, isPrimary as logical) as table
เพิ่มคีย์ลงใน table
โดยที่ columns
คือรายการของชื่อคอลัมน์ที่กําหนดคีย์ และ isPrimary
จะระบุว่าคีย์เป็นคีย์หลักหรือไม่
เพิ่มคีย์หลักแบบคอลัมน์เดียวลงในตาราง
การใช้งาน
let
table = Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
}),
resultTable = Table.AddKey(table, {"Id"}, true)
in
resultTable
ผลลัพธ์ของ
Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
})