how to move a column to different spot mysql

Solutions on MaxInterview for how to move a column to different spot mysql by the best coders in the world

showing results for - "how to move a column to different spot mysql"
Giacomo
27 Oct 2016
1ALTER TABLE TableEx MODIFY COLUMN colName VARCHAR(50) AFTER colName2;