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. Syntax
select ucase(str) Parameter:
str: string to be convert Example 1
Select ucase('TheDeveloperBlog');
Output:
Example 2
Select ucase('mysql');
Output:
Next TopicMySQL String
|