So:
declare @x xml = '<foo><bar>my value</bar></foo>'
select @x.value('(/foo/bar)[1]', 'varchar(30)')
Dasselbe funktioniert auch für eine XML-Spalte.
So:
declare @x xml = '<foo><bar>my value</bar></foo>'
select @x.value('(/foo/bar)[1]', 'varchar(30)')
Dasselbe funktioniert auch für eine XML-Spalte.