sounds like this
UPDATE table
SET Col = '2013' + Col
in case Col is of numeric type (int,decimal,numeric,flost etc) then use
UPDATE table
SET Col = '2013' + CAST(Col AS varchar(30))
------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/