oracle分組查詢,oracle分組

來源:互聯網
上載者:User

oracle分組查詢,oracle分組

分組函數
在分組函數中,如果有一個尋找項分組,其他項必須也分組,比如下面的語句會報錯,因為sal分組了,而ename沒有分組:

1.顯示工資最高的員工:

2.顯示所有員工的平均工資:
2.1使用系統函數:


2.2自訂計算:

3.顯示工資高於平均工資的員工資訊:

對查詢結果進行分組統計:

4.查詢每個部門的最高工資和平均工資:

5.顯示每個部門的每種崗位的平均工資與最高工資:

6.顯示平均工資低於2000的部門號和它的平均工資:

對資料分組的總結

1 分組函數只能出現在挑選清單、having、order by子句中(不能出現在where中)
2 如果在select語句中同時包含有group by, having, order by 那麼它們的順序是group by, having, order by
3 在選擇列中如果有列、運算式和分組函數,那麼這些列和運算式必須有一個出現在group by 子句中,否則就會出錯。
如SELECT deptno, AVG(sal), MAX(sal) FROM emp GROUP by deptno HAVING AVG(sal) < 2000;
這裡deptno就一定要出現在group by 中

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.