LEFT

Stai visualizzando una vecchia versione di questo article. Visualizza la versione più recente.

Sintassi

LEFT(str, len)

Spiegazione

Restituisce len caratteri dalla sinistra della stringa str, oppure NULL se uno qualsiasi degli argomenti è NULL.

Esempi

MariaDB [test]> SELECT LEFT('MariaDB', 5);
+--------------------+
| LEFT('MariaDB', 5) |
+--------------------+
| Maria              |
+--------------------+
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.