Collation以 "_ci"结尾的不区分大小写(ci——Case Ignore),以"_bin"或者"_cs"结尾的区分大小写 将Collation改为utf8_bin(大小写敏感的) 可以为库、表、列指定Collation。 优先级为 列>表>库 eg: mysql> CREATE DATABASE test COLLATE utf8_bin; Query OK, 1 row affected mysql> use test; Database ...