UCASE
Converts the given string to uppercase.
Syntax
UCASE (str) UPPER (str)
Arguments
str Any string object
Return Type
String
Examples
SELECT UCASE('olé'), UPPER('olé'); **** +---------------+---------------+ | UCASE('olé') | UPPER('olé') | +---------------+---------------+ | OLÉ | OLÉ | +---------------+---------------+