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, 1050🔥, 0💬
Popular Posts:
How to obtain the number of rows found by the last SELECT statement using the FOUND_ROWS() function?...
What To Do If the StartDB.bat Failed to Start the XE Instance in Oracle? If StartDB.bat failed to st...
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
How to download and install Microsoft .NET Framework Version 2.0 in SQL Server? .NET Framework Versi...
How To Use "IF ... ELSE IF ..." Statement Structures in SQL Server Transact-SQL? "IF ... ELSE IF ......