我想<recROw></recROw>
使用 XQUERY 获取或返回 xml 文件中 item() 的数量。在 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>
任何帮助和想法将不胜感激。先感谢您!