6 lines
193 B
Plaintext
6 lines
193 B
Plaintext
drop table if exists t1;
|
|
drop table if exists t2;
|
|
create table t1(a bigint, b bigint);
|
|
create table t2(a bigint, b bigint);
|
|
explain select * from t1 where t1.a in (select t1.b + t2.b from t2);
|