1. 程式人生 > >MySQL的分組和排序

MySQL的分組和排序

分組操作

  select count(id) from userinfo group by pat(id);
   -- 聚合函式:
    --count
    --max
    --sum
    --avg
    ---如果對於二次函式進行二次篩選時>,必須使用having
    select  count(id) from userinfo group by part_id having count(id)>1;

排序操作

select * from ta1 order by id desc --從大到小根據id排序
  --asc 從小到大