obviously you didn't prepart your database for the delete, insert clause... you can do this by first figuring out the name of your database, then type this at the mysql prompt
drop database YOUR_DATABASE_NAME_HERE;
that will ready your database for the drop function which deletes and inserts new records.
good luck!