Mysql alter語句的用法

2022-08-13 07:57:09 字數 880 閱讀 9625

1:刪除列

alter table 【表名字】 drop 【列名稱】

2:增加列

alter table 【表名字】 add 【列名稱】 int not null  comment '注釋說明'

3:修改列的型別資訊

alter table 【表名字】 change 【列名稱】【新列名稱(這裡可以用和原來列同名即可)】 bigint not null  comment '注釋說明'

4:重新命名列

alter table 【表名字】 change 【列名稱】【新列名稱】 bigint not null  comment '注釋說明'

5:重新命名表

alter table 【表名字】 rename 【表新名字】

6:刪除表中主鍵

alter table 【表名字】 drop primary key

7:新增主鍵

alter table sj_resource_charges add constraint pk_sj_resource_charges primary key (resid,resfromid)

8:新增索引

alter table sj_resource_charges add index index_name (name);

9: 新增唯一限制條件索引

alter table sj_resource_charges add unique emp_name2(cardnumber);

10: 刪除索引

alter table tablename drop index emp_name;

11.修改預設內容

alter table tablename alter column role_id set default 1;

MySQL Alter語句 運用

修改表名 mysql alter table student rename person 這裡的student是原名,person是修改過後的名字 用rename來重新命名,也可以使用rename to 修改欄位的資料型別 mysql alter table person modify name v...

mysql ALTER 語句的使用

基本語法 alter online offline ignore tabletbl name alter specification alter specification partition options alter specification table options add column ...

mysql alter用法場景

mysql中alter主要有兩種使用場景,第一種是修改表資訊如表名等,第二種是修改表字段資訊,如新增字段,修改欄位等。第二種使用較多。第一種修改表資訊場景如下 1 修改表名 2 修改表注釋 第二種修改表字段場景如下 1 修改字段型別和注釋 2 修改字段型別 3 設定字段允許為空 4 增加乙個字段,並...