|
[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message] Fwd: Filtering ProblemGhislain Fourny gfourny at inf.ethz.chMon Apr 19 22:45:27 PDT 2010
Hi Greg,
How about declaratively building a two-dimensional boolean table (one value for each document and each find entry) and then filter those lines that only have true values?
For example, it could look like the following query, provided $searchDocs and $find are defined (it can probably be simplified further):
let $booleans := <boolean-table>{
for $doc at $d in $searchDocs
return
<document id="{$d}">{
for $f in $find
return
<value>{count($doc/ent[@type = $f/@type]) >= $f/@count}</value>
}</document>
}</boolean-table>
for $d in 1 to count($searchDocs)
where every $b in $booleans/document[@id=$d]/value satisfies xs:boolean($b)
return $searchDocs[$d]
Kind regards,
Ghislain
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






