It really depends on the whole data structure, you can use REGEX or String functions .
For example, with your sample data, the last 4 digits on the right is the year, so use
SELECT RIGHT(fieldname, 4) FROM table
will work. If this template does not work, you should either use concat, either start splitting them or write a REGEX statement.
If RIGHT will work, you can do INSERT SELECT
INSERT INTO table (yearcolumn) SELECT RIGHT(fieldname, 4) FROM table
Steve source share