hb_sz 发表于 2016-11-17 06:39:28

DB2 的CHECK不检查NULL值

Create table test.testchk(
col1 integer check(col1 in (1,2,3))
);
Insert into test.testchk(col1) values(null);

执行成功了,大家想想这是不是bug啊。
页: [1]
查看完整版本: DB2 的CHECK不检查NULL值