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, 1039🔥, 0💬
Popular Posts:
Can You Drop an Index Associated with a Unique or Primary Key Constraint in Oracle? You can not dele...
How To Verify a User name with SQLCMD Tool in SQL Server? The quickest way to verify a user name in ...
How to put statements into a statement block in SQL Server Transact-SQL? You can put statements into...
What is dba.FYIcenter.com Website about? dba.FYIcenter.com is a Website for DBAs (database administr...
What are DDL (Data Definition Language) statements for tables in SQL Server? DDL (Data Definition La...