MySQL 字符类型大小写敏感
mysql字符类型默认是不区分大小写的,即select*fromtwherename='AAA'与='aaa'没区别,以下是测试的例子
(root@localhost)[hello]>createtabletest1(idint,namevarchar(10)); (root@localhost)[hello]>insertintotest1values(1,'aaa'),(2,'AAA'),(3,'bbb'),(4,'BbB'); (root@localhost)[hello]>select*fromtest1; +------+------+ |id|name| +------+------+ |1|aaa| |2|AAA| |3|bbb| |4|BbB| +------+------+ (root@localhost)[hello]>select*fromtest1wherename='AAA'; +------+------+ |id|name| +------+------+ |1|aaa| |2|AAA| +------+------+ (root@localhost)[hello]>select*fromtest1wherename='aaa'; +------+------+ |id|name| +------+------+ |1|aaa| |2|AAA| +------+------+
可以看到此时where条件后面的'AAA'与'aaa',查出来的结果没啥区别。
如果只想找出'AAA'的可以有以下几种办法
1.在sql中加入binary关键字
(root@localhost)[hello]>select*fromtest1wherebinaryname='AAA'; +------+------+ |id|name| +------+------+ |2|AAA| +------+------+
2.修改列的定义
先查看原始表的定义
(root@localhost)[hello]>showcreatetabletest1\G ***************************1.row*************************** Table:test1 CreateTable:CREATETABLE`test1`( `id`int(11)DEFAULTNULL, `name`varchar(10)DEFAULTNULL )ENGINE=InnoDBDEFAULTCHARSET=utf8mb4
修改表test1的name列
altertabletest1modifycolumnnamevarchar(10)charactersetutf8mb4collateutf8mb4_bindefaultnull;
collateutf8mb4_bin表示where过滤或者orderby排序区分大小写
此时查看test1的定义
(root@localhost)[hello]>showcreatetabletest1\G ***************************1.row*************************** Table:test1 CreateTable:CREATETABLE`test1`( `id`int(11)DEFAULTNULL, `name`varchar(10)CHARACTERSETutf8mb4COLLATEutf8mb4_binDEFAULTNULL )ENGINE=InnoDBDEFAULTCHARSET=utf8mb4
接着再执行查询语句
(root@localhost)[hello]>select*fromtest1wherename='AAA'; +------+------+ |id|name| +------+------+ |2|AAA| +------+------+
下面再创建一张test2表,就会发现上面修改列的语句其实相当于在创建表时varchar后面跟binary
(root@localhost)[hello]>createtabletest2(idint,namevarchar(10)binary); (root@localhost)[hello]>showcreatetabletest2\G ***************************1.row*************************** Table:test2 CreateTable:CREATETABLE`test2`( `id`int(11)DEFAULTNULL, `name`varchar(10)CHARACTERSETutf8mb4COLLATEutf8mb4_binDEFAULTNULL )ENGINE=InnoDBDEFAULTCHARSET=utf8mb4
下面介绍如何设置字符大小写敏感
- 数据库级别设置字符大小写敏感
创建
createdatabasedefaultcharactersetutf8mb4collateutf8mb4_bin;
修改
alterdatabasedefaultcharactersetutf8mb4collateutf8mb4_bin;
- 表级别设置字符大小写敏感
创建
createtable( ...... )engine=innodbdefaultcharset=utf8mb4collate=utf8mb4_bin;
修改
altertableengine=innodbdefaultcharset=utf8mb4collate=utf8mb4_bin;
- 列级别设置字符大小写敏感
创建
createtable( `field1`varchar(10)charactersetutf8mb4collateutf8mb4_bin, ...... )
修改
altertablemodifycolumn`field1`varchar(10)charactersetutf8mb4collateutf8mb4_bindefaultnull;
继承关系是列-->表-->库,优先级是列>表>库
以上就是MySQL字符类型大小写敏感的详细内容,更多关于MySQL字符类型大小写的资料请关注毛票票其它相关文章!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。