Quadcap Software

Quadcap Embeddable Database

Quadcap Software

Syntax

dropConstraint
  :  "drop" "constraint" sqlId 
    (  "restrict" 
    |  "cascade" 
    |  
    ) 
    
  ;


ALTER TABLE DROP CONSTRAINT

The specified constraint will be removed from the table. If RESTRICT is specified, the column must not be a parent key for any foreign key constraint, otherwise this statement will fail.