Čítať v angličtine

Zdieľať cez


Table.Keys

Syntax

 
Table.Keys(table as table) as list

O

Vráti kľúče zadanej tabuľky.

Príklad č. 1

Získanie zoznamu kľúčov pre tabuľku.

používania

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ýstupu

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