Skip to main content
How are we doing? Please help us improve Stack Overflow. Take our short survey

All Questions

Tagged with
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 ...
crmpicco's user avatar
  • 17.3k