Is there a more-efficent, less laborious way of copying all records from one table to another that doing this:
INSERT INTO product_backup SELECT * FROM produ
DROP the destination table:
DROP
DROP TABLE DESTINATION_TABLE; CREATE TABLE DESTINATION_TABLE AS (SELECT * FROM SOURCE_TABLE);