Table.AddKey
Table.AddKey(table as table, columns as list, isPrimary as logical) as table
Přidá klíč k table
, kde columns
je seznam názvů sloupců, které definují klíč, a isPrimary
určuje, zda je klíč primární.
Přidejte do tabulky primární klíč s jedním sloupcem.
využití
let
table = Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
}),
resultTable = Table.AddKey(table, {"Id"}, true)
in
resultTable
výstupní
Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
})