UCASE/UPPER Functions

Description

The UCASE and UPPER functions convert lowercase characters that are included in a character string to uppercase characters. Note that the UPPER function may not work properly in character sets that are not supported by CUBRID. For details about the character sets supported by CUBRID, see Definition and Characteristics.

Syntax

UCASE ( string )

UPPER ( string )

 

string :

character string

NULL

Example

SELECT UPPER('');

 upper('')

======================

  ''

 

SELECT UPPER(NULL);

 upper(null)

======================

  NULL

 

SELECT UPPER('Cubrid');

 upper('Cubrid')

======================

  'CUBRID'