我不是 XQuery 方面的专家,我不得不搜索大量文件,XML 文档有这样的结构,
<files>
<file>
<name>1</name>
<contents>
<content>games</content>
<content>movies</content>
</contents>
</file>
<file>
<name>2</name>
<contents>
<content>games</content>
<content>picture</content>
<content>work</content>
</contents>
</file>
它就像用户我有一组可能的内容(“游戏”,“电影”),我必须返回名称
到目前为止我只写了这个
for $x in /files/file
return $x/content
我想知道 XQuery 是否可以做到这一点?如果可能的话,给我一些指导,我不知道所有的 xquery 结构,这是我的主要缺点