Monthly Archives: August 2008

How to move a column in MySQL

Move a column after some other column mysql> ALTER TABLE mytable MODIFY COLUMN mycolumn INT AFTER someothercolumn; Move a column to the first position mysql> ALTER TABLE mytable MODIFY COLUMN mycolumn INT FIRST;

7 Comments