gpt4 book ai didi

xpath - 为什么这个Xquery表达式返回一个空值?

转载 作者:行者123 更新时间:2023-12-03 16:23:29 24 4
gpt4 key购买 nike

我想获得一个属性的最大值。我有以下声明:

让$ posts:= doc(“ Posts.xml”)/ posts / row [./@ OwnerUserId = $ user / @ Id]
让$ maxScore:= fn:max(xs:integer($ posts / row / @ Score))

当我想返回maxScore时,它显示为空值。进一步修改后,以下内容将:

返回$ posts / row / @ Score

即使我知道每一行都有一个“得分”属性,它也显示为空
我已经为此战斗了一个多小时,感谢您的帮助

最佳答案

您正在选择符合谓词条件的row元素。因此,$posts变量将具有一个row元素序列。

如果要从@Score变量的每个row元素中选择$posts,则XPath应该为:$posts/@Score

如果您将变量命名为$rows,则将减少混乱。

或者,将XPath更改为实际选择posts元素:

let $posts := doc("Posts.xml")/posts[row/@OwnerUserId = $user/@Id]
let $maxScore := fn:max(xs:integer($posts/row/@Score))

关于xpath - 为什么这个Xquery表达式返回一个空值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53310565/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com