C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
| MySQL LOWER() FunctionLOWER(str) is a Sring function of MySQL. This method returns the given string in lower case. Syntax
 select lower(str); Example 1
 
Select lower('JAVATPOINT');
Output:   Example 2
 
Select lower('MYSQL');
Output:   
Next TopicMySQL String
 |