On this pageREVERSEReturns the string str with the order of the characters reversed.SyntaxREVERSE(s)CopyArgumentsArgumentsDescriptionsThe string value.Return TypeA String data type value.Examplesmysql> SELECT REVERSE('abc');+----------------+| REVERSE('abc') |+----------------+| cba |+----------------+Copy