I have a table set up where fields are TEXT utf8_general_ci
.
The field data is set to Jovíkhan
(where the í is actually ALT-161).
I do a search for Jovikhan
(regular i, NOT ALT-161), I'm returned all the results as if I had actually used the ALT-161 í.
SELECT * FROM Table WHERE Field = 'Jovikhan';
Driving me a little bonkers here... I'm getting this issue directly in phpMyAdmin currently... why would it return those fields, especially if I'm using = 'Jovikhan'
vs. LIKE '%Jov%'
?