MySQL matching unicode characters with ascii version

后端 未结 5 1648
盖世英雄少女心
盖世英雄少女心 2020-12-03 14:59

I\'m running MySQL 5.1.50 and have a table that looks like this:

organizations | CREATE TABLE `organizations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `na         


        
5条回答
  •  难免孤独
    2020-12-03 16:01

    Of course, this will work:

    SELECT * FROM table WHERE name LIKE BINARY 'namé';
    

提交回复
热议问题