adding test scripts
[csql.git] / test / sql / Join / join36.sql
blobd5d1597479a405b2c7cc97d95a69fab4a4403dd8
1 echo select * from t1,t2;
2 select * from t1,t2;
4 echo select * from t1,t2 where t1.f1=t2.f1 and t1.f2=t2.f2;
5 select * from t1,t2 where t1.f1=t2.f1 and t1.f2=t2.f2;
7 echo select * from t1,t2 where t1.f2=t2.f2 and t1.f1=t2.f1;
8 select * from t1,t2 where t1.f2=t2.f2 and t1.f1=t2.f1;
10 echo select * from t1,t2 where t1.f1>t2.f1 and t1.f2>t2.f2;
11 select * from t1,t2 where t1.f1>t2.f1 and t1.f2>t2.f2;
13 echo select * from t1,t2 where t1.f2<t2.f2 and t1.f1<=t2.f1;
14 select * from t1,t2 where t1.f2<t2.f2 and t1.f1<=t2.f1;
16 echo select * from t1,t2 where t1.f1=t2.f1 or t1.f2=t2.f2;
17 select * from t1,t2 where t1.f1=t2.f1 or t1.f2=t2.f2;
19 echo select * from t1,t2 where t1.f2=t2.f2 or t1.f1=t2.f1;
20 select * from t1,t2 where t1.f2=t2.f2 or t1.f1=t2.f1;
22 echo select * from t1,t2 where t1.f1>t2.f1 or t1.f2>=t2.f2;
23 select * from t1,t2 where t1.f1>t2.f1 or t1.f2>=t2.f2;
25 echo select * from t1,t2 where t1.f2<t2.f2 or t1.f1<t2.f1;
26 select * from t1,t2 where t1.f2<t2.f2 or t1.f1<t2.f1;
28 echo select * from t1,t2 where t1.f1>t2.f1 or t1.f2>t2.f2;
29 select * from t1,t2 where t1.f1>t2.f1 or t1.f2>t2.f2;
31 echo select * from t1,t2 where t1.f1=t2.f1 and not(t1.f2=t2.f2);
32 select * from t1,t2 where t1.f1=t2.f1 and not(t1.f2=t2.f2);
34 echo select * from t1,t2 where t1.f2=t2.f2 and not(t1.f1=t2.f1);
35 select * from t1,t2 where t1.f2=t2.f2 and not(t1.f1=t2.f1);
37 echo select * from t1,t2 where not(t1.f1>t2.f1) and t1.f2>t2.f2;
38 select * from t1,t2 where not(t1.f1>t2.f1) and t1.f2>t2.f2;
40 echo select * from t1,t2 where not(t1.f2<t2.f2) and not(t1.f1<t2.f1);
41 select * from t1,t2 where not(t1.f2<t2.f2) and not(t1.f1<t2.f1);
43 echo select * from t1,t2 where not(t1.f1=t2.f1) or not(t1.f2=t2.f2);
44 select * from t1,t2 where not(t1.f1=t2.f1) or not(t1.f2=t2.f2);