I have a table column containing values which I would like to remove all the hyphens from. The values may contain more than one hyphen and vary in length.
Example: f
You can use this.
update table set column = format('%s%s', left(column, 3), right(column, -6));
Before:
After: