SAP HANA Reference
UCASE

Syntax

 UCASE (str)

Description

Converts all characters in string str to uppercase.

Note:
The UCASE function is identical to the UPPER function.

Example

 SELECT  UCASE ('Ant') "ucase" FROM DUMMY;
 
 ucase
 ANT