Possible Duplicate:
How to conduct an Accent Sensitive search in MySql
I have a MySQL database which consists of list of words which contain both French and English Letters in a table.
Ex : Datas Stored in DB as like :
id | words
- rççl
- rççr
- rçgi
I have searched for a query like this
SELECT id, words FROM `dictionary` WHERE `words` LIKE '_ç__'
So i got the following result id | words
- rççl
- rççr
- rçgi
In that query i have searched for french letter. SO the result is correct.
but in case i have searched for the following query,
SELECT id, words FROM `dictionary` WHERE `words` LIKE '_c__'
the result is the same id | words
- rççl
- rççr
- rçgi
So My Question is how to differentiate with this letters and what i need to change in my program or query? PLease Help ?