标签:style blog color sp on 数据 div log bs
select distinct(a), distinct(b), distinct(c) from tableName;
a, b, c没有相关性。
改进方案:把计算的distinct先group by,然后再计算:
select distinct(t.a), distinct(t.b), distinct(t.c) from( select a, b, c from tableName group by a, b, c; )t;
标签:style blog color sp on 数据 div log bs
原文地址:http://www.cnblogs.com/yejinru/p/4154119.html