我有以下2 XML值,它是類似的並且被存儲在request_xml塔並且其CLOB數據類型:不能提取從XML值的數據在Oracle SQL
<?xml version='1.0' encoding='utf-8'?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns5:updateRechargeTicket xmlns:ns5="http://service.soap.CDRator.com" xmlns:ns2="http://core.result.service.soap.CDRator.com/xsd" xmlns="http://core.data.soap.CDRator.com/xsd" xmlns:ns4="http://data.soap.CDRator.com/xsd" xmlns:ns3="http://payment.result.service.soap.CDRator.com/xsd">
<ns5:contextUser>
<ns4:brandKey>FNC</ns4:brandKey>
</ns5:contextUser>
<ns5:rechargeTicket>
<id xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
<billingGroupId>200907111603122893</billingGroupId>
<code>TIME_DIRECTDEBIT</code>
<dateCreated xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
<dayOfMonth>1</dayOfMonth>
<nextRechargeDate>2015-06-01+02:00</nextRechargeDate>
<rechargeAmount>20</rechargeAmount>
</ns5:rechargeTicket>
</ns5:updateRechargeTicket>
</S:Body>
</S:Envelope>
<?xml version='1.0' encoding='utf-8'?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns5:addDirectDebitPayment xmlns:ns5="http://service.soap.CDRator.com" xmlns:ns2="http://core.result.service.soap.CDRator.com/xsd" xmlns="http://core.data.soap.CDRator.com/xsd" xmlns:ns4="http://data.soap.CDRator.com/xsd" xmlns:ns3="http://payment.result.service.soap.CDRator.com/xsd"><ns5:contextUser><ns4:brandKey>FNC</ns4:brandKey></ns5:contextUser><ns5:billingGroupId>201008141448491784</ns5:billingGroupId><ns5:amount>10.0</ns5:amount></ns5:addDirectDebitPayment></S:Body></S:Envelope>
欲僅使用1個選擇查詢從這2個xml值中提取BillingGroupId。是否有可能或我想要使用單獨的選擇查詢來爲這2個xml值取出BillingGroupId? 我想從這個xml值中提取billingGroupID
值,但它沒有返回任何東西。我在我無法識別的選擇查詢中犯了一個小錯誤。
這裏是我的查詢:
SELECT xt_billingGroupId.BILLING_GROUP_ID
FROM TEMP_SOAP_MONITORING_TOPUP sm
CROSS JOIN XMLTable(XMLNAMESPACES (
'http://schemas.xmlsoap.org/soap/envelope/' AS "soapenv",
'http://service.soap.CDRator.com' as "ns",
'http://core.data.soap.CDRator.com/xsd' as "ax2130",
'http://webshop.result.service.soap.CDRator.com/xsd' as "ax2147",
'http://core.signup.data.soap.CDRator.com/xsd' as "ns3",
'http://service.soap.CDRator.com' as "ns5",
'http://core.result.service.soap.CDRator.com/xsd' as "ax232"
),
'for $i in //ns5:billingGroupId return $i'
passing XMLType(sm.REQUEST_XML)
columns "BILLING_GROUP_ID" VARCHAR2(100) path '/') xt_billingGroupId
CROSS JOIN XMLTable(XMLNAMESPACES (
'http://core.result.service.soap.CDRator.com/xsd' as "ax232"
)
你好亞歷克斯其工作。我還有一個與此相關的問題,我可以編輯我的問題嗎? – Andrew
@Rahul - 取決於它是否與答案有關,在這種情況下,您要求澄清作爲評論;或者是關於同一任務的無關問題,在這種情況下,您應該提出一個新問題。 –
你好亞歷克斯我已經更新了我的問題一點點。我有2個版本的xml值有點相似。我想通過修改使用相同的查詢,並使其靈活地從這2個xml值中提取BillingGroupId。 – Andrew