adding test scripts
[csql.git] / test / sql / Join / join4.sql
blob603f5d95b0034b3c2964dced4ba508b5c69e66e8
1 echo select * from t1,t2,t3 where t1.f2=t2.f2 and t1.f3=t3.f2;
2 select * from t1,t2,t3 where t1.f2=t2.f2 and t1.f3=t3.f2;
4 echo select * from t1,t2,t3 where t1.f2=t2.f2 or t1.f3=t3.f2;
5 select * from t1,t2,t3 where t1.f2=t2.f2 or t1.f3=t3.f2;