Problem Description
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.
AI-Generated Solution
Powered by LMSouq AI · GPT-4.1-mini
Analyzing problem and generating solution…
Was this solution helpful?