これがXML構造です
<Row type='apple' price='1' quantity='6' date='2013-06-08' transactiontype='sell'/>
<Row type='apple' price='1.5' quantity='3' date='2013-06-07' transactiontype='buy'/>
<Row type='apple' price='1.4' quantity='2' date='2013-06-05' transactiontype='buy'/>
<Row type='orange' price='4' quantity='5' date='2013-06-05' transactiontype='sell'/>
私の現在のクエリは
//row[@type='apple' and @transactiontype='buy']/attribute::price
しかし、このクエリでは日付範囲を選択できません。2013 年 6 月 6 日から 2013 年 6 月 8 日までのすべての取引日を許可したい場合、クエリをどのように編集すればよいですか?