Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » SQL Anywhere Server - SQL Reference » SQL Functions » Alphabetical list of functions

UNISTR function [String] Next Page

UPPER function [String]


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

Syntax

UPPER( string-expression )

Parameters

string-expression    The string to be converted to uppercase.

Remarks

The UCASE function is similar to the UPPER function.

See also
Standards and compatibility
Example

The following statement returns the value CHOCOLATE.

SELECT UPPER( 'ChocoLate' );