C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL REVERSE(str) FunctionThe REVERSE() is a String function of MySQL. This method returns the given string in reverse order. Syntax
select reverse(str); Parameter
str: string to be reversed ReturnsThis function returns a string with the characters in reverse order. Example 1
Select reverse('TheDeveloperBlog');
Output:
Example 2
Select reverse('mysql);
Output:
Next TopicMySQL String
|