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. Syntaxselect reverse(str); Parameterstr: string to be reversed ReturnsThis function returns a string with the characters in reverse order. Example 1Select reverse('TheDeveloperBlog'); Output: Example 2Select reverse('mysql); Output:
Next TopicMySQL String
|