SSC-EWI-TS0055
Default constraint was commented out and may have been added to a table definition.
Severity
Description
Code Example
Input Code:
CREATE TABLE table1(
col1 integer,
col2 varchar collate Latin1_General_CS,
col3 date
);
ALTER TABLE table1
ADD col4 integer,
CONSTRAINT col1_constraint DEFAULT 50 FOR col1,
CONSTRAINT col1_constraint DEFAULT 30 FOR col1;Output Code:
Known Issues
Recommendations
Last updated
