1.使用create,alter对表的增删改操作
添加主键,唯一值:(语句用法一致)
create table 表名(id int primary key comment "用户id",..) charset utf8mb4 collate utf8mb4_general_ci;
create table 表名(... ,primary key(user_id,article_id))charset utf8mb4 collate utf8mb4_general_ci;
create table 表名(id int unique comment "用户id",..) charset utf8mb4 collate utf8mb4_general_ci;
create table 表名(... ,unique(user_id,article_id)) charset utf8mb4 collate utf8mb4_general_ci;
追加主键:
alter table 表名 add primary key(user_id,article_id);
删除主键:
alter table 表名 drop primary key;
修改为自增:CHANGE COLUMN
alter table 表名 CHANGE COLUMN 列1 列1 int auto_increment;
删除自增长:modify
alter table 表名 modify 列名 int;
修改表名:rename
alter table `旧表名` rename `新表名`;
克隆表:like
create table 新表 like 原表;
增加列:add .first 表示放在所有的列之前 ,可选
alter table 表名 add 列名 类型 first;
删除列:drop
alter table 表名 drop 列名;
修改列类型:modify
alter table 表名 modify 列名 类型;
修改列名: int如果是旧类型则只是改名,如果是新类型则修改了原来的类型
alter table 表名 change 原列名 新列名 int;