SQL FunctionsString FunctionsREVERSEOn this pageREVERSEReturns the string str with the order of the characters reversed.SyntaxREVERSE(s)ArgumentsArgumentsDescriptionsThe string value.Return TypeA String data type value.ExamplesSELECT REVERSE('abc');+----------------+| REVERSE('abc') |+----------------+| cba |+----------------+