MySQL alter修改語句
1.alter用法修改資料表的名字
rename語法: 修改資料表的名字rename 舊的表 to 新的表;
mysql> rename table tanks to Tanks;
利用alter命令修改資料表
語法:alter table 當前表名 rename to 新表名;
mysql> alter table Tanks rename to TANKS;
檢視tanks的表結構
mysql> desc tanks;
+--------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------+--------------+------+-----+---------+-------+
| id | int(11) | NO | PRI | 0 | |
| name | varchar(100) | NO | | NULL | |
| skills | varchar(255) | NO | | NULL | |
| price | int(11) | NO | | NULL | |
+--------+--------------+------+-----+---------+-------+
4 rows in set (0.01 sec)
檢視建立table的語句
mysql> show create table tanks;
+-------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+-------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tanks | CREATE TABLE tanks
id
int(11) NOT NULL DEFAULT '0',name
varchar(100) NOT NULL,skills
varchar(255) NOT NULL,price
int(11) NOT NULL,PRIMARY KEY (
id
)) ENGINE=InnoDB DEFAULT CHARSET=utf8 |
+-------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)
mysql>
2.修改資料表的欄位
Introductrion 具體的介紹資訊
新增欄位
Introduction 具體的介紹資訊
alter指令
語法 :
alter table 表名 add 欄位名 欄位的資料型別(長度) 額外的欄位屬性;
alter table tanks add introduction varchar(255) not null;
3.新增指定位置的欄位
summoner_skills ENUM('flush','fire') not null default 'flush' # flush 閃現 ghost 幽靈疾步
插入到資料表中
新增alter指令,指定插入到那個欄位的後面
alter table tanks add summoner_skills ENUM('flush','fire') not null default 'flush' after skills;
4.一次性新增多個欄位
英雄的陣營、圖片頭像
camp
pic
修改表字段的語句,指定插入在price欄位後面
alter table tanks add camp varchar(50) after price, add pic varchar(255) after camp;
5.修改欄位的型別
語句 pic的varchar改為char型別
alter table 表名 change 舊欄位名 新欄位名 新資料型別;
alter table tanks change pic pic_url char(20);
6.alter刪除table的欄位
alter table 表名 drop 欄位;
alter table tanks drop introduction;