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. Syntaxselect upper(str) Parameter:Str: string to be converted Returns:This function returns the string in upper case. Example 1Select upper('TheDeveloperBlog'); Output: Example 2Select upper('mysql'); Output:
Next TopicMySQL String
|