1. 程式人生 > 其它 >分組函式sum()、max()等和group by 的使用

分組函式sum()、max()等和group by 的使用

假如有資料:

 

1.單個欄位分組
-- 根據 user_name 分組
select user_name from T_JASON_TEST group by user_name;

-- 根據 telphone分組
select telphone from T_JASON_TEST group by telphone;
結果如下,左是 user_name,右是telphone :


 

2.多個欄位分組
-- 根據 user_name 和 telphone 分組
select user_name,telphone from T_JASON_TEST group by user_name,telphone;
-- 這個分組效果等同於distinct 函式,起到去重的效果
select distinct user_name,telphone from T_JASON_TEST;

-- 根據 user_name,telphone,result 三個欄位分組
select user_name,telphone,result from T_JASON_TEST group by user_name,telphone,result;
-- 效果等同於distinct ,去重
select distinct user_name,telphone,result from T_JASON_TEST;

注意:多個欄位分組或者單個欄位分組,select 後面所要查詢的欄位必須是分組欄位,否則報錯,

select user_name,telphone from T_JASON_TEST group by user_name; -- 報錯:ORA-00979: 不是 GROUP BY 表示式
-- 但是下面這樣是可以的,即只查詢出分組欄位中的其中一個或多個欄位
select user_name from T_JASON_TEST group by user_name,telphone ;

-- 或者結合分組函式使用也是可以的。
3.分組函式
-- 單個欄位分組,使用求和函式sum 。查詢每個人的通話時長
select user_name , sum(time_long) from T_JASON_TEST group by user_name; --結果如圖1

-- 多個欄位分組,使用求和函式sum 。查詢每個人對每個電話的通話時長
select user_name , sum(time_long) from T_JASON_TEST group by user_name,telphone; --結果如圖2
-- 或者如下(分組效果等同於)
select user_name,telphone, sum(time_long) from T_JASON_TEST group by user_name,telphone; --結果如圖3
 

  1. -- 分組和min()求最小值函式使用
  2.   select user_name, min(time_long) from T_JASON_TEST group by user_name; --結果如圖4

     轉自:https://blog.csdn.net/whxjason/article/details/107677512