Rechercher dans le manuel MySQL
10.3.8 Character Set Introducers
A character string literal, hexadecimal literal, or bit-value
literal may have an optional character set introducer and
COLLATE
clause, to designate it as a string
that uses a particular character set and collation:
The _
expression is formally called an
introducer. It tells the parser, “the
string that follows uses character set
charset_name
charset_name
.” An introducer
does not change the string to the introducer character set like
CONVERT()
would do. It does not
change the string value, although padding may occur. The
introducer is just a signal.
For character string literals, space between the introducer and the string is permitted but optional.
Examples:
Character set introducers and the COLLATE
clause are implemented according to standard SQL specifications.
Character string literals can be designated as binary strings by
using the _binary
introducer. Hexadecimal
literals and bit-value literals are binary strings by default,
so _binary
is permitted, but normally
unnecessary. _binary
may be useful to
preserve a hexadecimal or bit literal as a binary string in
contexts for which the literal is otherwise treated as a number.
For example, bit operations permit numeric or binary string
arguments in MySQL 8.0 and higher, but treat
hexadecimal and bit literals as numbers by default. To
explicitly specify binary string context for such literals, use
a _binary
introducer for at least one of the
arguments:
- +----------+----------+
- +----------+----------+
- | BCD | 0BCD |
- +----------+----------+
The displayed result appears similar for both bit operations,
but the result without _binary
is a
BIGINT
value, whereas the result with
_binary
is a binary string. Due to the
difference in result types, the displayed values differ:
High-order 0 digits are not displayed for the numeric result.
MySQL determines the character set and collation of a character string literal, hexadecimal literal, or bit-value literal in the following manner:
If both
_charset_name
andCOLLATE
are specified, character setcollation_name
charset_name
and collationcollation_name
are used.collation_name
must be a permitted collation forcharset_name
.If
_charset_name
is specified butCOLLATE
is not specified, character setcharset_name
and its default collation are used. To see the default collation for each character set, use theSHOW CHARACTER SET
statement or query theINFORMATION_SCHEMA
CHARACTER_SETS
table.If
_charset_name
is not specified butCOLLATE
is specified:collation_name
For a character string literal, the connection default character set given by the
character_set_connection
system variable and collationcollation_name
are used.collation_name
must be a permitted collation for the connection default character set.For a hexadecimal literal or bit-value literal, the only permitted collation is
binary
because these types of literals are binary strings by default.
Otherwise (neither
_charset_name
norCOLLATE
is specified):collation_name
For a character string literal, the connection default character set and collation given by the
character_set_connection
andcollation_connection
system variables are used.For a hexadecimal literal or bit-value literal, the character set and collation are
binary
.
Examples:
Nonbinary strings with
latin1
character set andlatin1_german1_ci
collation:Nonbinary strings with
utf8mb4
character set and its default collation (that is,utf8mb4_0900_ai_ci
):Binary strings with
binary
character set and its default collation (that is,binary
):The hexadecimal literal and bit-value literal need no introducer because they are binary strings by default.
A nonbinary string with the connection default character set and
utf8mb4_general_ci
collation (fails if the connection character set is notutf8mb4
):This construction (
COLLATE
only) does not work for hexadecimal literals or bit literals because their character set isbinary
no matter the connection character set, andbinary
is not compatible with theutf8mb4_general_ci
collation. The only permittedCOLLATE
clause in the absence of an introducer isCOLLATE binary
.A string with the connection default character set and collation:
For character set literals, an introducer indicates the
character set for the following string, but does not change how
the parser performs escape processing within the string. Escapes
are always interpreted by the parser according to the character
set given by
character_set_connection
. For
additional discussion and examples, see
Section 10.3.6, “Character String Literal Character Set and Collation”.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 26/06/2006 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/mysql-rf-charset-introducer.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.