すべての要素に名前空間のプレフィックスが付いている場合、t-sql クエリをどのように記述しますか? 私は多くのバリエーションを試しましたが、これは私がこれまでに得たものですが、うまくいきません...
DECLARE @x xml
SET @x = (SELECT xml_data_column FROM dbo.Table
WHERE xmlFileName = 'E:\trnFile.xml' )
;WITH XMLNAMESPACES('http://schemas.xmlsoap.org/soap/envelope/' AS [soap]
, 'tns:RetrievePurchaseResponse xmlns:tns="urn:Transaction"' AS tns)
SELECT t.c.value('orderRef[1]', 'int') orderReference
, t.c.value('orderNumber[1]', 'varchar(100)') orderNumber
, t.c.value('subtotal[1]', 'varchar(100)') subtotal
FROM @x.nodes('/soap:Envelope/soap:Body/tns:RetrievePurchaseResponse/tns:purchase') AS t(c)
助けていただければ幸いです。
XML 入力ファイルは次のとおりです。
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:RetrievePurchaseResponse xmlns:tns="urn:Transaction">
<tns:purchase>
<tns:orderRef>10027</tns:orderRef>
<tns:orderNumber>425816</tns:orderNumber>
<tns:subtotal>95.00</tns:subtotal>
</tns:purchase>
</tns:RetrievePurchaseResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
期待される出力は
orderReference, orderNumber, orderUserEmail
10027, 425816, user@domain.com