If you are using MySQL, you got an error because there is no SELECT * INTO statement that creates backup tables.
Did you bother to look at the link I provided?
INSERT INTO backupTable (YourColumn1, YourColumn2...etc.)
SELECT NewsColumn1, NewsColumn2, etc FROM originalTable WHERE timestampColumn like '2002%'
Then
DELETE FROM originalTable
WHERE timestampColumn like '2002%'
You need to change YourColumn1, etc to the names you are using.