I have created a table AddictionText.
CREATE TABLE `AddictionText` (
`Condition` VARCHAR(255) NOT NULL);
It's filled with UTF-8 characters, such as
INSERT INTO AddictionText VALUES ('šarec')
When I compare it with the word sarec I still get a single hit. I was expecting no results.
select * from AddictionText where AddictionText.Condition='sarec' --mind you, first character is S not Š
Can someone please help me out, what am I doing wrong?