ALTER TABLE table_name MODIFY COLUMN misplaced_column Column-definition AFTER other_column;
Here in Column-definition is full column definition. To see the column definition if you are using phpMyAdmin click on structure tab. Then click on change link on desired column. Then without modifying any thing click save. It will show you the sql. Copy the sql and just add AFTER other_column at the end.
If you like to bring the misplaced_column to the first position then:
ALTER TABLE table_name MODIFY COLUMN misplaced_column Column-definition FIRST;