Ler em inglês

Partilhar via


Table.Keys

Sintaxe

 
Table.Keys(table as table) as list

Sobre nós

Retorna as chaves da tabela especificada.

Exemplo 1

Obtenha a lista de chaves para uma tabela.

Utilização

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

Saída

{[Columns = {"Id"}, Primary = true]}