Asked 1 years ago
31 May 2022
Views 509
david

david posted

what is the use of REVERSE in MySQL?

what is REVERSE in MySQL ? how to use function REVERSE in MySQL?
david

david
answered Jun 2 '22 00:00

The REVERSE() function can be used to reverse the given string in MySQL.
The REVERSE() function returns the reversed string.


select REVERSE("TIME")//EMIT

as you can see above query reverse the string "TIME" to "EMIT"
Post Answer