HEX

Sintassi

HEX(N_o_S)

Spiegazione

Se N_o_S è un numero, restituisce la rappresentazione stringa del valore esadecimale di N, dove N è un numero longlong (BIGINT). E' l'equivalente di CONV(N,10,16).

Se N_o_S è una stringa, restituisce la rappresentazione stringa del valore esadecimale di N_o_S, dove ogni carattere in N_o_S è convertito in due cifre esadecimali. L'inverso di questa operazione si ottiene con la funzione UNHEX().

Esempi

MariaDB [(none)]> SELECT HEX(255);
+----------+
| HEX(255) |
+----------+
| FF       |
+----------+
1 row in set (0.00 sec)

MariaDB [(none)]> SELECT 0x4D617269614442;
+------------------+
| 0x4D617269614442 |
+------------------+
| MariaDB          |
+------------------+
1 row in set (0.00 sec)

MariaDB [(none)]> SELECT HEX('MariaDB');
+----------------+
| HEX('MariaDB') |
+----------------+
| 4D617269614442 |
+----------------+
1 row in set (0.00 sec)

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.