I have the following string
áéíóú
which I need to convert it to
aeiou
How can I achieve it? (I don’t need to compare, I need the new string to save)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try using
COLLATE:For Unicode data, try the following:
I am not sure what you may lose in the translation when using the second approach.
Update
It looks like
œis a special case, and we have to handle upper and lower case separately. You can do it like this (this code is a good candidate for a user-defined function):User Defined Function