I'm a freshman in SQL. Now I want to decode the URL characters(like &
to &
) from the content I get through SQL query. But I don't know what to do.
For example, if I have a SQL query
select name,replace(name,'ss',"") as clientname
from table
where id = 000
and the name includes the character like "&" or "<",etc. How can decode them to regular characters?
Please help me, thank you.