-
创建唯一索引(反向)
create unique index indexName on tableName (column) reverse; -
创建主键并指定索引
alter table tableName add constraint pk_index_name primary key (column) USING INDEX indexName ;
创建唯一索引(反向)
create unique index indexName on tableName (column) reverse;
创建主键并指定索引
alter table tableName add constraint pk_index_name primary key (column) USING INDEX indexName ;
本文标题:oracle 创建主键反向索引
本文链接:https://www.haomeiwen.com/subject/ckrpoqtx.html
网友评论