Sqlserver
 sql >> Base de données >  >> RDS >> Sqlserver

Comment utiliser la variable SQL pour itérer les nœuds XML

Votre propre code fonctionnerait avec juste un autre [1] . La fonction .modify() ne peut pas interpréter le [sql:variable(...)] ... Cela peut être n'importe quel filtre, même un avec plus d'un résultat... Alors changez simplement ceci en :

DECLARE @xml xml = '<Root>
                      <Contacts>
                        <Contact name="John Doe" type="REG" other="value" />
                        <Contact name="Jane Doe" type="REG" other="value" />
                        <Contact name="Jennifer Doe" type="REG" other="value" />
                        <Contact name="Jane Doe" type="REG" other="value" />
                      </Contacts>
                    </Root>';
DECLARE @i int = 1
SET @xml.modify('replace value of (/Root/Contacts/Contact)[sql:variable("@i")][1]/@type with "NEW"')
SELECT @xml

Mais j'irais sur un autre chemin... Vous pourriez lire le tout comme une table dérivée et reconstruire le XML comme ceci :

SELECT
(
    SELECT c.value('@name','nvarchar(max)') AS [@name]
          --,c.value('@type','nvarchar(max)') AS [@type]
          ,'NEW' AS [@type]
          ,c.value('@other','nvarchar(max)') AS [@other]
    FROM @xml.nodes('/Root/Contacts/Contact') AS A(c)
    FOR XML PATH('Contact'),ROOT('Contact'),TYPE
)
FOR XML PATH('Root')

Une autre approche serait FLWOR :

SELECT @xml.query('
for $r in /Root/Contacts
    return <Root><Contacts>
    {
        for $c in /Root/Contacts/Contact
           return <Contact name="{$c/@name}" type="NEW" other="{$c/@other}"/>
    }
    </Contacts></Root>
')