UCASE function [String]

Converts all characters in a string to uppercase. This function is identical to the UPPER function.

Syntax
UCASE( string-expression )
Parameters
  • string-expression   The string to be converted to uppercase.

Returns

VARCHAR

NVARCHAR

LONG VARCHAR

LONG NVARCHAR

See also
Standards and compatibility
  • SQL/2003   Vendor extension.

Example

The following statement returns the value CHOCOLATE.

SELECT UCASE( 'ChocoLate' );