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
ALTER TABLE `table` CHANGE COLUMN `field` `field` INT(11) AFTER `field2`;