ASA SQL Reference
SQL Functions
Alphabetical list of functions
Converts all characters in a string to upper case.
UCASE ( string-expression )
string-expression The string to be converted to upper case.
SQL/92 Vendor extension.
SQL/99 Vendor extension.
Sybase UCASE is not supported by Adaptive Server Enterprise, but UPPER provides the same feature in a compatible manner.
The following statement returns the value CHOCOLATE.
SELECT UCASE( 'ChocoLate' )