Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
適切に実行される XMLSPY に次のコード スニペットがあります。
xquery version "1.0"; <query2> { for $r in /reviews/review return $r/reviewer } </query2>
xml ファイル名を abc.xml/reviews/review のように xpath に含めるにはどうすればよいですか??
私は自分で質問を解決できました:
<query2> { for $r in doc("reviews.xml")/reviews/review return $r/reviewer } </query2>