Skip to content

UCASE

  • string: This is the string value that should be converted to uppercase letters. It can be a column name, a literal string, or a combination of column names and literal strings.
SELECT UCASE('Hello World!');
'HELLO WORLD!'

In the above example, the UCASE() function is used to convert the string ‘Hello World!’ to uppercase, and the result ‘HELLO WORLD!’ is displayed.