DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Benoit has posted 48 posts at DZone. View Full User Profile

Copy MySQL Table

05.13.2008
| 3344 views |
  • submit to reddit
        
CREATE TABLE table_destination SELECT * FROM table_source ;

CREATE TABLE table_destination LIKE table_source ;
INSERT INTO table_destination SELECT * FROM table_source ;

Source: <a href="http://www.ab-d.fr/">Asselin Benoit Development ( MySQL, SQL )</a> & <a href="http://www.agenceici.com">Agence ici, agence de communication</a>