Skip to main content

Table.AddKey

เพิ่มคีย์ลงในตาราง

Syntax

Table.AddKey(
table as table,
columns as list,
isPrimary as logical
) as table

Remarks

เพิ่มคีย์ลงใน tableซึ่ง columns เป็นรายการของชื่อคอลัมน์ที่กําหนดคีย์ และ isPrimary ระบุว่าคีย์นั้นเป็นคีย์หลักหรือไม่

Examples

Example #1

เพิ่มคีย์หลักแบบคอลัมน์เดียวลงในตาราง

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