C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
| MySQL UPPER() FunctionThe upper() is a String function of MySQL. This function returns the string in upper case. Syntax
 select upper(str) Parameter:
 Str: string to be converted Returns:This function returns the string in upper case. Example 1
 
Select upper('TheDeveloperBlog');
Output:   Example 2
Select upper('mysql');
Output:   
Next TopicMySQL String
 |