[升級需要用到的] mysql更新表 增加、刪除、修改表欄位

TA遠方發表於2019-07-22

1、新增表欄位

alter table tab1 add field_name varchar(10) default null comment 'xxx';

alter table tab1 add id int unsigned not null auto_increment primary key;

alter table tab1 add (field1 varchar(10), field2 varchar(20));

2、修改表欄位

alter table tab1 modify column field_name; //修改一個欄位的型別

alter table user CHANGE new1 new4 int;  //修改一個欄位的名稱,此時一定要重新指定該欄位的型別

3、刪除表欄位

alter table tab1 drop column field_name;

4、修改表名

rename table old_tabname to new_tabname;

5、檢查表欄位 待補充... PS 檢查表欄位是否存在,存在就新增欄位, 不存在不處理

6、遍歷表欄位

pragma table_info(old_tablename)

其中 old_tablename 是表格名,要遍歷的表,另外需要存在 table_info 模型類 PS 遍歷表所有存在欄位,用於升級前檢查

參考來源: blog.csdn.net/spirit_8023…

相關文章