SOAP query
Изменение xml документаmodifyhttp://www.sql-tutorial.ru/ru/book_xml_data_type_methods/page5.html
SOAP query
declare namespace s="http://schemas.xmlsoap.org/soap/envelope/";
/s:Envelope[1]/s:Body[1]/CreateResponse[1]/CreateResult[1]/Id[1]',
'nvarchar(50)'
)
;with
xmlnamespaces(
'http://schemas.xmlsoap.org/soap/envelope/' as [SOAP]
)
select xml.value(
'/SOAP:Envelope[1]/SOAP:Body[1]/CreateResponse[1]/CreateResult[1]/Id[1]',
'varchar(max)'
)
Изменение xml документа
modify
http://www.sql-tutorial.ru/ru/book_xml_data_type_methods/page5.html