Collections:
REPLACE() - Replacing Substring
How to replace a substring in a given string using the REPLACE() function?
✍: FYIcenter.com
REPLACE(str, from_str, to_str) is a MySQL built-in function that
repeats a substring in a given string.
For example:
SET @str = 'dba.FYIcenter.com'; SELECT REPLACE(@str, 'dba', 'dev'); -- +-----------------------------+ -- | REPLACE(@str, 'dba', 'dev') | -- +-----------------------------+ -- | dev.FYIcenter.com | -- +-----------------------------+
Reference information of the REPLACE() function:
REPLACE(str, from_str, to_str): modstr Returns the string str with all occurrences of the string from_str replaced by the string to_str. REPLACE() performs a case-sensitive match when searching for from_str. Arguments, return value and availability: str: Required. The given string to be modified. from_str: Required. The substring to be replaced. to_str: Required. The string to be replaced with. modstr: Return value. The modified string. Available since MySQL 4.0.
⇒ REVERSE() - Reversing String
2023-11-13, 1410🔥, 0💬
Popular Posts:
What Is a Parameter File in Oracle? A parameter file is a file that contains a list of initializatio...
What is dba.FYIcenter.com Website about? dba.FYIcenter.com is a Website for DBAs (database administr...
How To Provide Default Values to Function Parameters in SQL Server Transact-SQL? If you add a parame...
What Happens to an Arithmetic Operation with Two Different Data Types in SQL Server Transact-SQL? Wh...
How to detect the collation coercibility associated to a given character string using the COERCIBILI...