跳至主要内容

RowExpression.Column

傳回代表資料列運算式內資料行存取權的抽象語法樹狀結構 (AST)。

Syntax

RowExpression.Column(
columnName as text
) as record

Remarks

傳回代表資料列運算式內資料列之資料行 columnName 存取權的抽象語法樹狀結構 (AST)。

Examples

Example #1

建立代表資料行 "CustomerName" 存取權的 AST。

RowExpression.Column("CustomerName")

Result:

[
Kind = "FieldAccess",
Expression = RowExpression.Row,
MemberName = "CustomerName"
]

Category

Table.Table construction