I have a table named "t", with column, "x". It looks as follows:
x
------
1.Fred
2.Joe
3.Hank
.
.
.
500.Mary
I need to take the column and remove everything before the name, for example the "1." before Fred.
I have tried
update $2_'string x from t
but that only works for numbers 1-9 not once I get to the larger numbers. Is there a way to remove the "." and everything before it?