adding test scripts
[csql.git] / test / sql / Join / join9.sql
blobf79ee73fe3420a8483ff2e151fafae9cdac7b957
1 echo select t11.f5, t13.f8 from t11,t13 where t11.f5=t13.f8;
2 select t11.f5, t13.f8 from t11,t13 where t11.f5=t13.f8;
4 echo select t11.f1,t11.f5,t13.f8 from t11,t13 where t11.f5=t13.f8;
5 select t11.f1,t11.f5,t13.f8 from t11,t13 where t11.f5=t13.f8;
7 echo select * from t11,t13 where t13.f8 > t11.f5;
8 select * from t11,t13 where t13.f8 > t11.f5;
10 echo select t11.f1,t11.f5,t13.f8 from t11,t13 where t13.f8 < t11.f5;
11 select t11.f1,t11.f5,t13.f8 from t11,t13 where t13.f8 < t11.f5;