关于字段大小写敏感

from:http://www.blogjava.net/rain1102/archive/2008/12/10/245562.html

默认是表名敏感,字段不敏感。

CREATE TABLE students(
    name VARCHAR(10)
);
mysql查询默认是不区分大小写的 如:
select * from students where name like 'a%'
select * from students where name like 'A%'
效果是一样的。
要让mysql查询区分大小写,可以:
select * from students where binary name like 'a%'
select * from students where binary name like 'A%'

另一种办法是在数据库设计的时候,可能需要大小写敏感,解决方法是建表时候使用BINARY标示。
CREATE TABLE students(
    name VARCHAR(10) BINARY
);


如果修改已经存在的字段,使用如下SQL语句:
alter table ecs_users change user_name user_name varchar(60) binary default '' not null

你可能感兴趣的:(一句话)