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