在mysql中存在着各种utf8编码格式,如下表:
1)utf8_bin
utf8_bin将字符串中的每一个字符用二进制数据存储,区分大小写。
2)utf8_general_ci
utf8_genera_ci不区分大小写,ci为case insensitive的缩写,即大小写不敏感。
3)utf8_general_cs
utf8_general_cs区分大小写,cs为case sensitive的缩写,即大小写敏感。
执行如下命令:
create table test_bin (
name varchar(32) not null primary key,
age int unsigned not null
) engine = InnoDB COLLATE=utf8_bin;
create table test_ci (
name varchar(32) not null primary key,
age int unsigned not null
) engine = InnoDB COLLATE=utf8_general_ci;
create table test_cs (
name varchar(32) not null primary key,
age int unsigned not null
) engine = InnoDB COLLATE=utf8_general_cs;
1,2命令成功 3执行失败,不支持utf8_genral_cs。
insert into test_bin values('Alice', 18);
insert into test_bin values('alice', 20);
以上命令能够执行成功,因为utf8_bin是以十六进制方式存储数据,两条记录的主键不重复。
insert into test_ci values('Alice', 18);
insert into test_ci values('alilce', 20);
以上命令执行失败,因为utf8_general_ci不区分大小写,两条记录的主键重复。
最后 看下官方的文档
case (in)sensitivity
https://dev.mysql.com/doc/refman/5.0/en/case-sensitivity.html
problems
https://bugs.mysql.com/bug.php?id=65830
https://bugs.mysql.com/bug.php?id=50909
https://bugs.mysql.com/bug.php?id=63164
相关推荐
在MySQL中,Identifier Case Sensitivity,即标识符大小写敏感性,是一个重要的概念,它涉及到数据库、表、列以及各种对象名称的识别方式。这个问题在不同的操作系统上表现各异,主要受到底层操作系统和MySQL的`...
- [20.16 Case Sensitivity in Searches](https://dev.mysql.com/doc/refman/8.0/en/case-sensitivity.html) - MySQL官方文档详细介绍了如何控制搜索时的大小写敏感性。 - [MySQL String Functions]...
1. **大小写敏感性(Case Sensitivity)**:MySQL默认对标识符(如表名、列名)不区分大小写,但在某些操作系统下可以通过设置使其区分大小写。 2. **文字值(Literals)**:SQL语句中的常量值,如数字、字符串和日期...
- **Case Sensitivity(大小寫敏感性)**:MySQL是大小寫敏感的,因此在命名資料庫、資料表及欄位时需注意这一点。例如,“employee”和“Employee”将被视为两个不同的名称。 - **一致性**:在設計資料庫时,应保持...
- **找到** `Case Sensitivity Using Quote` 选项,并将其设置为 `No`。 3. **通过物理模型选项设置:** - **进入** `Tools -> Model Options -> Naming Convention`; - **设置** `Name` 和 `Code` 标签下的 `...
6.8.1 大小写敏感性(Case Sensitivity) ....77 6.8.2 排序(order by) .......77 6.8.3 查询部分属性.......78 6.8.4 查询中使用构造器(Constructor)..78 6.8.5 聚合查询(Aggregation).......80 6.8.6 关联(join) 82 ...
4. **修改引号使用设置**:在“Format”部分,找到“Case Sensitivity Using Quote”选项,将其值设置为“No”。这一设置意味着在生成SQL脚本时,PowerDesigner将不再自动使用引号包围数据库对象名称。 5. **保存并...
要去除这些双引号,可以通过以下步骤:进入`Database`菜单下的`Edit Current DBMS`,然后选择`General` -> `Script` -> `Sql` -> `Format` -> `Case Sensitivity Using Quote`,将其设置为`NO`即可。 ### 技巧3:...
6.8.1 大小写敏感性(Case Sensitivity) ....77 6.8.2 排序(order by) .......77 6.8.3 查询部分属性.......78 6.8.4 查询中使用构造器(Constructor)..78 6.8.5 聚合查询(Aggregation).......80 6.8.6 关联(join) 82 ...
- **大小写敏感性 (Case Sensitivity)**:默认情况下不区分大小写。 - **排序 (orderby)**:对结果进行排序。 - **查询部分属性**:选择特定的属性。 - **查询中使用构造器 (Constructor)**:创建新的对象实例。 - *...
- **大小写敏感性(Case Sensitivity)** - **命名查询** - 实体Bean用于表示持久化的对象,主要通过JPA (Java Persistence API) 来管理和操作这些对象。 - JPA提供了丰富的API来进行数据库操作,包括查询、更新等...
6.2.1 MySql数据源的配置........................................................................................................................................37 6.2.2 Ms Sql Server2000数据源的配置......