adding test scripts
[csql.git] / test / sql / Join / join2.sql
blob13229971a575ee40ab241eaad225dcae497178e2
1 echo select * from t1,t2 where t1.f1>100 or t2.f1<100;
2 select * from t1,t2 where t1.f1>100 or t2.f1<100; 
4 echo select * from t1,t2 where t1.f1 = t2.f1 and t1.f1 >100;
5 select * from t1,t2 where t1.f1 = t2.f1 and t1.f1 >100;