
op:multiply( $left as item(), $right as item() ) as map:map
This function multiplies the left numericExpression by the right
numericExpression and returns the value.
As a convenience, you can pass a sequence of any number of expressions as the
first argument: op:multiply((expr1, expr2, ..., exprN))
| Parameters | |
|---|---|
| $left | The left numeric expression. |
| $right | The right numeric expression. |
xquery version "1.0-ml";
import module namespace op="http://marklogic.com/optic"
at "/MarkLogic/optic.xqy";
let $employees := op:from-view("main", "employees")
return $employees
=> op:select(("FirstName", "LastName", "Position", "EmployeeID",
op:as("multipled", op:multiply(op:col("EmployeeID"), 2))))
=> op:result();
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.