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

TEXTPTR function [Text and image] Next Page

TO_CHAR function [String]


Converts character data from any supported character set into the CHAR character set for the database.

Syntax

TO_CHAR( string-expression [, source-charset-name ] )

Parameters

string-expression    The string to be converted.

source-charset-name    The character set of the string.

Remarks

If source-charset-name is specified, then this function is equivalent to:

CAST( CSCONVERT( CAST( string-expression AS BINARY ),
 'db_charset', source-charset-name )
   AS CHAR );

For more information about db_charset, see CSCONVERT function [String].

If source-charset-name is not specified, then this function is equivalent to:

CAST( string-expression AS CHAR );
See also
Standards and compatibility
Example

If you have a BINARY value containing data in the cp850 character set, the following statement converts the data to the CHAR character set and data type:

SELECT TO_CHAR( 'cp850_data', 'cp850' );