最佳答案
目前我有以下MySQL表:Employees (empID, empName, department);
我想改变表如下:Employees (empID, department, empName);
如何使用ALTER
语句来做到这一点?
注意:我只想改变列的位置。