Quadcap Software

Quadcap Embeddable Database

Quadcap Software

Syntax

dropColumn
  :  "drop" 
    (  "column" 
    |  
    ) 
    sqlId 
    (  "restrict" 
    |  "cascade" 
    |  
    ) 
    
  ;


ALTER TABLE DROP COLUMN

The specified column is 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.