Record.ToTableRecord.ToTable
構文Syntax
Record.ToTable(record as record) as table
バージョン情報About
record
の各フィールドの行を Name
列および Value
列を含むテーブルで返します。Returns a table containing the columns Name
and Value
with a row for each field in record
.
例 1Example 1
レコードからテーブルが返されます。Return the table from the record.
Record.ToTable([OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0])
名前Name | [値]Value |
---|---|
OrderIDOrderID | 11 |
CustomerIDCustomerID | 11 |
アイテムItem | 釣り竿Fishing rod |
PricePrice | 100100 |