REVERSE(): reverses the characters in a string : REVERSE « String Functions « SQL Server / T-SQL






REVERSE(): reverses the characters in a string


1>
2> -- REVERSE(): reverses the characters in a string
3> SELECT REVERSE('aaabbb')
4> GO

------
bbbaaa

(1 rows affected)
1>
           
       








Related examples in the same category

1.REVERSE: takes the string input, and reverses the order of the information