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.
XQuery で次のようなリストが与えられた場合:1, 1, 2
1, 1, 2
sのインスタンス数をカウントするにはどうすればよい1ですか?
1
リストは実際にはシーケンスであり、それを行うことができcount()ます...
count()
let $sequence := ('1','1','2') return count($sequence[.='1'])
生成:
2