
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Which function in MySQL is used to reverse a particular string?
MySQL REVERSE() function can be used to reverse a string. Following example will demonstrate it −
mysql> Select REVERSE('Tutorialspoint'); +---------------------------+ | REVERSE('Tutorialspoint') | +---------------------------+ | tniopslairotuT | +---------------------------+ 1 row in set (0.00 sec) mysql> Select Reverse('10-11-12'); +---------------------+ | Reverse('10-11-12') | +---------------------+ | 21-11-01 | +---------------------+ 1 row in set (0.00 sec)
- Related Questions & Answers
- Which PHP function is used to select a MySQL database?
- Which PHP function is used to create a MySQL table?
- MySQL BIT_LENGTH() function is used for which purpose?
- Which CSS property is used to run Animation in Reverse Direction?
- Which PHP function is used to disconnect from MySQL database connection?
- Which PHP function is used to delete an existing MySQL table?
- Function to reverse a string JavaScript
- Which PHP function is used to create a new database?
- Which function in MySQL is used to add white spaces between two strings?
- Which PHP function is used to release cursor memory associated with MySQL result?
- Which PHP function is used to establish MySQL database connection using PHP script?
- Which PHP function is used to insert data into an existing MySQL table?
- String reverse vs reverse! function in Ruby
- Which function is a synonym of MySQL LENGTH() function?
- For timestamp, which datatype is used in MySQL?
Advertisements