我在表中有一个数据类型为XML的列。 mycolumn具有以下值
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www
.w3.org/2001/XMLSchema"
xmlns:ns1="http://http://localhost/test/">
<SOAP-ENV:Body>
<ns1:IDResults>
<NCNL>
<Value>123</Value>
</NCNL>
</ns1:IDResults>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
select mycolumn.query('./Envelope/Body')
我上面的select语句没有返回任何内容。
我是否需要指定SOAP-ENV:
前缀,如果是,我该如何指定呢?
提前致谢。
答案 0 :(得分:0)
实际查询取决于您想要获得的内容,但基本上您必须在查询中指定命名空间,如下所示:
;with xmlnamespaces ('http://schemas.xmlsoap.org/soap/envelope/' as [SOAP-ENV])
select @data.query('SOAP-ENV:Envelope/SOAP-ENV:Body/*')