Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

PostgreSQL Aggregate Functions and Group By: Get the average salary and number of employees working in a particular designation


5. Write a query to get the average salary and number of employees working in the department which ID is 90.

Sample Solution:

Code:

SELECT AVG(salary),count(*) 
FROM employees 
WHERE department_id = 90;

Sample table: employees


Output:

pg_exercises=# SELECT AVG(salary),count(*)
pg_exercises-# FROM employees
pg_exercises-# WHERE department_id = 90;
        avg         | count
--------------------+-------
 19363.333333333333 |     3
(1 row)

Relational Algebra Expression:

Relational Algebra Expression: Get the average salary and number of    employees working in a particular designation.

Relational Algebra Tree:

Relational Algebra Tree: Get the average salary and number of    employees working in a particular designation.

Practice Online


Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a query to get the maximum salary of an employee working as a Programmer.
Next: WWrite a query to get the highest, lowest, total, and average salary of all employees.

What is the difficulty level of this exercise?