有两种方法:
方法1、
alter table sk_data add (unique(longtime) deferrable enable novalidate)
sk_data为表名,longtime为需要加上唯一索引的列。注意加上了deferrable
方法2、
create index u_longtime on sk_data(longtime)
先在需要增加唯一索引的列上加上普通索引
alter table sk_data add constraint aa_u unique(longtime) enable novalidate
?唯一索引名可以与之前加的普通索引名不同
?