我是Xquery的初学者,我有一个xml代码,我想在其中将两个不同的元素与另一个元素进行比较。如果这两个元素总是存在在一起,那么我想打印它们的值。为了更清楚,我在下面创建了一个示例:
XML代码:
<library>
<Book>
<title>Title1</title>
<author>Sam</author>
<author>Jon</author>
<author>Ellizabith</author>
</Book>
<Book>
<title>Title2</title>
<author>Ellizabith</author>
<author>Sam</author>
<author>Ryan</author>
</Book>
<Book>
<title>Title3</title>
<author>Ryan</author>
<author>Sam</author>
</Book>
</library>
从上面的例子中,我需要打印Ellizabith和Sam,因为它们存在于Title 1和Titlte 2中,而且我想打印Sam和Ryan,因为它们使用Xquery存在于Title 2和Title 3中。
那么有什么方法可以做到吗?我没有找到任何资源来帮助我做到这一点。
答案 0 :(得分:0)
我起初误解了,但这是一次新的尝试。这将返回一些重复项,如果我有时间(现在修复)
,我可能会在以后修复for $book in //Book
let $authors := $book/author
for $authorA in $authors, $authorB in ($authors[. gt $authorA])
where ($book/following::Book)[author = $authorA and author = $authorB]
return <result>{($authorA, $authorB)}</result>