Lines Matching refs:t3
26 puts $fd "1\tone\t0\tI\t3.141592653"
33 puts $fd "8\teight\t3\tVIII\t-1.6"
225 create table t3(a,b);
226 insert into t3 values(5,NULL);
227 insert into t3 values(6,NULL);
228 insert into t3 values(3,NULL);
229 insert into t3 values(4,'cd');
230 insert into t3 values(1,'ab');
231 insert into t3 values(2,NULL);
232 select a from t3 order by b, a;
237 select a from t3 order by b, a desc;
242 select a from t3 order by b desc, a;
247 select a from t3 order by b desc, a desc;
253 create index i3 on t3(b,a);
254 select a from t3 order by b, a;
259 select a from t3 order by b, a desc;
264 select a from t3 order by b desc, a;
269 select a from t3 order by b desc, a desc;