Subject | Re: [firebird-support] how to drop a unique constraint? |
---|---|
Author | unordained |
Post date | 2010-10-04T22:10:04Z |
> but I get a syntax error after I do thisTry:
>
> alter table vaccine drop constraint 'INTEG_400'
alter table vaccine drop constraint INTEG_400;
The single-quotes imply a value, not an object name, and constraints are named
objects.