Click to Rate and Give Feedback
MSDN
MSDN Library
SQL Server
SQL Server 2008
Database Engine
Technical Reference
 REVERSE (Transact-SQL)
Other versions are also available for the following:
SQL Server 2008 Books Online
REVERSE (Transact-SQL)

Returns the reverse of a character expression.

Topic link icon Transact-SQL Syntax Conventions

REVERSE ( character_expression )
character_expression

Is an expression of character data. character_expression can be a constant, variable, or column of either character or binary data.

varchar or nvarchar

character_expression must be of a data type that is implicitly convertible to varchar. Otherwise, use CAST to explicitly convert character_expression.

The following example returns all contact first names with the characters reversed.

USE AdventureWorks;
GO
SELECT FirstName, REVERSE(FirstName) AS Reverse
FROM Person.Contact
WHERE ContactID < 5
ORDER BY FirstName;
GO

Here is the result set.

FirstName      Reverse
-------------- --------------
Catherine      enirehtaC
Gustavo        ovatsuG
Humberto       otrebmuH
Kim            miK
(4 row(s) affected)
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker