方法:1、用「alter table 表名modify column column名dateType」語句修改資料型別;2、用「alter table 表名change 舊column名新column名類型(長度)」語句修改名稱。
本教學操作環境:windows10系統、mysql8.0.22版本、Dell G3電腦。
1、修改欄位的資料類型
alter table table_name modify column column_name dateType
範例如下:
2、修改欄位名稱
alter table table_name change old_column_name new_column_name int(11);
#擴充知識:
##1、增加唯一鍵alter table table_name add unique key `uniq_column` (`column`);2、新增欄位
alter table table_name add column column_name datatype3、刪除欄位
ALTER TABLE table_name DROP COLUMN column_name4、增加欄位
----alter table students add column 列名 列属性 alter table students add column 语文 varchar(4) NOT NULL ;----預設加入到列結尾
alter table students add column 数学 varchar(4) NOT NULL after 出生日期 ;
5、刪除列
----alter table 表名 drop column 列名 alter table students drop column 成绩;
推薦學習:
mysql影片教學以上是mysql怎麼修改column的詳細內容。更多資訊請關注PHP中文網其他相關文章!