CREATE TABLE ICD_9_Disease_Types ( ICD_9_code VARCHAR(4) NOT NULL, /* same as first collumn in table 1*/ CHD int DEFAULT '0' NOT NULL, Circulatory_Disease int DEFAULT '0' NOT NULL, All_Cancer int DEFAULT '0' NOT NULL, Lung_Cancer int DEFAULT '0' NOT NULL, Breast_Cancer int DEFAULT '0' NOT NULL, Cervical_Cancer int DEFAULT '0' NOT NULL, Colorectal_Cancer int DEFAULT '0' NOT NULL, Skin_Cancer int DEFAULT '0' NOT NULL, Respiratory_Disease int DEFAULT '0' NOT NULL, COPD int DEFAULT '0' NOT NULL, Stroke int DEFAULT '0' NOT NULL )