1 / 15

XQUERY

XQUERY. What is XQuery?. XQuery is the language for querying XML data The best way to explain XQuery is to say that XQuery is to XML what SQL is to database tables. XQuery uses XPath expressions to extract XML data. XQuery is defined by the W3C.

leif
Télécharger la présentation

XQUERY

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. XQUERY

  2. What is XQuery? • XQuery is the language for querying XML data • The best way to explain XQuery is to say that XQuery is to XML what SQL is to database tables. • XQuery uses XPath expressions to extract XML data. • XQuery is defined by the W3C. • XQuery is supported by all the major database engines (IBM, Oracle, Microsoft, etc.) • XQuery 1.0 is not yet a W3C Recommendation (XQuery is a Working Draft). Hopefully it will be a recommendation in the near future.

  3. XPath • As we learned in previous lectures, XPath is a language for finding information in an XML document. • XPath is used to navigate through elements and attributes in an XML document. • For example • /html/body/h1. • //book[author = "Hunter"] • //book/title [@lang=“en”] | //book/price[@lang=“en”]

  4. XQuery Example • doc("books.xml")/bookstore/book/title • The doc() function is used to open the "books.xml" file • /bookstore selects the bookstore element, /book selects all the book elements under the bookstore element, and /title selects all the title elements under each book element <title lang="en">Everyday Italian</title> <title lang="en">Harry Potter</title> <title lang="en">XQuery Kick Start</title> <title lang="en">Learning XML</title>

  5. FLWOR Expressions • For variables that range over the results of XPath expressions. If more than 1 variable, Cartesian product of values taken by the variables. • Let allows complicated expressions to be assigned to variable names (for simplicity) • Where test on tuples given by the ‘for’ clause. • Order by sorts the result (ascending or descending) • Return construction of results (in XML)

  6. FLWOR Expressions(cont’d) • for $x in doc("books.xml")/bookstore/bookwhere $x/price>30 order by $x/titlereturn $x/title • The for clause selects all book elements under the bookstore element  into a variable called $x. • The where clause selects only book elements with a price element with a value greater than 30. • The order by clause defines the sort-order. Will be sort by the title element. • The return clause specifies what should be returned. Here it returns the title elements.

  7. XQuery FLWOR + HTML • Now we want to list all the book-titles in our bookstore in an HTML list. We add <ul> and <li> tags to the FLWOR expression: • <ul> { for $x in doc("books.xml")/bookstore/book/title order by $x return <li>{$x}</li> } </ul> • The result of the above will be: • <ul> <li><title lang="en">Everyday Italian</title></li> <li><title lang="en">Harry Potter</title></li> <li><title lang="en">Learning XML</title></li> <li><title lang="en">XQuery Kick Start</title></li> </ul>

  8. XQuery FLWOR + HTML(Cont) • Now we want to eliminate the title element, and show only the data inside the title element: • <ul> { for $x in doc("books.xml")/bookstore/book/title order by $x return <li>{data($x)}</li> } </ul> • The result will be (an HTML list): • <ul> <li>Everyday Italian</li> <li>Harry Potter</li> <li>Learning XML</li> <li>XQuery Kick Start</li> </ul>

  9. XQuery Syntax • Some basic syntax rules: • XQuery is case-sensitive • XQuery elements, attributes, and variables must be valid XML names • An XQuery string value can be in single or double quotes • An XQuery variable is defined with a $ followed by a name, e.g. $bookstore • XQuery comments are delimited by (: and :), e.g. (: XQuery Comment :)

  10. XQuery Conditional Expressions • If-Then-Else" expressions are allowed in XQuery. for $x in doc("books.xml")/bookstore/book return if ($x/@category="CHILDREN") then <child>{data($x/title)}</child> else <adult>{data($x/title)}</adult> • The result of the example above will be: <adult>Everyday Italian</adult> <child>Harry Potter</child> <adult>Learning XML</adult> <adult>XQuery Kick Start</adult>

  11. Additional Syntax&Expressions • To loop a specific number of times in a for clause, you may use the to keyword: for $x in (1 to 5) return <test>{$x}</test> Result: <test>1</test> <test>2</test> <test>3</test> <test>4</test> <test>5</test> • The at keyword can be used to count the iteration: for $x at $i in doc("books.xml")/bookstore/book/title return <book>{$i}. {data($x)}</book>Result: <book>1. Everyday Italian</book> <book>2. Harry Potter</book> <book>3. XQuery Kick Start</book> <book>4. Learning XML</book>

  12. Performing Join in XQuery • We can perform join operations just like in SQL. Multiple XML files are extracted by ‘doc()’ function. • <books-with-prices> { for $b in document("http://www.bn.com/bib.xml")//book, $a in document("http://www.amazon.com/reviews.xml")//entry where $b/title = $a/title return <book-with-prices> { $b/title } <price-amazon>{ $a/price/text() }</price-amazon> <price-bn>{ $b/price/text() }</price-bn> </book-with-prices> }</books-with-prices>

  13. XQuery Functions • Built-in Functions • XQuery includes over 100 built-in functions. • There are functions for string values, numeric values, date and time comparison, node and QName manipulation, sequence manipulation, Boolean values, and more. • <name>{uppercase($booktitle)}</name> • doc("books.xml")/bookstore/book[substring(title,1,5='Harry')] • let $name := (substring($booktitle,1,4)) • You can also define your own functions in XQuery.

  14. XQuery Functions (cont’d) • User Defined Functions declare function local:minPrice( $price as xs:decimal?, $discount as xs:decimal?) AS xs:decimal? { let $disc := ($price * $discount) div 100 return ($price - $disc) };(: Below is an example of how to call the function above :)<minPrice>{local:minPrice($book/price, $book/discount)}</minPrice>

  15. Conclusion • XQuery is used to query XML files. • XQuery is similar to XSLT, but is different in several ways: • XSLT is written in a XSL file which is later connected to a XML file. • XQuery gets the XML file dynamically. • It allows many XML files to be included in a single query. • The join operations can be performed in XQuery whereas thay cannot be performed in XSLT.

More Related