Record.SelectFields
Record.SelectFields(record as record, fields as any, optional missingField as nullable number) as record
แสดงเรกคอร์ดที่มีเฉพาะเขตข้อมูลที่ระบุในรายการ fields
จากข้อมูลป้อนเข้าrecord
เลือกเขตข้อมูล "หน่วยข้อมูล" และ "ราคา" ในระเบียน
การใช้งาน
Record.SelectFields(
[OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0],
{"Item", "Price"}
)
เอาท์พุท
[Item = "Fishing rod", Price = 100]