ORD

Sintassi

ORD(str)

Spiegazione

Se il carattere più a sinistra della stringa str è composto da più di un byte, restituisce il codice di quel carattere, calcolato a partire dai valori numerici dei suoi byte, utilizzando questa formula:

  (codice byte 1)
+ (codice byte 2 x 256)
+ (codice byte 3 x 2562) ...

Se il carattere più a sinistra è composto da un solo byte, ORD() restituisce lo stesso valore della funzione ASCII().

Esempi

MariaDB [(none)]> SELECT ORD('2');
+----------+
| ORD('2') |
+----------+
|       50 |
+----------+
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.