Mega Code Archive

 
Categories / MySQL Tutorial / String Functions
 

REVERSE(str)

mysql> mysql> SELECT REVERSE('abc'); +----------------+ | REVERSE('abc') | +----------------+ | cba            | +----------------+ 1 row in set (0.02 sec) mysql>