首页 > 代码库 > oracle bug 12415167
oracle bug 12415167
drop table t1; create table t1 (c1 char(2) primary key, c2 char(1) not null); insert into t1 values (‘A ‘,‘A‘); select t1.c1 from t1 where t1.c1 in (select c2 from t1 union all select ‘0‘||c2 c2 from t1);
select /*+ full(t1) */ t1.c1 from t1 where t1.c1 in (select c2 from t1 union all select ‘0‘||c2 c2 from t1); 1st query returns no row, 2nd query return ‘A‘
oracle bug 12415167
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。