Rechercher dans le manuel MySQL
Chapter 10 Character Sets, Collations, Unicode
Table of Contents [+/-]
- 10.1 Character Sets and Collations in General
- 10.2 Character Sets and Collations in MySQL [+/-]
- 10.3 Specifying Character Sets and Collations [+/-]
- 10.3.1 Collation Naming Conventions
- 10.3.2 Server Character Set and Collation
- 10.3.3 Database Character Set and Collation
- 10.3.4 Table Character Set and Collation
- 10.3.5 Column Character Set and Collation
- 10.3.6 Character String Literal Character Set and Collation
- 10.3.7 The National Character Set
- 10.3.8 Character Set Introducers
- 10.3.9 Examples of Character Set and Collation Assignment
- 10.3.10 Compatibility with Other DBMSs
- 10.4 Connection Character Sets and Collations
- 10.5 Configuring Application Character Set and Collation
- 10.6 Error Message Character Set
- 10.7 Column Character Set Conversion
- 10.8 Collation Issues [+/-]
- 10.8.1 Using COLLATE in SQL Statements
- 10.8.2 COLLATE Clause Precedence
- 10.8.3 Character Set and Collation Compatibility
- 10.8.4 Collation Coercibility in Expressions
- 10.8.5 The binary Collation Compared to _bin Collations
- 10.8.6 Examples of the Effect of Collation
- 10.8.7 Using Collation in INFORMATION_SCHEMA Searches
- 10.9 Unicode Support [+/-]
- 10.9.1 The utf8mb4 Character Set (4-Byte UTF-8 Unicode Encoding)
- 10.9.2 The utf8mb3 Character Set (3-Byte UTF-8 Unicode Encoding)
- 10.9.3 The utf8 Character Set (Alias for utf8mb3)
- 10.9.4 The ucs2 Character Set (UCS-2 Unicode Encoding)
- 10.9.5 The utf16 Character Set (UTF-16 Unicode Encoding)
- 10.9.6 The utf16le Character Set (UTF-16LE Unicode Encoding)
- 10.9.7 The utf32 Character Set (UTF-32 Unicode Encoding)
- 10.9.8 Converting Between 3-Byte and 4-Byte Unicode Character Sets
- 10.10 Supported Character Sets and Collations [+/-]
- 10.11 Setting the Error Message Language
- 10.12 Adding a Character Set [+/-]
- 10.13 Adding a Collation to a Character Set [+/-]
- 10.14 Character Set Configuration
- 10.15 MySQL Server Locale Support
MySQL includes character set support that enables you to store data using a variety of character sets and perform comparisons according to a variety of collations. You can specify character sets at the server, database, table, and column level.
This chapter discusses the following topics:
What are character sets and collations?
The multiple-level default system for character set assignment.
Syntax for specifying character sets and collations.
Affected functions and operations.
Unicode support.
The character sets and collations that are available, with notes.
Selecting the language for error messages.
Selecting the locale for day and month names.
Character set issues affect not only data storage, but also
communication between client programs and the MySQL server. If you
want the client program to communicate with the server using a
character set different from the default, you'll need to indicate
which one. For example, to use the utf8
Unicode
character set, issue this statement after connecting to the server:
For more information about configuring character sets for application use and character set-related issues in client/server communication, see Section 10.5, “Configuring Application Character Set and Collation”, and Section 10.4, “Connection Character Sets and Collations”.
Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-charset.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.