Läs på engelska

Dela via


Table.ReplaceKeys

Syntax

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

Om

Ersätter nycklarna i den angivna tabellen.

Exempel 1

Ersätt de befintliga nycklarna i en tabell.

Användning

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

Utdata

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