Przejdź do głównej zawartości

Table.AddKey

Dodaje klucz do tabeli.

Syntax

Table.AddKey(
table as table,
columns as list,
isPrimary as logical
) as table

Remarks

Dodaje klucz do table, gdzie columns jest listą nazw kolumn definiujących klucz, a isPrimary określa, czy klucz jest kluczem podstawowym.

Examples

Example #1

Dodaj jednokolumnowy klucz podstawowy do tabeli.

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

Result:

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

Category

Table.Transformation