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É           |
+---------------+---------------+

Last modified: February 27, 2023

Was this article helpful?