我在表中有一个xml列ExportTemplate
,其中包含我需要修改的xsl模板。
当我使用下面的查询时,服务器会通知1行受到影响,但当我检查实际行时,更改尚未保留。有任何想法吗?谢谢。
update Exports
set ExportTemplate.modify('
declare namespace xsl="http://www.w3.org/1999/XSL/Transform";
declare namespace xslt="http://www.w3.org/1999/XSL/Transform";
insert <Fuel><xslt:value-of select="Fuel"/></Fuel>
after (/xsl:stylesheet/xslt:template[3]/Vehicle/Condition)[1]')
where ExportCode ='AutoTrade';
答案 0 :(得分:0)