mysql Like查询默认是不区分大小写的:
如:
select * from table t where t.colum1 like concat('%','a','%');两个sql查询结果相同;
select * from table t where t.colum1 like concat('%','A','%');
如果必要区分的话可以这样:
select * from table t where binary t.colum1 like concat('%','A','%');
建表时,字段加上标识也可以区分大小写:
create table t{
code varchar(10) binary
}