Easy way to re-order columns?

后端 未结 8 992
粉色の甜心
粉色の甜心 2020-12-24 06:36

I\'m working on a database. On most of the tables, the column order is not what I would expect, and I would like to change it (I have the permission). For example, the prima

8条回答
  •  遥遥无期
    2020-12-24 07:18

    Use an ALTER TABLE ... MODIFY COLUMN statement.

    ALTER TABLE table_name MODIFY COLUMN misplaced_column INT(11) AFTER other_column;
    

提交回复
热议问题