6

Xpath の新機能。SSIS で XML タスクを使用していくつかの値をロードしようとしていました。下記の Microsoft の XML インベントリを使用します。

スタイルが斬新で賞が「ピューリッツァー」である書店/本に名の値をロードするにはどうすればよいですか? //book[@style='novel' and ./author/award/text()='Pulitzer']私がしようとしているものです。要素全体を提供します。名の値を取得するには、どこを変更すればよいですか?

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="myfile.xsl" ?>
<bookstore specialty="novel">
  <book style="autobiography">
    <author>
      <first-name>Joe</first-name>
      <last-name>Bob</last-name>
      <award>Trenton Literary Review Honorable Mention</award>
    </author>
    <price>12</price>
  </book>
  <book style="textbook">
    <author>
      <first-name>Mary</first-name>
      <last-name>Bob</last-name>
      <publication>Selected Short Stories of
        <first-name>Mary</first-name>
        <last-name>Bob</last-name>
      </publication>
    </author>
    <editor>
      <first-name>Britney</first-name>
      <last-name>Bob</last-name>
    </editor>
    <price>55</price>
  </book>
  <magazine style="glossy" frequency="monthly">
    <price>2.50</price>
    <subscription price="24" per="year"/>
  </magazine>
  <book style="novel" id="myfave">
    <author>
      <first-name>Toni</first-name>
      <last-name>Bob</last-name>
      <degree from="Trenton U">B.A.</degree>
      <degree from="Harvard">Ph.D.</degree>
      <award>P</award>
      <publication>Still in Trenton</publication>
      <publication>Trenton Forever</publication>
    </author>
    <price intl="Canada" exchange="0.7">6.50</price>
    <excerpt>
      <p>It was a dark and stormy night.</p>
      <p>But then all nights in Trenton seem dark and
      stormy to someone who has gone through what
      <emph>I</emph> have.</p>
      <definition-list>
        <term>Trenton</term>
        <definition>misery</definition>
      </definition-list>
    </excerpt>
  </book>
  <my:book xmlns:my="uri:mynamespace" style="leather" price="29.50">
    <my:title>Who's Who in Trenton</my:title>
    <my:author>Robert Bob</my:author>
  </my:book>
</bookstore>
4

3 に答える 3

8

答えが出ました。

//book[@style='novel' and ./author/award/text()='Pulitzer']//first-name
于 2013-04-20T11:42:10.330 に答える
1

同じ文脈での同様の質問。どうすればその逆を行うことができますか? 価格が 20 より大きいすべての書籍の id を見つけたいとしましょう。私はナッジしていることを知っていますが、本当に私の理解を明確にしたいと思っています.

必要なものは次のXPATHとおりです。

//book/price[text() > 20]/..
于 2013-04-22T17:38:44.287 に答える