标签:ref 关于 http span 筛选 种类 group by HERE 作用
关于group by 下面谈谈我的理解:
select * from tbl_a where col_a = ‘xx‘ group by col_b;
通过group by 关键字,sql执行完from 、join 、 where之后对结果集通过by后面的条件进行分组,之后进行select 时候会从被分组的各个结果集中各抽取一条记录用于作为最终的结果集。
另外where是整个结果集的筛选条件,having则用来对分组后的结果进行再次的筛选。
因此group by 的作用可以是:
标签:ref 关于 http span 筛选 种类 group by HERE 作用
原文地址:https://www.cnblogs.com/luohaonan/p/12638715.html