อ่านในภาษาอังกฤษ

แชร์ผ่าน


Record.SelectFields

ไวยากรณ์

Record.SelectFields(record as record, fields as any, optional missingField as nullable number) as record

เกี่ยวกับ

แสดงเรกคอร์ดที่มีเฉพาะเขตข้อมูลที่ระบุในรายการ fields จากข้อมูลป้อนเข้าrecord

ตัวอย่างที่ 1

เลือกเขตข้อมูล "หน่วยข้อมูล" และ "ราคา" ในระเบียน

การใช้งาน

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

เอาท์พุท

[Item = "Fishing rod", Price = 100]