320302 Databases & WebServices (P. Baumann)
Processing XML: XPath, XQuery
Ramakrishnan & Gehrke, Chapter 24 / 27
Processing XML: XPath, XQuery Ramakrishnan & Gehrke, Chapter 24 - - PowerPoint PPT Presentation
Processing XML: XPath, XQuery Ramakrishnan & Gehrke, Chapter 24 / 27 320302 Databases & WebServices (P. Baumann) Why are we DBers interested? Its data, stupid. Thats us. Database issues: How are we going to model
320302 Databases & WebServices (P. Baumann)
Ramakrishnan & Gehrke, Chapter 24 / 27
2 320302 Databases & WebApplications (P. Baumann)
3 320302 Databases & WebApplications (P. Baumann)
4 320302 Databases & WebApplications (P. Baumann)
5 320302 Databases & WebApplications (P. Baumann)
6 320302 Databases & WebApplications (P. Baumann)
/catalog/cd/price
<?xml version="1.0" encoding="ISO-8859-1"?> <catalog> <cd country="USA"> <title>Empire Burlesque</title> <artist>Bob Dylan</artist> <price>10.90</price> </cd> <cd country="UK"> <title>Hide your heart</title> <artist>Bonnie Tyler</artist> <price>9.90</price> </cd> <cd country="USA"> <title>Greatest Hits</title> <artist>Dolly Parton</artist> <price>9.90</price> </cd> </catalog> <price>10.90</price> <price>9.90</price> <price>9.90</price>
7 320302 Databases & WebApplications (P. Baumann)
<?xml version="1.0" encoding="ISO-8859-1"?> <catalog> <cd country="USA"> <title>Empire Burlesque</title> <artist>Bob Dylan</artist> <price>10.90</price> </cd> <cd country="UK"> <title>Hide your heart</title> <artist>Bonnie Tyler</artist> <price>9.90</price> </cd> <cd country="USA"> <title>Greatest Hits</title> <artist>Dolly Parton</artist> <price>9.90</price> </cd> </catalog>
absolute path
all fitting elements, even if at different levels in tree
descendant, attribute, …
9 320302 Databases & WebApplications (P. Baumann)
10 320302 Databases & WebApplications (P. Baumann)
<1> <2> <3/> <4/> </2> <5/> <1/>
11 320302 Databases & WebApplications (P. Baumann)
<?xml version="1.0" encoding="ISO-8859-1"?> <catalog> <cd country="USA"> <title>Empire Burlesque</title> <artist>Bob Dylan</artist> <price>10.90</price> </cd> <cd country="UK"> <title>Hide your heart</title> <artist>Bonnie Tyler</artist> <price>9.90</price> </cd> <cd country="USA"> <title>Greatest Hits</title> <artist>Dolly Parton</artist> <price>9.90</price> </cd> </catalog>
12 320302 Databases & WebApplications (P. Baumann)
13 320302 Databases & WebApplications (P. Baumann)
<?xml version="1.0" encoding="ISO-8859-1"?> <catalog> <cd country="USA"> <title>Empire Burlesque</title> <artist>Bob Dylan</artist> <price>10.90</price> </cd> <cd country="UK"> <title>Hide your heart</title> <artist>Bonnie Tyler</artist> <price>9.90</price> </cd> <cd country="USA"> <title>Greatest Hits</title> <artist>Dolly Parton</artist> <price>9.90</price> </cd> </catalog>
14 320302 Databases & WebApplications (P. Baumann)
<?xml version="1.0" encoding="ISO-8859-1"?> <catalog> <cd country="USA"> <title>Empire Burlesque</title> <artist>Bob Dylan</artist> <price>10.90</price> </cd> <cd country="UK"> <title>Hide your heart</title> <artist>Bonnie Tyler</artist> <price>9.90</price> </cd> <cd country="USA"> <title>Greatest Hits</title> <artist>Dolly Parton</artist> <price>9.90</price> </cd> </catalog>
15 320302 Databases & WebApplications (P. Baumann)
<?xml version="1.0" encoding="ISO-8859-1"?> <catalog> <cd country="USA"> <title>Empire Burlesque</title> <artist>Bob Dylan</artist> <price>10.90</price> </cd> <cd country="UK"> <title>Hide your heart</title> <artist>Bonnie Tyler</artist> <price>9.90</price> </cd> <cd country="USA"> <title>Greatest Hits</title> <artist>Dolly Parton</artist> <price>9.90</price> </cd> </catalog>
16 320302 Databases & WebApplications (P. Baumann)
<?xml version="1.0" encoding="ISO-8859-1"?> <catalog> <cd country="USA"> <title>Empire Burlesque</title> <artist>Bob Dylan</artist> <price>10.90</price> </cd> <cd country="UK"> <title>Hide your heart</title> <artist>Bonnie Tyler</artist> <price>9.90</price> </cd> <cd country="USA"> <title>Greatest Hits</title> <artist>Dolly Parton</artist> <price>9.90</price> </cd> </catalog>
19 320302 Databases & WebApplications (P. Baumann)
20 320302 Databases & WebApplications (P. Baumann)
what SQL is to tables
21 320302 Databases & WebApplications (P. Baumann)
22 320302 Databases & WebApplications (P. Baumann)
FOR $x IN document("bib.xml")/bib/book RETURN <result>$x </result> LET $x = document("bib.xml")/bib/book RETURN <result>$x </result>
<result> <book>...</book> </result> <result> <book>...</book> </result> ...
Returns:
<result> <book>...</book> <book>...</book> ... </result>
Returns:
23 320302 Databases & WebApplications (P. Baumann)
FOR $a IN distinct(document("bib.xml")/bib/book[publisher=“Morgan Kaufmann”]/author) RETURN <result> $a, FOR $t IN /bib/book[author=$a]/title RETURN $t </result>
<result> <author>Jones</author> <title> abc </title> <title> def </title> </result> <result> <author> Smith </author> <title> ghi </title> </result>
24 320302 Databases & WebApplications (P. Baumann)
<big_publishers> FOR $p IN distinct(document("bib.xml")//publisher) LET $b = document("bib.xml")/book[publisher = $p] WHERE count($b) > 100 RETURN $p </big_publishers>
<num_big_publishers>120</ num_big_publishers> <big_publishers> <publisher>Morgan Kaufmann</publisher> <publisher>Wiley</publisher> </ big_publishers>
33 320302 Databases & WebApplications (P. Baumann)
stuff of XQuery FOR/LET Clauses WHERE Clause ORDERBY/RETURN Clause List of tuples List of tuples Instance of XQuery data model XML doc
34 320302 Databases & WebApplications (P. Baumann)
XML 2nd edition
= "uses concepts of"