Xquery 总结部分 DayTime 持续时间
我在使用 sum 总结持续时间时遇到问题。
这是一个例子:
<total>
for $t in //Times
let $start_t := $t/@start
let $stop_t := $t/@stop
let $duration := xs:dateTime($stop_t) - xs:dateTime($start_t)
return
.....
</total>
给我一个部分持续时间的列表。我如何使用 sum 来总结它们?
谢谢
I have a problem with summing up durations using sum.
here is an example:
<total>
for $t in //Times
let $start_t := $t/@start
let $stop_t := $t/@stop
let $duration := xs:dateTime($stop_t) - xs:dateTime($start_t)
return
.....
</total>
gives me a list of partial durations. How do I sum them up using sum?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下 XQuery/XPath 表达式:
You could use this XQuery/XPath expression:
您可以将整个查询包装在对 sum() 的调用中:
You can just wrap the whole query in a call to sum():