我的ERP中有XML的UDF。我需要从表中更新它们,但是它们为空,我尝试过的更新代码说我无法更新NULL值
我尝试过执行插入语句,还尝试了删除操作然后插入
update shipments
SET customcolumns.modify('insert <Value>0</Value> into (/CustomColumnsCollection/CustomColumn[Name[text()[1]=("Cartons")]])[1]')
From Shipments
Where Shipments.ShipmentId = 'SH00121276'
我得到了错误-无法对null值调用'CustomColumns'上的Mutator'modify()'。