Mysql
 sql >> Database >  >> RDS >> Mysql

come estrarre il campo del valore xml con in sql server (funzione extractvalue in mysql)

Così:

declare @x xml = '<foo><bar>my value</bar></foo>'

select @x.value('(/foo/bar)[1]', 'varchar(30)')

Lo stesso funzionerà anche per una colonna XML.