Type.ReplaceTableKeys
すべてのキーが指定された一連のキーに置き換えられた新しいテーブル型を返します。
Syntax
Type.ReplaceTableKeys(
tableType as type,
keys as list
) as type
Remarks
すべてのキーが指定された一連のキーに置き換えられた新しいテーブル型を返します。
各キーは、次の形式のレコードを使用して定義されます。
-
Columns
: キーを定義する列名の一覧 -
Primary
: キーがテーブルのプライマリ キーの場合はtrue
、それ以外の場合はfalse
Examples
Example #1
テーブル型のキー情報を置き換えます。
let
BaseType = type table [ID = number, FirstName = text, LastName = text],
KeysAdded = Type.ReplaceTableKeys(
BaseType,
{
[Columns = {"ID"}, Primary = true],
[Columns = {"FirstName", "LastName"}, Primary = false]
}
),
DetailsOfKeys = Type.TableKeys(KeysAdded)
in
DetailsOfKeys
Result:
{
[Columns = {"ID"}, Primary = true],
[Columns = {"FirstName", "LastName"}, Primary = false]
}
Example #2
テーブル型で以前に定義されたキー情報をクリアします。
let
TypeWithKey = Type.AddTableKey(type table [ID = number, Name = text], {"ID"}, true),
KeyRemoved = Type.ReplaceTableKeys(TypeWithKey, {}),
DetailsOfKeys = Type.TableKeys(KeyRemoved)
in
DetailsOfKeys
Result:
{}
Category
Type