Query from root element : node « XQuery « XML

Home
XML
1.CSS Style
2.SVG
3.XML Schema
4.XQuery
5.XSLT stylesheet
XML » XQuery » node 
Query from root element



File: Data.xml
<?xml version="1.0"?>
<Books>
 <Book>A</Book>
 <Book>B</Book>
 <Book>C</Book>
</Books>

File: Query.xquery
doc("Data.xml")/Books/Book

Output:

<?xml version="1.0" encoding="UTF-8"?>
<Book>A</Book>
<Book>B</Book>
<Book>C</Book>

 
Related examples in the same category
1.Select element by level
2.XQuery and element
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.