how to copy table one table and paste in another database mysql code example
Example: mysql copy table to another table
CREATE TABLE new_table
SELECT col1, col2, col3
FROM
existing_table
WHERE
conditions;
CREATE TABLE new_table
SELECT col1, col2, col3
FROM
existing_table
WHERE
conditions;