zoukankan      html  css  js  c++  java
  • group by having

    group by,即以其中一个字段的值来分组

    select 的字段只能是分组的字段类别以及使l聚合函数如,max(),min(),count()的字段。

    where在前,group by在后,注意group by紧跟在where最后一个限制条件后面,不能被夹在where限制条件之间。

    where在前,group by在后的原因:要先用where过滤掉不进行分组的数据,然后在对剩下满足条件的数据进行分组。

    having是在分好组后找出特定的分组,通常是以筛选聚合函数的结果,如sum(a) > 100等,且having必须在group by 后面,

    使用了having必须使用group by,但是使用group by 不一定使用having。不允许使用双重聚合函数,所以在对分组进行筛选的时候

  • 相关阅读:
    poj3255,poj2449
    poj2186
    poj3249
    poj3378
    poj3274
    poj1948
    hdu 2181暴搜
    hdu 3342
    hdu 1285
    hdu 1598
  • 原文地址:https://www.cnblogs.com/try-chi/p/12867481.html
Copyright © 2011-2022 走看看