i'm trying to return a column with every instance of a number replaced by '!'.
the following code only replaces the first instance from each row:
select project, commits, contributors, regexp_replace(address, '[0-9]', '!') as address
from repositories
1BcJBCAYqW9 should return as so !BcJBCAYqW!
but the output I get is !BcJBCAYqW9,
where the second digit does not change.