code reorg for Transactionw!
[csql.git] / test / sql / Join / equijoin4_with_and_t1_t2_t3.sql
blobc911c1be4cdd17273572ef49baefcb9c9daea94d
1 echo select * from t1,t2,t3 where t1.f1 = t2.f1 and t2.f1 = t3.f1 and t3.f1 = 100;
2 select * from t1,t2,t3 where t1.f1 = t2.f1 and t2.f1 = t3.f1 and t3.f1 = 100;
3 echo select * from t2,t1,t3 where t1.f1 = t2.f1 and t2.f1 = t3.f1 and t3.f1 = 100;
4 select * from t2,t1,t3 where t1.f1 = t2.f1 and t2.f1 = t3.f1 and t3.f1 = 100;
5 echo select * from t3,t1,t2 where t1.f1 = t2.f1 and t2.f1 = t3.f1 and t3.f1 = 100;
6 select * from t3,t1,t2 where t1.f1 = t2.f1 and t2.f1 = t3.f1 and t3.f1 = 100;