Collections:
REVERSE() - Reversing String
How to reverse a given string using the REVERSE() function?
✍: FYIcenter.com
REVERSE(str) is a MySQL built-in function that
repeats a substring in a given string.
For example:
SELECT REVERSE('oprah');
-- +------------------+
-- | REVERSE('oprah') |
-- +------------------+
-- | harpo |
-- +------------------+
Reference information of the REVERSE() function:
REVERSE(str): modstr Returns the string str with the order of the characters reversed, or NULL if str is NULL. Arguments, return value and availability: str: Required. The given string to be reversed. modstr: Return value. The reversed string. Available since MySQL 4.0.
⇐ REPLACE() - Replacing Substring
2023-11-13, 997🔥, 0💬
Popular Posts:
How To Drop a Stored Procedure in Oracle? If there is an existing stored procedure and you don't wan...
How To Format Time Zone in +/-hh:mm Format in SQL Server Transact-SQL? From the previous tutorial, y...
How To Present a Past Time in Hours, Minutes and Seconds in MySQL? If you want show an article was p...
How To Look at the Current SQL*Plus System Settings in Oracle? If you want to see the current values...
What Is Oracle in Oracle? Oracle is a company. Oracle is also a database server, which manages data ...