摘要:
mysql列存储引擎-the WHERE NOT IN query returned result without NUll values-问题记录
关联ISSUE: https://github.com/stoneatom/stonedb/issues/947
DDL:
表结构:
create table test1 (a int) engine=tianmu;
create table test2 (b int, c int) engine=tianmu;
插入数据:
insert into test1 values (1), (2), (3), (4), (null);
insert into test2 values (1, 100), (1, 101), (2, 200),
(3, 300), (3, 301), (3, 302), (null, null);
查询SQL:
select * from test1 where a n