Working with REVERSE () function in SQL Server 2008 using PL/SQL.
Author: Shehzad Hemani
In this simple article you will learn that how to work with REVERSE () function in SQL Server using PL/SQL.
REVERSE () is the most commonly used function of the SQL Server to reverse the given string. It takes a string input and returns the same string in the reverse order. It is used to speed up your string operation.
Syntax:
REVERSE (string)
Example:
SELECT
REVERSE('PSAveD')
AS
ReversedString
Output:
Reversed String
------------------------
DevASP