I have the following string
áéíóú
which I need to convert it to
aeiou
How can I achieve it? (I don\'t nee
Sometimes, the string can have another COLLATION, so you still have accents in the result. In that case, you can use this line (based on this solution here):
SELECT convert(varchar, your_string) COLLATE SQL_Latin1_General_Cp1251_CS_AS;