แชร์ผ่าน


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]