Mysql中的alter命令
阿新 • • 發佈:2021-02-05
技術標籤:MYSQL
mysql中的alter命令用於修改資料表表名或修改資料表中的欄位:
修改資料表名:
alter table runoob_tbl rename to runoob_table;
新增、刪除或者修改資料表字段:
新增欄位
alter table runoob_table add num bigint;
show columns from runoob_table;
修改欄位名稱:
alter table runoob_table change num tnum bigint;
show columns from runoob_table;
修改欄位屬性:
alter table runoob_table modify num tinyint;
show columns from runoob_table;
修改欄位預設值:
alter table runoob_table alter tnum set default 100;
insert runoob_table(runoob_title,runoob_author) values("PS","RUNOOB");
select * from runoob_table;