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