Forum Moderators: coopster
I have to admit I don't see the necessity for moving them, you can select them in anyorder you want.
In MySQL Version 3.22 or later, you can useorFIRSTto add a column at a specific positionADD ... AFTER col_name
within a table row. The default is to add the column last.
From MySQL Version 4.0.1, you can also use theandFIRSTkeywords inAFTERorCHANGE.MODIFY
However, in this particular case, you may want to use this type of approach:
How To Change the Order of Columns in a Table [mysql.com]