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

REPLICATE function [String] Next Page

REVERSE function [String]


Returns the reverse of a character expression.

Syntax

REVERSE( string-expression )

Parameters

string-expression    The string to be reversed.

Remarks

This function supports NCHAR inputs and/or outputs.

See also
Standards and compatibility
Example

The following statement returns the value cba.

SELECT REVERSE( 'abc' );