--增加唯一
alter table "SYSDBA"."MY_TABLE" add constraint U_ID unique(id);
--去掉唯一
alter table "SYSDBA"."MY_TABLE" drop constraint U_ID ;
--增加唯一
alter table "SYSDBA"."MY_TABLE" add constraint U_ID unique(id);
--去掉唯一
alter table "SYSDBA"."MY_TABLE" drop constraint U_ID ;