HomeSQL FunctionsString FunctionsREVERSE本页总览REVERSEReturns the string str with the order of the characters reversed. Syntax REVERSE(<str>) Arguments ArgumentsDescription<str>The string value. Return Type VARCHAR Examples SELECT REVERSE('abc');+----------------+| REVERSE('abc') |+----------------+| cba |+----------------+