Record.RenameFields
นำการเปลี่ยนชื่อจากรายการ ในฟอร์ม { old, new } ไปใช้
Syntax
Record.RenameFields(
record as record,
renames as list,
optional missingField as MissingField.Type
) as record
Remarks
ส่งกลับระเบียนหลังจากเปลี่ยนชื่อเขตข้อมูลในค่าที่ป้อน record
เป็นชื่อเขตข้อมูลใหม่ที่ระบุในรายการ renames
สำหรับการเปลี่ยนชื่อหลายรายการ สามารถใช้รายการที่ซ้อนกันได้ ({ {old1, new1}, {old2, new2} }
Examples
Example #1
เปลี่ยนชื่อฟิลด์ "UnitPrice" เป็น "Price" จากระเบียน
Record.RenameFields(
[OrderID = 1, CustomerID = 1, Item = "Fishing rod", UnitPrice = 100.0],
{"UnitPrice", "Price"}
)
Result:
[OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0]
Example #2
เปลี่ยนชื่อฟิลด์ "UnitPrice" เป็น "Price" และ "OrderNum" เป็น "OrderID" จากระเบียน
Record.RenameFields(
[OrderNum = 1, CustomerID = 1, Item = "Fishing rod", UnitPrice = 100.0],
{
{"UnitPrice", "Price"},
{"OrderNum", "OrderID"}
}
)
Result:
[OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0]
Category
Record.Transformations