Logo

XQuery Quantified Expressions

Find titles of books in which both sailing and windsurfing are mentioned in the same paragraph.

	for $b in //book 
	  where some $p in $b//para satisfies 
		 contains($p, "sailing") and contains($p, "windsurfing") 
	  return $b/title

Find titles of books in which sailing is mentioned in every paragraph.

	for $b in //book 
	  where every $p in $b//para satisfies 
		contains($p, "sailing") 
	  return $b/title

Ivan Herman, W3C Head of Offices16 July, 200215 (17)