# replace

replace all instances of `find` with `replace` in input

## Signature

> REPLACE(col, find, replace)

## Usage Examples

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

| value          |
| -------------- |
| Goodbye, World |

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

| value        |
| ------------ |
| Hello, World |
