All Questions
1 question
20
votes
4
answers
42k
views
MySQL efficiently copy all records from one table to another
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 product
Typically, the product table will hold ...