J junior Jul 21, 2012 #1 Hello, I want to transfer information from table to another with separate databases, automatically. Is any chance to get this done? :\
Hello, I want to transfer information from table to another with separate databases, automatically. Is any chance to get this done? :\
Z zhoopin Jul 28, 2012 #2 I think that it's better to visit MySQL's communities. Anyway... Code: CREATE TABLE table_copy LIKE table_original; INSERT INTO table_copy SELECT * FROM table_original;
I think that it's better to visit MySQL's communities. Anyway... Code: CREATE TABLE table_copy LIKE table_original; INSERT INTO table_copy SELECT * FROM table_original;