In a single statement you can copy the structure and data from one table in MySQL and populate the results of a query into the new table.
CREATE TABLE tblDestination SELECT * FROM tblSource;
In a single statement you can copy the structure and data from one table in MySQL and populate the results of a query into the new table.
CREATE TABLE tblDestination SELECT * FROM tblSource;