7
Vamos a echar un fragmento de la muestra:¿Cómo actualizar un valor de atributo xml en una variable xml usando t-sql?
DECLARE @xml XML = N'
<a abb="122">
<b>
</b>
</a>
';
SELECT @xml;
--need to update abb to be 344 in @xml here
SELECT @xml;
No sé cómo actualizar que abb
's valor del atributo.
Solo quiero pedir más información. ¿Cómo podemos hacer actualizaciones para todos los atributos 'abb' en lugar de solo un nodo? –
He publicado esta pregunta aquí http://stackoverflow.com/questions/5347890/how-to-update-all-xml-attributes-value-in-an-xml-variable-using-t-sql –