XQuery 術語
在 XQuery 中,有七種節點:元素、屬性、文字、命名空間、處理指令、註解、以及文件節點(或稱為根節點)。
XQuery 術語
節點
在XQuery 中,有七種節點:元素、屬性、文字、命名空間、處理指令、註解、以及文件(根)節點。 XML 文件是被當作節點樹來對待的。樹的根被稱為文檔節點或根節點。
請看下面的XML 文件:
<?xml version="1.0" encoding="ISO-8859-1"?>
< ;bookstore>
<book>
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
</bookstore>
< ;bookstore>
<book>
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
</bookstore>
上面的XML 文件中的節點範例:
<bookstore> (文檔節點)
<author>J K. Rowling</author> (元素節點)
lang="en" (屬性節點)
<author>J K. Rowling</author> (元素節點)
lang="en" (屬性節點)
基本值是無父或無子的節點。
基本值的範例:
J K. Rowling
"en"
"en"
<book>
子(Children)節點元素可有零個、一個或多個子。 在下面的例子中,title、author、year 以及price 元素都是book 元素的子: <title>Harry Potter</ title>
<author>J K. Rowling</author>
<year>2005</year>
<price>2005</year>
<price>299.>
<author>J K. Rowling</author>
<year>2005</year>
<price>2005</year>
<price>299.>
<book>#先輩(Ancestor)某節點的父、父的父,等等。 在下面的例子中,title 元素的先輩是book 元素和bookstore元素:
<title>Harry Potter< /title>
<author>J K. Rowling</author>
<year>2005</year>
<price>2005</year>
<price>29.999> ;
<author>J K. Rowling</author>
<year>2005</year>
<price>2005</year>
<price>29.999> ;
同胞(Sibling)
有相同的父的節點。
在下面的例子中,title、author、year 以及price 元素都是同胞:
<book>
<title>Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.999999999999900000;
<price>29.99999999999990000;
<title>Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.999999999999900000;
<price>29.99999999999990000;
<bookstore>
<book>
< ;title>Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year<# <year>2005</year<ricedate;#p; ##</book>
</bookstore>
#後代(Descendant)
某個節點的子,子的子,等等。 在下面的例子中,bookstore 的後代是book、title、author、year 以及price元素:<book>
< ;title>Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year<# <year>2005</year<ricedate;#p; ##</book>
</bookstore>
#後代(Descendant)
<bookstore>
#<book>
<title>Harry Potter</title>
<author>J K. Rowling</author>
<ltyear>2005;/author>
<ltyear>2005)/author>
<ltyear>2005</author>
< /price>
</book>
</bookstore>
<author>J K. Rowling</author>
<ltyear>2005;/author>
<ltyear>2005)/author>
<ltyear>2005</author>
< /price>
</book>
</bookstore>