copy table from 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;