I\'m working with Spanish database so when I\'m looking for and \"aeiou\" I can also get \"áéíóú\" or \"AEIOU\" or \"ÁÉÍÓÚ\", in a where clause like this:
SE
You can use COLLATE, eg.
COLLATE
SELECT * FROM TableName WHERE strData COLLATE Latin1_general_CI_AI = 'perez' COLLATE Latin1_general_CI_AI
both sides must have the same collation.
Others: