How to Replace Substrings in PostgreSQL
The replace()
function is used to change all occurrences of a certain substring to a new string. It accepts three parameters - the main string, the substring to be replaced, and the new string to be used.
select replace('This is old, really old', 'old', 'new');
replace
-------------------------
This is new, really new
Previous
How to Trim StringsShared queries and folders ✅ Version history ✅ One-click connection to PostgreSQL ✅
Get more done, together, with PopSQL and PostgreSQL