Mysql auto-update table

Hello, I want to transfer information from table to another with separate databases, automatically. Is any chance to get this done? :\
 
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;
 
Back
Top