86
86
explain select distinct t1.a from t1,t3 where t1.a=t3.a;
88
88
select distinct t1.a from t1,t3 where t1.a=t3.a;
91
92
select distinct 1 from t1,t3 where t1.a=t3.a;
94
96
explain SELECT distinct t1.a from t1;
95
97
explain SELECT distinct t1.a from t1 order by a desc;