這篇文章主要為大家詳細介紹了電腦二級考試MySQL知識點,詳細介紹了mysql中alter指令的使用方法,具有一定的參考價值,有興趣的夥伴們可以參考一下
mysql中alter指令的用法,用來編輯表格結構。具體內容如下
修改欄位類型
##
mysql> alter table employee change depno depno int(5) not null;加上索引
mysql> alter table 表名 add index 索引名 (字段名1[,字段名2 …]);範例:
mysql> alter table employee add index emp_name (name);加上主關鍵字的索引
mysql> alter table 表名 add primary key (字段名);範例:
mysql> alter table employee add primary key(id);加唯一限制條件的索引
##
mysql> alter table 表名 add unique 索引名 (字段名);
mysql> alter table employee add unique emp_name2(cardnumber);
mysql> show index from 表名;
mysql> show index from employee;
mysql> alter table 表名 drop index 索引名;
刪除某個索引
##
mysql>alter table employee drop index emp_name;範例:
mysql> ALTER TABLE table_name ADD field_name field_type;修改表格:增加欄位:
mysql> SELECT * FROM table_name;檢視表格:
mysql> ALTER TABLE table_name CHANGE old_field_name new_field_name field_type;修改原始欄位名稱及類型:
ALTER TABLE table_name DROP field_name###刪除欄位:####################################################### #rrreee
以上是mysql中關於alter指令的使用詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!