lcase
Description
This function converts a string to lower-case. It is analogous to the function lower.
Syntax
VARCHAR lcase(VARCHAR str)
Examples
mysql> SELECT lcase("AbC123");
+-----------------+
|lcase('AbC123') |
+-----------------+
|abc123 |
+-----------------+
keyword
LCASE