U moet het kolomtype definiëren. Zoals dit:
alter table
QAS_ASSIGNED_STATE
add
cuid number NULL;
en voeg dan een beperking toe:
ALTER TABLE QAS_ASSIGNED_STATE ADD CONSTRAINT constraint_cuid UNIQUE (cuid );
U moet het kolomtype definiëren. Zoals dit:
alter table
QAS_ASSIGNED_STATE
add
cuid number NULL;
en voeg dan een beperking toe:
ALTER TABLE QAS_ASSIGNED_STATE ADD CONSTRAINT constraint_cuid UNIQUE (cuid );