I have 882 rows in my Table the columns are (StartDate, EndDate, Capacity, PitchType_Skey, Site_Skey) and these rows are based on 2010 dates, what I would like to do is insert another 882 rows for the year 2011, but I cannot figure how to do this, can you help. I have started my Insert Statement:
INSERT INTO Cap1 (StartDate, EndDate, Capacity, PitchType_Skey, Site_Skey)
SELECT
Add 1 YEAR to StartDate,
Add 1 YEAR to EndDate,
Capacity,
Pitch_Type_Skey,
Site_Skey
FROM Cap1
WHERE YEAR StartDate = 2010
Thanks in Advance
Wayne