我正在玩 w3schools 的书店 XML:
<bookstore>
<book category="cooking">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book category="children">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<book category="web">
<title lang="en">XQuery Kick Start</title>
<author>James McGovern</author>
<author>Per Bothner</author>
<author>Kurt Cagle</author>
<author>James Linn</author>
<author>Vaidyanathan Nagarajan</author>
<year>2003</year>
<price>49.99</price>
</book>
<book category="web" cover="paperback">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>
我查询使用 XQuery 3.1:
xquery version "3.1";
declare option output:method 'xml';
for $doc in db:open("bookstore")
let $books := $doc/bookstore/book
return(
for $book in $books
let $authors := $book/author
let $title := data($book/title)
return
<b>{
(<t>{$title}</t>,$authors)
}</b>
)
就目前而言,输出是期望的结果。
查询的嵌套 for 循环是可以理解的,但可能不是“Xquery”-ish?
至少在这个例子中,一本书只有一个标题,但有多个作者,这可能会产生一点不匹配,因为这里的循环被使用或误用。
输出:
<b>
<t>Everyday Italian</t>
<author>Giada De Laurentiis</author>
</b>
<b>
<t>Harry Potter</t>
<author>J K. Rowling</author>
</b>
<b>
<t>XQuery Kick Start</t>
<author>James McGovern</author>
<author>Per Bothner</author>
<author>Kurt Cagle</author>
<author>James Linn</author>
<author>Vaidyanathan Nagarajan</author>
</b>
<b>
<t>Learning XML</t>
<author>Erik T. Ray</author>
</b>
这个问题本身并不是要进行代码审查,而是要寻找替代或更标准的方法。与上下文不完全无关的切线: