MySQL新增欄位和修改欄位的方法
阿新 • • 發佈:2019-02-16
1、登入資料庫
>mysql -u root -p 資料庫名稱
2、查詢所有資料表
>show tables;
3、查詢表的欄位資訊
>desc 表名稱;
4.1修改表名
alter table table1 rename table2;
4.2新增表字段
alter table table1 add transactor varchar(10) not Null;
alter table table1 add id int unsigned not Null auto_increment primary key
4.3修改某個表的欄位型別及指定為空或非空
>alter table 表名稱 change 欄位名稱 欄位名稱 欄位型別 [是否允許非空];
>alter table 表名稱 modify 欄位名稱 欄位型別 [是否允許非空];
>alter table 表名稱 modify 欄位名稱 欄位型別 [是否允許非空];
4.4修改某個表的欄位名稱及指定為空或非空
>alter table 表名稱 change 欄位原名稱 欄位新名稱 欄位型別 [是否允許非空]
4.5如果要刪除某一欄位,可用命令:
ALTER TABLE mytable DROP 欄位名