arrow-left

All pages
gitbookPowered by GitBook
1 of 1

Loading...

replace

This section contains reference documentation for the REPLACE function.

replace all instances of find with replace in input

hashtag
Signature

REPLACE(col, find, replace)

hashtag
Usage Examples

value
value
SELECT REPLACE('Hello, World', 'Hello', 'Goodbye') AS value
FROM ignoreMe

Goodbye, World

SELECT REPLACE('Hello, World', 'Hellow', 'Goodbye') AS value
FROM ignoreMe

Hello, World