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
Copy MySQL Table
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>




