Order by clause does not seem to be working. Do I have the correct xquery query?
for $record in doc('XQuery.xml')/dataroot/RecentIndices_solarFlux
where $record/Month = 1 or
$record/Month = 2
order by $record/Geomagnetic_Smoothed_Ap
return $record
The output I'm getting is something like this:
-1, 10.5, 11.6, 5, 8.7
I am using Stylus Studio X14 Release 2 XML Enterprise Suite.
$recordshould be printed, you only get some numbers. By the way, you could also writewhere $record/Month = (1, 2)exploiting XQuery's set comprehension of comparison operators. – Jens Erat Jul 28 '12 at 8:05