ສັບພາສາ XQuery

在 XQuery 中,有七种节点:元素、属性、文本、命名空间、处理指令、注释、以及文档节点(或称为根节点)。

ສັບພາສາ XQuery

节点

在 XQuery 中,有七种节点:元素、属性、文本、命名空间、处理指令、注释、以及文档(根)节点。XML 文档是被作为节点树来对待的。树的根被称为文档节点或者根节点。

请看下面的 XML 文档:


<bookstore>
<book>
  Harry Potter
  <author>J K. Rowling</author> 
  <year>2005</year>
  <price>29.99</price>
</book>
</bookstore>

上面的 XML 文档中的节点例子:

  (文档节点)
J K. Rowling  (元素节点)
lang="en"  (属性节点)

基本值(或称原子值,Atomic value)

基本值是无父或无子的节点。

基本值的例子:

J K. Rowling
"en"

项目

项目是基本值或者节点。

节点关系

父(Parent)

每个元素以及属性都有一个父。

在下面的例子中,book 元素是 title、author、year 以及 price 元素的父:

<book>
  <title>Harry Potter</title>
  <author>J K. Rowling</author>
  <year>2005</year>
  <price>29.99</price>
</book>

子(Children)

节点元素可有零个、一个或多个子。

ໃນຄວາມຍິ່ງພາບທີ່ຖືກກ່າວຫາໃຫ້ຄົນຕາມວ່າ title, author, year ແລະ price element ເປັນລູກຊົງຂອງ book element:

<book>
  <title>Harry Potter</title>
  <author>J K. Rowling</author>
  <year>2005</year>
  <price>29.99</price>
</book>

ພັກພົນທີ່ກາຍຢູ່ຫຼັງ

ບັນດາຫນື່ງທີ່ມີພີ່ນດຽວກັນ.

ໃນຄວາມຍິ່ງພາບທີ່ຖືກກ່າວຫາໃຫ້ຄົນຕາມວ່າ title, author, year ແລະ price element ເປັນພັກພົນຂອງ book element:

<book>
  <title>Harry Potter</title>
  <author>J K. Rowling</author>
  <year>2005</year>
  <price>29.99</price>
</book>

ພັກພົນທີ່ກາຍຢູ່ຫຼັງ

ພີ່ນຂອງຫນື່ງບັນດາຫນື່ງທີ່ມີຕົວເລື່ອງ.

ໃນຄວາມຍິ່ງພາບທີ່ຖືກກ່າວຫາໃຫ້ຄົນຕາມວ່າ title element ເປັນພັກພົນຂອງ book element ແລະ bookstore element:

<bookstore>
<book>
  <title>Harry Potter</title>
  <author>J K. Rowling</author>
  <year>2005</year>
  <price>29.99</price>
</book>
</bookstore>

ພັກພົນທີ່ກາຍຢູ່ຫຼັງ

ລູກຊົງຂອງຫນື່ງບັນດາຫນື່ງຫນື່ງທີ່ມີຕົວເລື່ອງ.

ໃນຄວາມຍິ່ງພາບທີ່ຖືກກ່າວຫາໃຫ້ຄົນຕາມວ່າ bookstore ເປັນພັກພົນທີ່ກາຍຢູ່ຫຼັງ book, title, author, year ແລະ price element:

<bookstore>
<book>
  <title>Harry Potter</title>
  <author>J K. Rowling</author>
  <year>2005</year>
  <price>29.99</price>
</book>
</bookstore>