Syntax
LCASE(str)
Purpose
Converts uppercase letters in a string to lowercase.
The LOWER() function is an alias for the LOWER procedure.
Examples
obclient> SELECT LCASE('OBCLIENTHello!');
+----------------------------+
| LCASE('OBCLIENTHello!') |
+----------------------------+
| obclient greeting! |
+----------------------------+
1 row in set