需要一些帮助。我在 SSIS 中使用 XML 任务。
在下面的示例中,我试图找到所有价格 >20 的书籍的 ID。
如果我使用//book[price > '20']/self::*/attribute::id
我能够得到像
bk101bk108bk109
. 我怎样才能得到解决方案
bk101
bk108
bk109
有什么办法可以解决这个问题?有没有比我尝试的更好的方法来获得结果?XML 任务中的 Xpath 操作设置为“Values”
<catalog>
<book id="bk101">
<author>Gambardella, Matthew</author>
<title>XML Developer's Guide</title>
<genre>Computer</genre>
<price>44.95</price>
<publish_date>2000-10-01</publish_date>
<description>An in-depth look at creating applications
with XML.</description>
</book>
<book id="bk102">
<author>Ralls, Kim</author>
<title>Midnight Rain</title>
<genre>Fantasy</genre>
<price>5.95</price>
<publish_date>2000-12-16</publish_date>
<description>A former architect battles corporate zombies,
an evil sorceress, and her own childhood to become queen
of the world.</description>
</book>
</catalog>