共用方式為


Record.Combine

語法

Record.Combine(records as list) as record

關於

結合所指定 records 中的記錄。 如果 records 包含非記錄值,則傳回錯誤。

範例 1

根據記錄建立一個合併的記錄。

使用方式

Record.Combine({
    [CustomerID = 1, Name = "Bob"],
    [Phone = "123-4567"]
})

輸出

[CustomerID = 1, Name = "Bob", Phone = "123-4567"]