CHARSET

Sintassi

CHARSET(str)

Spiegazione

Restituisce il set di caratteri dell'argomento stringa.

Esempi

MariaDB [(none)]> SELECT CHARSET('abc');
+----------------+
| CHARSET('abc') |
+----------------+
| latin1         |
+----------------+
1 row in set (0.00 sec)

MariaDB [(none)]> SELECT CHARSET(CONVERT('abc' USING utf8));
+------------------------------------+
| CHARSET(CONVERT('abc' USING utf8)) |
+------------------------------------+
| utf8                               |
+------------------------------------+
1 row in set (0.00 sec)

MariaDB [(none)]> SELECT CHARSET(USER());
+-----------------+
| CHARSET(USER()) |
+-----------------+
| utf8            |
+-----------------+
1 row in set (0.00 sec)

MariaDB [(none)]> 

Vedi anche

Commenti

Sto caricando i commenti......
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.