This function returns a string of the same size as the original string, with the elements in reverse order.
REVERSE(<string>)
<string>
SELECT REVERSE('abcd') AS res
Returns: 'dcba'
'dcba'