How can I update a text column, adding and/or removing text in the middle of the string?
Examples
You can use overlay for the first:
select overlay('0123456' placing 'abc' from 4 for 0)
And for the second as well:
select overlay('0123456' placing '' from 4 for 3)