How do I change the order of my table fields without deleting the field and re-inserting it, using PHP myAdmin?
ALTER TABLE `table_name` MODIFY `column_you_want_to_move` DATATYPE AFTER `column`
DATATYPE is something like DATETIME or VARCHAR(20) ..etc