Answers for "mysql alter table change column order"

SQL
1

update column mysql with alter

ALTER TABLE table_name
  MODIFY column_name column_definition
    [ FIRST | AFTER column_name ];
Posted by: Guest on January-28-2021
0

how to move a column to different spot mysql

ALTER TABLE TableEx MODIFY COLUMN colName VARCHAR(50) AFTER colName2;
Posted by: Guest on January-08-2020

Code answers related to "mysql alter table change column order"

Code answers related to "SQL"

Browse Popular Code Answers by Language