set @xml = '<a>demo</a>';
select extractvalue(@xml ,'/a');
I want to extract value for both the string with
< a > demo< /a >
and < a > demo < /a >
at the same time.
Is it possible using lower-case function or something. I want to extract values with case-insensitiveness for xml tags.