how to copy the contents of one table to another in mysql using command line 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;