This is a read-only copy of the MariaDB Knowledgebase generated on 2024-11-14. For the latest, interactive version please visit https://mariadb.com/kb/.

LEFT

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)
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.