Currently I am having the following MySQL table: Employees (empID, empName, department);

I want to change the table to the following: Employees (empID, department, empName);

How can this be done using ALTER statements?

Note: I want to change only column positions.

4 Answers
4

Leave a Reply

Your email address will not be published. Required fields are marked *