Mega Code Archive

 
Categories / MSSQL / String Functions
 

REVERSE()

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