blob: 53d3b249b147adae06499bac7b090da70a37c997 [file] [log] [blame]
(:*******************************************************:)
(: Test: version_declaration-004.xq :)
(: Written By: Pulkita Tyagi :)
(: Date: Tue Aug 9 04:11:16 2005 :)
(: Purpose: Demonstrates version declaration,the version :)
(: declaration occurs at the beginning of the :)
(: module and identifies the applicable XQuery :)
(: syntax and semantics for the module :)
(:*******************************************************:)
xquery version "1.0";
declare boundary-space preserve;
declare default order empty greatest;
declare namespace ns = "http://www.example.org/";
(: insert-start :)
declare variable $input-context external;
(: insert-end :)
for $b in $input-context//book
stable order by xs:decimal($b/price) empty greatest
return $b/title