|
终于执行完了
sqlf> select count(*) from t1m where expr is not null and expr in(select expr from t2m where expr is not null);
1
-----------
1048576
1 row selected
ELAPSED TIME = 4755 milliseconds
sqlf> select count(*) from t1m where expr not in(select expr from t2m);
1
-----------
0
1 row selected
ELAPSED TIME = 249138941 milliseconds
sqlf> |
|