Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 499 Bytes

File metadata and controls

32 lines (22 loc) · 499 Bytes
description
This section contains reference documentation for the REPLACE function.

REPLACE

replace all instances of find with replace in input

Signature

REPLACE(col, find, replace)

Usage Examples

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