0
我不在這裏?我不能讓NULL除外任何的回報......使用TSQL檢索XML節點值?
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
謝謝Vimalan。仍然在XPath曲線的陡峭部分。 – dbrosier