I am facing a problem regarding inserting data from one table to another table, with the same table structure, but with different column positions.
Example:
Tabl
It's simple just reorder columns during insert:
INSERT INTO `emp1` (Name, Salary, Age) SELECT Name, Salary, Age FROM `emp2`;