带有三个独立XML文件的XQuery

时间:2015-11-10 03:00:12

标签: xml xquery

在尝试学习XQuery时,我试图编写一个查询,从三个两个单独的XML文件中选择信息。我对XQuery有一点经验,但我想不出构建这种查询的好方法。这是每个XML文件中的信息。

Person.xml

<AllPersons>
  <Person>
    <Name>Jinchao Henson</Name>
    <ID>118784412</ID>
  </Person>
  <Person>
    <Name>Min Tuyet</Name>
    <ID>201586985</ID>
  </Person>
  <Person>
    <Name>John Basaraba</Name>
    <ID>124208644</ID>
  </Person>
  <Person>
    <Name>Richard Ellison</Name>
    <ID>997111094</ID>
  </Person>
  ...
</AllPersons>

Student.xml

<AllStudents>
  <Student>
    <StudentID>118784412</StudentID>
    <MentorID>201586985</MentorID>
  </Student>
  <Student>
    <StudentID>124208644</StudentID>
    <MentorID>997111094</MentorID>
  </Student>
  ...
</AllStudents>

Faculty.xml

<AllFaculty>
  <Faculty>
    <FacultyID>201586985</FacultyID>
    <Rank>Professor</Rank>
  </Faculty>
  <Faculty>
    <FacultyID>997111094</FacultyID>
    <Rank>Reader</Rank>
  </Faculty>
  ...
</AllFaculty>

家庭作业问题是要求选择每个学生及其导师。我试图编写一个循环遍历学生的查询,选择学生节点,然后为Person和Faculty节点添加两个let表达式,然后返回学生的姓名和Faculty的名称,但无法使其工作。我还尝试了一个遍历学生的查询,一个让Faculty的表达式,一个where子句,将StudentID与FacultyID匹配,将StudentID与Person / ID匹配,然后返回该Person / Name,然后循环通过匹配ID的教师和返回姓名。

非常感谢任何帮助。感谢。

修改:感谢您的建议。我清理了XML示例,这是一次尝试:

for $student in doc("../Student.xml")//Student
let $faculty := doc("../Faculty.xml")//Faculty
let $person := doc("../Person.xml")//Person
where $student/MentorID = $faculty/FacultyID and $student/StudentID = $person/ID
return
  <StudentMentor>{
      $person/Name,
      <Mentor>{
        for $personTwo in doc("../Person.xml")//Person
          where $personTwo/ID = $faculty/FacultyID
          return $personTwo/Name
      }</Mentor>
    }
 </StudentMentor> 
}

我对XQuery很陌生,所以我不知道构建此查询的最佳方法。

编辑2:在仔细查看数据之后,我想我甚至不需要Faculty.xml文件,我会尝试更好的(实际工作)解决方案。< / p>

编辑3 :这是我的工作解决方案,请告知我如何提高效率。

for $student in doc("../Student.xml")//Student
let $personS := doc("../Person.xml")//Person[ID = $student/StudentID]
for $personM in doc("../Person.xml")//Person[ID = $student/MentorID]
return 
  <StudentMentor>
    <Student>{$personS/Name}</Student>,
    <Mentor>{$personM/Name}</Mentor>
  </StudentMentor>

1 个答案:

答案 0 :(得分:0)

更好的代码可能看起来像这样:

declare variable $students := doc("../Students.xml")/AllStudents/Student;
declare variable $faculty := doc("../Faculty.xml")/AllFaculty/Faculty;
declare variable $persons := doc("../Person.xml")/AllPersons/Person;

for $student in $students
let $faculty := $faculty[FacultyID=$student/MentorID]
let $student_person := $persons[ID=$student/StudentID]
let $faculty_person := $persons[ID=$student/MentorID]
return
  <StudentMentor>{
      $student_person/Name,
      <Mentor>{$faculty_person/Name}</Mentor>
    }</StudentMentor>

将上述内容与测试数据一起使用,我得到以下输出:

<StudentMentor>
  <Name>Jinchao Henson</Name>
  <Mentor>
    <Name>Min Tuyet</Name>
  </Mentor>
</StudentMentor>
<StudentMentor>
  <Name>John Basaraba</Name>
  <Mentor>
    <Name>Richard Ellison</Name>
  </Mentor>
</StudentMentor>

注意:

  • 此处没有where条款;你的查询并不需要它们,选择一大堆可能的排列并使用在哪里下来是非常低效(或者至少是单一的),而不是直接找到你真正想要的数据。
  • 没有必要选择所有学生,教师或者#34; let&#34 ;;任何对整个查询都是全局的东西,而不是作用于&#34; for&#34;迭代的项目,应该被声明为变量。
  • 如果您的数据库没有被编入索引以能够避免递归,则替换使用//进行递归搜索而不是明确地通过根节点更有效。您可以使用$students_doc/*/Student(以及其他人)同样的效果。