Table.AddKey
Table.AddKey(table as table, columns as list, isPrimary as logical) as table
Hozzáad egy kulcsot a table
, ahol columns
a kulcsot meghatározó oszlopnevek listája, isPrimary
pedig meghatározza, hogy a kulcs elsődleges-e.
Adjon hozzá egy egyoszlopos elsődleges kulcsot egy táblához.
Használat
let
table = Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
}),
resultTable = Table.AddKey(table, {"Id"}, true)
in
resultTable
kimeneti
Table.FromRecords({
[Id = 1, Name = "Hello There"],
[Id = 2, Name = "Good Bye"]
})