नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Syntax
RowExpression.Column(columnName as text) as record
About
Returns an abstract syntax tree (AST) that represents access to column columnName of the row within a row expression.
Example 1
Creates an AST representing access of column "CustomerName".
Usage
RowExpression.Column("CustomerName")
Output
[
Kind = "FieldAccess",
Expression = RowExpression.Row,
MemberName = "CustomerName"
]