跳到主要内容

Table.ReplaceKeys

替换指定表的键。

Syntax

Table.ReplaceKeys(
table as table,
keys as list
) as table

Remarks

替换指定表的键。

Examples

Example #1

替换表的现有键。

let
table = Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
}),
tableWithKeys = Table.AddKey(table, {"Id"}, true),
resultTable = Table.ReplaceKeys(tableWithKeys, {[Columns = {"Id"}, Primary = false]})
in
resultTable

Result:

Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
})

Category

Table.Transformation