Last updated 3 years ago
Was this helpful?
replace all instances of find with replace in input
find
replace
REPLACE(col, find, replace)
SELECT REPLACE('Hello, World', 'Hello', 'Goodbye') AS value FROM ignoreMe
Goodbye, World
SELECT REPLACE('Hello, World', 'Hellow', 'Goodbye') AS value FROM ignoreMe
Hello, World
This section contains reference documentation for the REPLACE function.