COLLATION
Sintassi
COLLATION(str)
Spiegazione
Restituisce la collation dell'argomento stringa.
Esempi
MariaDB [(none)]> SELECT COLLATION('abc'); +-------------------+ | COLLATION('abc') | +-------------------+ | latin1_swedish_ci | +-------------------+ 1 row in set (0.00 sec) MariaDB [(none)]> SELECT COLLATION(_utf8'abc'); +-----------------------+ | COLLATION(_utf8'abc') | +-----------------------+ | utf8_general_ci | +-----------------------+ 1 row in set (0.00 sec) MariaDB [(none)]>
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.