Mysql LOWER
From w3cyberlearnings
Contents |
MySQL LOWER Function
This function returns all lowercase for a given string.
Syntax LOWER
- Str: A string input to convert to lowercase.
LOWER(Str);
Example 1
mysql> SELECT LOWER('SHE is Good'); +----------------------+ | LOWER('SHE is Good') | +----------------------+ | she is good | +----------------------+ 1 row in set (0.00 sec)