XQuery - min Function



The min function is used to get the minimum valued item present in a sequence.

Syntax

min($seq as item()*)

Input Parameters

  • $seq − provided sequence. A sequence can contain 0 or more items.

Example

XQuery Expression

let $items := (1,2,3,4,5,6)
let $min := min($items)
return
   <result>
      <min>{$min}</min>     
   </result>

Output

<result>
   <min>1</min>  
</result>

Verify the Result

In order to test the above-mentioned functionality, replace the contents of books.xqy (mentioned in Environment Setup chapter) with the above XQuery expression and execute the XQueryTester java program to verify the result.

xquery_sequence_functions.htm
Advertisements