Comment on page
RowExpression.From
Returns the AST for the body of a function.
function (function
as function) as record
Returns the AST for the body of
function
, normalized into a row expression:</li>
</p> </p>An error is raised if a row expression AST cannot be returned for the body of
function
.</p>Table.Table construction
Returns the AST for the body of the function
each [CustomerID] = "ALFKI"
RowExpression.From(each [CustomerName] = "ALFKI")
[ Kind = "Binary", Operator = "Equals", Left = RowExpression.Column("CustomerName"), Right = [ Kind = "Constant", Value = "ALFKI" ] ]
Last modified 5yr ago