Table.Keys

構文

 
Table.Keys(table as table) as list

詳細

指定したテーブルのキーを置き換えます。

例 1

テーブルのキーのリストを取得します。

使用方法

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

出力

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