REVERSE: takes the string input, and reverses the order of the information : REVERSE « String Functions « SQL Server / T-SQL






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


1> -- REVERSE: takes the string input, and reverses the order of the information.
2>
3> SELECT REVERSE("www.java2s.com")
4> GO

--------------
moc.s2avaj.www

(1 rows affected)
1>
           
       








Related examples in the same category

1.REVERSE(): reverses the characters in a string