複数のファイルからの読み取り
さまざまなファイルから読み取るストラクチャーを作成します。
始める前に
- 読み取り元のファイルが2つあること。
 - 各ファイルでストラクチャーを作成済みであること。
 
このタスクについて
この例では、どちらも特定のファイルから読み取る2つのストラクチャーを組み合わせるストラクチャーを作成したいとします。以下のXMLサンプルを使用できます。それぞれ顧客情報と注文情報が含まれています。
            
         
		    <customers>
  <customer>
    <customerId>IRloRH6F9fNnYXl</customerId>
    <lastName>Thomas</lastName>
    <firstName>Carter</firstName>
    <address>
      <street>Camelback Rd</street>
      <city>Augusta</city>
      <state>Minnesota</state>
    </address>
  </customer>
</customers><orders>
  <order>
    <orderId>KTCZqmBqAW4VvzB</orderId>
    <customerId>IRloRH6F9fNnYXl</customerId>
    <items>
      <item>115</item>
      <item>23</item>
      <item>67</item>
      <item>29</item>
      <item>177</item>
    </items>
  </order>
</orders>手順
タスクの結果