I need to move the position of existing columns (for better visibility).
How can this be done without affecting the data?
The only way I know is to change the column. You would first extract your column definition using SHOW CREATE TABLE and issue an ALTER TABLE:
ALTER TABLE foo
CHANGE COLUMN bar
bar COLUMN_DEFINITION_HERE
FIRST;
Or if you want it after a certain other column:
... AFTER OTHER_COLUMN;
Based on @VKGS answer:
If your table called language is:
|---------------------|------------------|
| description | name |
|---------------------|------------------|
| object ... | java |
|---------------------|------------------|
| javascript... | nodejs |
|---------------------|------------------|
And you want to make the column name the first column or before description, execute this:
ALTER TABLE language MODIFY description varchar(100) AFTER name;
Don't forget type of the column.
Here is the sql query
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 withour modifyig any things click save. It will show you the sql. Copy the sql and just add *AFTER other_column* at the end. It will be all.
If you like to bring the *misplaced_column* to the first position then ALTER TABLE table_name MODIFY COLUMN misplaced_column Column-definition FIRST;
However, It seems it is a duplicate question.
Modify also works. Have a look:
ALTER TABLE foo MODIFY bar bartype AFTER baz;