Friday, August 6, 2010

How to do duplicate a table of MySQL

Solved
CREATE TABLE table2 LIKE table1;
INSERT INTO table2 SELECT * FROM table1;

Refer

No comments:

Post a Comment

Popular Posts