*** empty log message ***
[csql.git] / test / tools / csql / selcond.sql
blob668c1ec628edb06ba671f7c8b11d01fecdf8937c
1 echo select * from t1 where f1=10;
2 select * from t1 where f1=10;
3 echo select * from t1 where f1=99;
4 select * from t1 where f1=99;
5 echo select * from t1 where f1>27;
6 select * from t1 where f1>27;
7 echo select * from t1 where f1>=27;
8 select * from t1 where f1>=27;
9 echo select * from t1 where f1<=27;
10 select * from t1 where f1<=27;
11 echo select * from t1 where f1<27;
12 select * from t1 where f1<27;
13 echo select * from t1 where f1>99;
14 select * from t1 where f1>99;
15 echo select * from t1 where f1<-1;
16 select * from t1 where f1<-1;
17 echo select * from t1 where f1=40 and f1> 27;
18 select * from t1 where f1=40 and f1> 27;
19 echo select * from t1 where f1> 27 and f1=40;
20 select * from t1 where f1> 27 and f1=40;
21 echo select * from t1 where f1> 27 and f2=40;
22 select * from t1 where f1> 27 and f2=40;
23 echo select * from t1 where f1 >10 and f1 <20;
24 select * from t1 where f1 >10 and f1 <20;
25 echo select * from t1 where f1 >10 and f1 <20 and f2=15;
26 select * from t1 where f1 >10 and f1 <20 and f2=15;