1. 添加新列到某一列后
使用after
关键字
alter table role add role_code varchar(20) not null comment '角色编码' after role_name;
2. 添加新列到最前
使用fitst
关键字
alter table role add role_id int primary key auto_increment comment '主键' first;
3. 删除主键
alter table role drop primary key;
4. SET NAMES
是三个命令的简写,作用:设置客户端数据编码,设置服务器解析编码,设置服务器返回数据编码;
set names utf8mb4;
5. SET foreign_key_checks
设置当前会话是否检查外键约束,0:不检查;1:检查;
set foreign_key_checks = 0;
6. 删除Not Null约束
还是使用modify
语法,仅仅是不加not null
, 其他都得加,否则也会被修改;
alter table role modify role_code varchar(20) comment '角色编码'