需要设置collate(校对) 。 collate规则:
*_bin: 表示的是binary case sensitive collation,也就是说是区分大小写的
*_cs: case sensitive collation,区分大小写
*_ci: case insensitive collation,不区分大小写
如果表已经设置为不区分大小写,采用如下方式:
可以将查询条件用binary()括起来。 如:
select * from table where field = binary(‘usename’);