Hi All,
i want to modify an data of xml data type,so i am using
DECLARE @xml XML
SET @xml = '<root></root>'
SET @xml.modify('insert <a>Szövlő</a> into (/root)[1]')
SELECT @xml
but the problem is "ő" is not getting stored as it is instead it is getting stored as "o"
please help me out in this