RowExpression.Column

 

RowExpression.Column(columnName as text) as record

Returns an AST that represents access to column columnName of the row within a row expression.

Example 1

Creates an AST representing access of column "CustomerName".

RowExpression.Column("CustomerName")  

Show: