I have a column which has values like 'fur' and 'für'. Now if I write the query
select * from table where text = 'fur';
it gives me both 'fur' and 'für' and I want it to only return 'fur'. Which charset and collation should I use? Also when I try to use a unique index it doesn't allow me to insert 'für' as it matches with the already inserted 'fur'.