最初にアンカー要素を削除してから、新しいアンカー要素を挿入してみてください。削除ステートメントがあるかどうかは関係ありません。また、新しいアンカー要素を作成するためのより良い方法を提供しました。 &
などの文字のエンティティの作成を処理します 。
-- Delete the anchor node from the XML
set @xml.modify('delete /root/StartOne/Value6/a');
-- Build the XML for the new anchor node
set @a = (
select @locTitle as 'a/@title',
@locUrl as 'a/@href',
'_blank' as 'a/@target',
@locTitle as 'a'
for xml path(''), type
);
-- Insert the new anchor node
set @xml.modify('insert sql:variable("@a") into (/root/StartOne/Value6)[1]');