Table.Keys
Syntax
Table.Keys(table as table) as list
Asi
Vrátí klíče zadané tabulky.
Příklad 1
Získejte seznam klíčů pro tabulku.
využití
let
table = Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
}),
tableWithKeys = Table.AddKey(table, {"Id"}, true),
keys = Table.Keys(tableWithKeys)
in
keys
výstup
{[Columns = {"Id"}, Primary = true]}