-- 删除普通索引
drop index 索引名字
--创建普通索引
create index 索引名 on 表名(索引对应的列名);
--删除主键索引
alter table 表名 drop constraint 索引名
--创建主键索引
alter table 表名 add constraint 表名 add constraint 索引名 primary key (主键);
2022-11-30 14:29:00
-- 删除普通索引
drop index 索引名字
--创建普通索引
create index 索引名 on 表名(索引对应的列名);
--删除主键索引
alter table 表名 drop constraint 索引名
--创建主键索引
alter table 表名 add constraint 表名 add constraint 索引名 primary key (主键);