DB2 的CHECK不检查NULL值
Create table test.testchk(col1 integer check(col1 in (1,2,3)));Insert into test.testchk(col1) values(null);