I have a table in my Mysql db (utf-8). I want to get exact word matches from this table. My query is:
SELECT matched_rows FROM MY_TABLE WHERE string = 'MY_STRING'
Problem is when I search for 'ağaç' (tree in English) I got all rows with ağaç, agac, ağac, agaç. what I want to get is only 'ağaç' not the rest. I also don't want results with something agac.
How do I get this effect?