On this pageREVERSEReturns the string str with the order of the characters reversed.Syntax​REVERSE(s)CopyArguments​ArgumentsDescriptionsThe string value.Return Type​A String data type value.Examples​mysql> SELECT REVERSE('abc');+----------------+| REVERSE('abc') |+----------------+| cba |+----------------+Copy