这是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-06-06 和 2013-06-08 之间的所有交易日期,我将如何编辑我的查询?