op:le( $left as item(), $right as item() ) as map:map
This function returns true
if the value of the left expression is
less than or equal to the value of the right expression. Otherwise, it returns
false
.
Parameters | |
---|---|
$left | The left value expression. |
$right | The right value 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:where(op:le(op:view-col("employees", "EmployeeID"), 3)) => op:result()
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.