Syntax
LCASE(str)
Purpose
You can call this function to convert uppercase letters in a string into lowercase letters.
The function is a synonym of the LOWER() function.
Examples
obclient> SELECT LCASE('OBCLIENTHELLO! ');
+----------------------------+
LCASE('OBCLIENTHELLO! ')
+----------------------------+
obclienthello! |
+----------------------------+
1 row in set (0.00 sec)