Copy MySql specific table rows to another table
The safest way to do it is to fully specify the columns both for insertion and extraction. You can copy the schema of the table by this command. CREATE TABLE new_table LIKE old_table; You can disable index building in start and enable indexes in end. This will speed up the process in...