다음을 통해 공유


Record.RenameFields

통사론

Record.RenameFields(record as record, renames as list, optional missingField as nullable number) as record  

소개

입력 record 필드 이름을 목록 renames지정된 새 필드 이름으로 변경한 후 레코드를 반환합니다. 여러 이름 바꾸기의 경우 중첩된 목록을 사용할 수 있습니다({ {old1, new1}, {old2, new2} }.

예제 1

레코드에서 "UnitPrice" 필드의 이름을 "Price"로 바꿉니다.

사용량

Record.RenameFields(
    [OrderID = 1, CustomerID = 1, Item = "Fishing rod", UnitPrice = 100.0],
    {"UnitPrice", "Price"}
)

출력

[OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0]

예제 2

레코드에서 필드 이름을 "UnitPrice"에서 "Price"로, "OrderNum"을 "OrderID"로 바꿉니다.

사용량

Record.RenameFields(
    [OrderNum = 1, CustomerID = 1, Item = "Fishing rod", UnitPrice = 100.0],
    {
        {"UnitPrice", "Price"},
        {"OrderNum", "OrderID"}
    }
)

출력

[OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0]