I am adding one Boolean Column(status) into table(EMPLOYEE) in DB2 with below script,
ALTER TABLE EMPLOYEE ADD status CHAR(1) not null DEFAULT '1' constraint EMPLOYEE_CK31 check (status in ('0','1'));
It is giving me error. Please let me know what is wrong in this script ?