PostgreSQL avg()函數

來源:互聯網
上載者:User

PostgreSQL avg()函數

PostgreSQL的AVG函數是用來找出各種記錄中的一個欄位的平均值。

為了理解AVG函數考慮表COMPANY 有如下記錄:
testdb# select * from COMPANY;
 id | name  | age | address  | salary
----+-------+-----+-----------+--------
  1 | Paul  |  32 | California|  20000
  2 | Allen |  25 | Texas    |  15000
  3 | Teddy |  23 | Norway    |  20000
  4 | Mark  |  25 | Rich-Mond |  65000
  5 | David |  27 | Texas    |  85000
  6 | Kim  |  22 | South-Hall|  45000
  7 | James |  24 | Houston  |  10000
(7 rows)
 

現在,假設基於上述表要計算平均的工資,那麼可以通過使用下面的命令: www.bkjia.com
testdb=# SELECT AVG(SALARY) FROM COMPANY; 

以上PostgreSQL的表會產生以下結果:
        avg
 ------------------
  37142.8571428571
(1 row)
 

可以把平均使用GROUP BY子句集合各種記錄。下面的例子將平均到一個人的所有相關的記錄,將計算出每個人的平均工資。
testdb=# SELECT name, AVG(SALARY) FROM COMPANY GROUP BY name; 
  name  |  avg
 -------+-------
  Teddy | 20000
  Paul  | 20000
  Mark  | 65000
  David | 85000
  Allen | 15000
  Kim  | 45000
  James | 10000
(7 rows) 

That which didn't kill me makes me stronger

更多MongoDB相關教程見以下內容:

CentOS 編譯安裝 MongoDB與mongoDB的php擴充

CentOS 6 使用 yum 安裝MongoDB及伺服器端配置

Ubuntu 13.04下安裝MongoDB2.4.3

MongoDB入門必讀(概念與實戰並重)

Ubunu 14.04下MongoDB的安裝指南

《MongoDB 權威指南》(MongoDB: The Definitive Guide)英文文字版[PDF]

Nagios監控MongoDB分區叢集服務實戰

基於CentOS 6.5作業系統搭建MongoDB服務

MongoDB 的詳細介紹:請點這裡
MongoDB 的:請點這裡

本文永久更新連結地址:

相關文章

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.