code reorg for Transactionw!
[csql.git] / test / sql / Join / join35.sql
blob5981bf6cca61129036c68a36f392d237c2ad2182
1 echo select * from t1,t2 where t1.f1 = t2.f1 and t1.f1 = t2.f1;
2 select * from t1,t2 where t1.f1 = t2.f1 and t1.f1 = t2.f1;
3 echo select * from t1,t2 where t1.f1 = t2.f1 and t2.f2 > 100; 
4 select * from t1,t2 where t1.f1 = t2.f1 and t2.f2 > 100; 
5 echo select * from t1,t2 where t1.f1 = t2.f1 or t1.f2 > t2.f2;
6 select * from t1,t2 where t1.f1 = t2.f1 or t1.f2 > t2.f2;
7 echo select * from t1,t2 where t1.f1 = t2.f1 or t2.f2 > 100;
8 select * from t1,t2 where t1.f1 = t2.f1 or t2.f2 > 100;
9 echo select * from t1,t2 where not ( t1.f1 = t2.f1 and t1.f1 = t2.f1 );
10 select * from t1,t2 where not ( t1.f1 = t2.f1 and t1.f1 = t2.f1 );
11 echo select * from t1,t2 where ( not t1.f1 = t2.f1 );
12 select * from t1,t2 where ( not t1.f1 = t2.f1 );
13 echo select * from t1,t2 where t1.f1 = t2.f1 and t1.f2 = 100;
14 select * from t1,t2 where t1.f1 = t2.f1 and t1.f2 = 100;
15 echo select * from t1,t2 where t1.f1 > t2.f1 and t2.f2 = 110;
16 select * from t1,t2 where t1.f1 > t2.f1 and t2.f2 = 110;
17 echo select * from t1,t2 where t1.f1 > t2.f1 and t2.f2 > 100;
18 select * from t1,t2 where t1.f1 > t2.f1 and t2.f2 > 100;