Loading...
Reverse a string. This function returns the string with the order of its characters reversed.
REVERSE(str)
Returns the string str with the order of the characters reversed.
str
This page is licensed: GPLv2, originally from
SELECT REVERSE('desserts'); +---------------------+ | REVERSE('desserts') | +---------------------+ | stressed | +---------------------+