mysql查询默认不区分大小写 select* from tablename where fied like '%A'; 解决办法: 可以在字段前面加 binary 类型转换运算符 select* from tablename where binary fied like '%A';