Leggere in inglese

Condividi tramite


Table.Keys

Sintassi

 
Table.Keys(table as table) as list

Informazioni su

Restituisce le chiavi della tabella specificata.

Esempio 1

Ottenere l'elenco di chiavi per una tabella.

Utilizzo

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

Output

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