使用TSQL检索XML节点值?

时间:2015-06-15 22:40:53

标签: sql-server xml tsql soap

我没有到这里来的?除了NULL ......我无法获得任何回报。

DECLARE @xml xml
SELECT @xml = '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <SOAP-ENV:Body>
    <webregdataResponse>
      <result>0</result>
      <regData />
      <errorFlag>99</errorFlag>
      <errorResult>Not Processed</errorResult>
    </webregdataResponse>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>'

DECLARE @nodeVal int
SELECT @nodeVal =  @xml.value('(errorFlag)[1]', 'int')
SELECT @nodeVal

2 个答案:

答案 0 :(得分:1)

以下是解决方案:

DECLARE @xml xml
SELECT @xml = '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <SOAP-ENV:Body>
    <webregdataResponse>
      <result>0</result>
      <regData />
      <errorFlag>99</errorFlag>
      <errorResult>Not Processed</errorResult>
    </webregdataResponse>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>'


declare @table table (data xml);
insert into @table values (@xml);

WITH xmlnamespaces (
'http://schemas.xmlsoap.org/soap/envelope/' as [soap])
SELECT Data.value('(/soap:Envelope/soap:Body/webregdataResponse/errorFlag)[1]','int') AS ErrorFlag
FROM @Table ;

运行上面的SQL将返回99。

结果快照如下,

Snapshot of the result

答案 1 :(得分:0)

那是因为errorFlag不是XML文档的根元素。您可以指定从根元素到errorFlag的完整路径,例如*:

SELECT @nodeVal =  @xml.value('(/*/*/*/errorFlag)[1]', 'int')

或者你可以使用descendant-or-self axis(//)来获取元素,无论它在XML文档中的位置如何,例如:

SELECT @nodeVal =  @xml.value('(//errorFlag)[1]', 'int')

*:我正在使用*而不是实际的元素名称来简化表达式。您还可以使用实际的元素名称和命名空间,如另一个答案中所示。