adding test scripts
[csql.git] / test / sql / Join / equijoin2_with_and_t1_t2_t3.sql
blob4ef78410bd7b3fd5c42f8915e741786a6eca8841
1 echo select * from t1,t2,t3 where t1.f1 = t2.f1 and t2.f1=100;
2 select * from t1,t2,t3 where t1.f1 = t2.f1 and t2.f1=100;
3 echo select * from t2,t1,t3 where t1.f1 = t2.f1 and t2.f1=100;
4 select * from t2,t1,t3 where t1.f1 = t2.f1 and t2.f1=100;
5 echo select * from t3,t1,t2 where t1.f1 = t2.f1 and t2.f1=100;
6 select * from t3,t1,t2 where t1.f1 = t2.f1 and t2.f1=100;