Table.AddKey
Składnia
Table.AddKey(table as table, columns as list, isPrimary as logical) as table
Informacje
Dodaje klucz do table
, gdzie columns
jest listą nazw kolumn definiujących klucz, a isPrimary
określa, czy klucz jest podstawowy.
Przykład 1
Dodaj do tabeli klucz podstawowy z jedną kolumną.
Użycie
let
table = Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
}),
resultTable = Table.AddKey(table, {"Id"}, true)
in
resultTable
Wyjście
Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
})