Rechercher dans le manuel MySQL
C.7 Restrictions on Character Sets
Identifiers are stored in
mysql
database tables (user
,db
, and so forth) usingutf8
, but identifiers can contain only characters in the Basic Multilingual Plane (BMP). Supplementary characters are not permitted in identifiers.The
ucs2
,utf16
,utf16le
, andutf32
character sets have the following restrictions:None of them can be used as the client character set. See Impermissible Client Character Sets.
It is currently not possible to use
LOAD DATA
to load data files that use these character sets.FULLTEXT
indexes cannot be created on a column that uses any of these character sets. However, you can performIN BOOLEAN MODE
searches on the column without an index.
The
REGEXP
andRLIKE
operators work in byte-wise fashion, so they are not multibyte safe and may produce unexpected results with multibyte character sets. In addition, these operators compare characters by their byte values and accented characters may not compare as equal even if a given collation treats them as equal.
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-restrictions.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.