You can change the order of columns if you like.
If your username column is varchar(255) then:
alter table `mytable`
change column username username varchar(255) after `somecolumn`;
If it helps to better read a table definition, then why not?
You can change the order of columns if you like.
If your username column is varchar(255) then:
alter table `mytable`
change column username username varchar(255) after `somecolumn`;
If it helps to better read a table definition, then why not?