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