I\'m working on a database. On most of the tables, the column order is not what I would expect, and I would like to change it (I have the permission). For example, the prima
Use an ALTER TABLE ... MODIFY COLUMN statement.
ALTER TABLE table_name MODIFY COLUMN misplaced_column INT(11) AFTER other_column;