我想使用XQUERY获取或返回xml文件中的项目数(<recROw></recROw>
)。在XQuery中有一种简单的方法吗?
以下是我的示例XML数据:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<DailyRecord>
<recROw>
<id>1</id>
<name>John Smith</name>
<gender>male</gender>
<status>active</status>
</recROw>
<recROw>
<id>2</id>
<name>James Bond</name>
<gender>male</gender>
<status>active</status>
</recROw>
<DailyRecord>
任何帮助和想法将不胜感激。提前谢谢!
答案 0 :(得分:1)
尝试
count(/DailyRecord/recROw)