I am using following query to bulk insert from one table to another.
INSERT INTO billitems SELECT * FROM billitems_old;
I want that if insert fails on any row, it must skip that row and proceed. Is there anything that I can include in the above query to skip errors.