blob: c47b146796217a21598caeef17c2ca2fc2491549 [file] [log] [blame]
(: XQuery Aggregate Query :)
(: Find the annual precipitation (PRCP) for a Seattle using the airport :)
(: station (US000000002) for 2002. :)
fn:count(
let $collection := "ghcnd"
for $r in collection($collection)/dataCollection/data
where $r/station eq "GHCND:US000000002"
and $r/dataType eq "PRCP"
and fn:year-from-dateTime(xs:dateTime(fn:data($r/date))) eq 2002
return $r/value
)