LEFT(str,len)
Returns the leftmost len
characters from the string str
, or NULL if any argument is NULL.
SELECT LEFT('MariaDB', 5); +--------------------+ | LEFT('MariaDB', 5) | +--------------------+ | Maria | +--------------------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/left/