mysql 执行where条件忽略字符串最后多空格解决方案

第一种使用like (严格匹配会把最后多空格包含进去)
select * from tableA where string like ‘aaa %’;

第二种方案(转为二进制)
select * from tableA where string = BINARY’aaa ';

你可能感兴趣的:(mysql,数据库)