Returns the string str with the order of the characters reversed.
REVERSE(<str>)
<str>
VARCHAR
SELECT REVERSE('abc'); +----------------+ | REVERSE('abc') | +----------------+ | cba | +----------------+