oracle结构语法

增加index

  1. 方法一
create index 索引名 on 表名(列名);
drop index 索引名;

e.g

create index i_matchid on j_singleplan_sendcar_t(matchid);

增加unique

alter table j_singleplan_sendcar_t add constraint matchid_unique unique (matchid);
alter table j_singleplan_sendcar_t drop unique matchid_unique;
posted @ 2020-09-21 10:29  fight139  阅读(102)  评论(0编辑  收藏  举报