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 total salaries payable to employees


2. Write a query to get the total salaries payable to employees.

Sample Solution:

Code:

SELECT SUM(salary) 
FROM employees;

Sample table: employees


Output:

pg_exercises=# SELECT SUM(salary)
pg_exercises-# FROM employees;
    sum
-----------
 691400.00
(1 row)

Relational Algebra Expression:

Relational Algebra Expression: Get the total salaries payable to employees.

Relational Algebra Tree:

Relational Algebra Tree: Get the total salaries payable to employees.

Practice Online


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

Previous: Write a query to find the number of jobs available in the employees table.
Next: Write a query to get the minimum salary from employees table.

What is the difficulty level of this exercise?