I want to copy a table\'s schema as well as the data within that table to another database table in another database on a live server. How could I do this?
If you just want Structure to be copied simply use
CREATE TABLE Db_Name.table1 LIKE DbName.table2;
Ps > that will not copy schema and data