How can I change the position of a certain existing column in MySQL table?
Ex: I want to move the column username from its current position to
Simple use this Query
alter table `admin` modify id int(11) first;
or
alter table `admin` modify id int(11) after `some_column`;