av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

您的位置:首頁技術文章
文章詳情頁

MySQL 字符類型大小寫敏感

瀏覽:16日期:2023-10-08 11:25:32

mysql字符類型默認是不區分大小寫的,即select * from t where name=’AAA’與=’aaa’沒區別,以下是測試的例子

(root@localhost)[hello]> create table test1(id int, name varchar(10));(root@localhost)[hello]> insert into test1 values(1,’aaa’),(2,’AAA’),(3,’bbb’),(4,’BbB’);(root@localhost)[hello]> select * from test1;+------+------+| id | name |+------+------+| 1 | aaa || 2 | AAA || 3 | bbb || 4 | BbB |+------+------+(root@localhost)[hello]> select * from test1 where name = ’AAA’;+------+------+| id | name |+------+------+| 1 | aaa || 2 | AAA |+------+------+(root@localhost)[hello]> select * from test1 where name = ’aaa’;+------+------+| id | name |+------+------+| 1 | aaa || 2 | AAA |+------+------+

可以看到此時where條件后面的’AAA’與’aaa’,查出來的結果沒啥區別。

如果只想找出’AAA’的可以有以下幾種辦法1.在sql中加入binary關鍵字

(root@localhost)[hello]> select * from test1 where binary name = ’AAA’;+------+------+| id | name |+------+------+| 2 | AAA |+------+------+

2.修改列的定義

先查看原始表的定義

(root@localhost)[hello]> show create table test1G*************************** 1. row *************************** Table: test1Create Table: CREATE TABLE `test1` ( `id` int(11) DEFAULT NULL, `name` varchar(10) DEFAULT NULL) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4

修改表test1的name列

alter table test1 modify column name varchar(10) character set utf8mb4 collate utf8mb4_bin default null;

collate utf8mb4_bin表示where過濾或者order by排序區分大小寫

此時查看test1的定義

(root@localhost)[hello]> show create table test1G*************************** 1. row *************************** Table: test1Create Table: CREATE TABLE `test1` ( `id` int(11) DEFAULT NULL, `name` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4

接著再執行查詢語句

(root@localhost)[hello]> select * from test1 where name=’AAA’;+------+------+| id | name |+------+------+| 2 | AAA |+------+------+

下面再創建一張test2表,就會發現上面修改列的語句其實相當于在創建表時varchar后面跟binary

(root@localhost)[hello]> create table test2(id int, name varchar(10) binary);(root@localhost)[hello]> show create table test2G*************************** 1. row *************************** Table: test2Create Table: CREATE TABLE `test2` ( `id` int(11) DEFAULT NULL, `name` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4

下面介紹如何設置字符大小寫敏感

數據庫級別設置字符大小寫敏感

創建

create database <db_name> default character set utf8mb4 collate utf8mb4_bin;

修改

alter database <db_name> default character set utf8mb4 collate utf8mb4_bin; 表級別設置字符大小寫敏感

創建

create table <tb_name> (......) engine=innodb default charset=utf8mb4 collate=utf8mb4_bin;

修改

alter table <tb_name> engine=innodb default charset=utf8mb4 collate=utf8mb4_bin; 列級別設置字符大小寫敏感

創建

create table <tb_name> (`field1` varchar(10) character set utf8mb4 collate utf8mb4_bin,......)

修改

alter table <tb_name> modify column `field1` varchar(10) character set utf8mb4 collate utf8mb4_bin default null;

繼承關系是列-->表-->庫,優先級是列>表>庫

以上就是MySQL 字符類型大小寫敏感的詳細內容,更多關于MySQL 字符類型大小寫的資料請關注好吧啦網其它相關文章!

標簽: MySQL 數據庫
相關文章:
主站蜘蛛池模板: 天天干夜夜操 | 成人永久免费 | 欧美在线观看一区 | 91精品国产综合久久婷婷香蕉 | 99亚洲视频 | 91人人爽| 91伊人| 欧美一级大片免费观看 | 国产精品久久久久久久免费大片 | 91av小视频| 国产一级影片 | 久久人操| 欧美日韩三级在线观看 | 欧美视频在线看 | 色久影院 | 日日干天天操 | 久久av综合 | 午夜一区 | 免费久久精品 | 日日干干夜夜 | 成人做爰9片免费看网站 | 中文字幕91 | 亚州精品天堂中文字幕 | 精品一区二区三区在线观看国产 | 中文字幕在线免费观看 | 色综合一区二区 | 亚洲一区久久 | 伊人亚洲 | 欧美日韩高清在线一区 | 日韩一二三区视频 | 伊人久操| 婷婷色国产偷v国产偷v小说 | 久久y| 亚洲91视频 | 久久伊 | 超碰日本| 97在线观视频免费观看 | 91www在线观看 | 国产中文字幕在线观看 | 欧美极品在线播放 | 日韩av网址在线观看 |