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:
[_charset_name] literal [COLLATE collation_name]
The _ expression is formally called an introducer. It tells the parser, “the string that follows uses character set charset_namecharset_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.
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”.
Examples:
SELECT 'abc';
SELECT _latin1'abc';
SELECT _binary'abc';
SELECT _utf8'abc' COLLATE utf8_danish_ci;
SELECT _latin1 X'4D7953514C';
SELECT _utf8 0x4D7953514C COLLATE utf8_danish_ci;
SELECT _latin1 b'1000001';
SELECT _utf8 0b1000001 COLLATE utf8_danish_ci;
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 unnecessary.
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_nameandCOLLATEare specified, character setcollation_namecharset_nameand collationcollation_nameare used.collation_namemust be a permitted collation forcharset_name.If
_charset_nameis specified butCOLLATEis not specified, character setcharset_nameand its default collation are used. To see the default collation for each character set, use theSHOW CHARACTER SETstatement or query theINFORMATION_SCHEMACHARACTER_SETStable.-
If
_charset_nameis not specified butCOLLATEis specified:collation_nameFor a character string literal, the connection default character set given by the
character_set_connectionsystem variable and collationcollation_nameare used.collation_namemust be a permitted collation for the connection default character set.For a hexadecimal literal or bit-value literal, the only permitted collation is
binarybecause these types of literals are binary strings by default.
-
Otherwise (neither
_charset_namenorCOLLATEis specified):collation_nameFor a character string literal, the connection default character set and collation given by the
character_set_connectionandcollation_connectionsystem variables are used.For a hexadecimal literal or bit-value literal, the character set and collation are
binary.
Examples:
-
Nonbinary strings with
latin1character set andlatin1_german1_cicollation:SELECT _latin1'Müller' COLLATE latin1_german1_ci; SELECT _latin1 X'0A0D' COLLATE latin1_german1_ci; SELECT _latin1 b'0110' COLLATE latin1_german1_ci;
-
Nonbinary strings with
utf8character set and its default collation (that is,utf8_general_ci):SELECT _utf8'Müller'; SELECT _utf8 X'0A0D'; SELECT _utf8 b'0110';
-
Binary strings with
binarycharacter set and its default collation (that is,binary):SELECT _binary'Müller'; SELECT X'0A0D'; SELECT b'0110';
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
utf8_general_cicollation (fails if the connection character set is notutf8):SELECT 'Müller' COLLATE utf8_general_ci;
This construction (
COLLATEonly) does not work for hexadecimal literals or bit literals because their character set isbinaryno matter the connection character set, andbinaryis not compatible with theutf8_general_cicollation. The only permittedCOLLATEclause in the absence of an introducer isCOLLATE binary. -
A string with the connection default character set and collation:
SELECT 'Müller';
© 2025 Oracle
Licensed under the GPLv2 License.