LOWER function converts every letter of a string to lower-case.
The general format for this function is:
LOWER(string)
SQL> SQL>-- w ww . ja va 2 s.co m SQL> SELECT LOWER('Test') FROM dual 2