op:divide( $left as item(), $right as item() ) as map:map
This function divides the left numericExpression
by the right
numericExpression
and returns the value.
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("divided", op:divide(op:col("EmployeeID"), 2)))) => op:result();