2017-07-16 7 views
1

私は2つのXMLを持っています: まずは、ssrsクエリのレポート目的で2つのxml(4つのデータセット)を結合しますか?

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false"> 
<entity name="invoice"> 
<attribute name="name" /> 
<attribute name="customerid" /> 
<attribute name="totalamount" /> 
<attribute name="invoiceid" /> 
<attribute name="new_customerno" /> 
<order attribute="name" descending="false" /> 
    <link-entity name="invoicedetail" from="invoiceid" to="invoiceid" link-type="inner"> 
    <attribute name="new_styleno" /> 
    <attribute name="new_locationcode" /> 
    <attribute name="invoiceid"/> 
    <attribute name="new_finalcmt" /> 
    </link-entity> 
</entity> 
</fetch> 

第2です。

<fetch distinct="false" mapping="logical" output-format="xml-platform" version="1.0"> 
<entity name="new_creditmemo"> 
<attribute name="new_creditmemoid"/> 
<attribute name="new_name"/> 
<attribute name="new_customerno"/> 
<attribute name="new_customername"/> 
<order descending="false" attribute="new_name"/> 
    <link-entity name="new_creditmemoline" link-type="outer" to="new_creditmemoid" from="new_creditmemoid"> 
    <attribute name="new_name"/> 
    <attribute name="new_creditmemoid"/> 
    <attribute name="new_locationcode"/> 
    <attribute name="new_finalcmt"/> 
    <order descending="false" attribute="new_name"/> 
    </link-entity> 
</entity> 
</fetch> 

今私はnew_customernoに基づいてこれらの2つのXMLのをマージする必要があります。私は試しましたが、うまくいきません。 誰かがこれで私を助けてくれますか? ありがとう

+0

達成しようとしていることについて手近なSQLクエリがある場合は、http://www.sql2fetchxml.comを試してください。 –

答えて

関連する問題