mysql alter table change column order code example
Example 1: how to move a column to different spot mysql
ALTER TABLE TableEx MODIFY COLUMN colName VARCHAR(50) AFTER colName2;
Example 2: update column mysql with alter
ALTER TABLE table_name
MODIFY column_name column_definition
[ FIRST | AFTER column_name ];