[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message]

Query Through Multiple Files

Michael Kay mike at saxonica.com
Mon Jan 21 01:07:16 PST 2008


  Query Through Multiple Files
> >Alice: I did use Liam's suggestions,
> > 
> > for $ad in (
> >        doc("1.xml"),
> >        doc("2.xml"),
> >        doc("3.xml"),
> >        doc("4.xml"))//ad
> > 
> Liam:That wasn't exactly what I suggested... :-)
> 
> XQuery is not a good language in which to make random guesses 
> and hope things will work.
> 
> You can try,
> for $doc in (
>        doc("1.xml"),
>        doc("2.xml"),
>        doc("3.xml"),
>        doc("4.xml"))
>     return $doc//ad
> 

or more simply,

( doc("1.xml"),
  doc("2.xml"),
  doc("3.xml"),
  doc("4.xml"))//ad

or if you want to eliminate duplicates,

distinct-values(( doc("1.xml"),
  doc("2.xml"),
  doc("3.xml"),
  doc("4.xml"))//ad)

I've found when teaching XQuery that there are two important
misunderstandings that students easily make:

(a) the idea that every query has a FLWOR expression as its outermost
construct

(b) the idea that a FLWOR expression can only be used at the outermost level
of a query

Michael Kay



Purchase Stylus Studio Online Today!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2007 All Rights Reserved.