up vote 1 down vote favorite
1
share [g+] share [fb]

I have a simple column filled with words, many from foreign languages,

I need to query based on the "English" letters,

ie E, e, é, è, etc should be returned for query of "E"

so école should be returned as a result which exists in the database when I query for "E"

I can't really find a way to Google this, so help would be greatly appreciated.

I'm using MSSQL 2005.

link|improve this question
feedback

2 Answers

Change your collation to be accent-insensitive.

link|improve this answer
feedback

choose a collation which is insensitive to accented characters

example

create table bla(Col nvarchar(30))

insert bla values (N'E')
insert bla values (N'e')
insert bla values (N'é')
insert bla values (N'è')
insert bla values (N'f')
insert bla values (N'k')


select * from bla where Col = 'e'  --won't work

select * from bla where Col = 'e' collate Latin1_General_CI_AI_WS
link|improve this answer
feedback

Your Answer

 
or
required, but never shown