SQL FunctionsString FunctionsREVERSEOn this pageREVERSEReturns the string str with the order of the characters reversed.SyntaxREVERSE(<str>)ArgumentsArgumentsDescription<str>The string value.Return TypeVARCHARExamplesSELECT REVERSE('abc');+----------------+| REVERSE('abc') |+----------------+| cba |+----------------+