Lines Matching refs:from
231 select a from t3 order by b, a;
236 select a from t3 order by b, a desc;
241 select a from t3 order by b desc, a;
246 select a from t3 order by b desc, a desc;
253 select a from t3 order by b, a;
258 select a from t3 order by b, a desc;
263 select a from t3 order by b desc, a;
268 select a from t3 order by b desc, a desc;
316 } {1 2 11 12 1 11 12 2} ;# text from t4.b and numeric from v4.a
321 } {1 2 11 12 1 11 12 2} ;# numeric from t4.a and text from v4.b
452 select y from t8, t9 where a=1 order by a, y;
468 select a.id, b.id, b.text from a join b on (a.id = b.aId)