Mysql 修改表結構

1.添加列 alter table 表名 add 列名 類型; alter table tb3 add region float; alter table tb3 add width float;   2.刪除列 alter table 表名 drop 列名; alter table tb3 drop width; 3.修改列 只改類型 ------- modify alter table 表名
相關文章
相關標籤/搜索