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 Basic SELECT Statement: Calculate the total salaries payable to employees


6. 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: Calculate the total salaries payable to employees.

Relational Algebra Tree:

Relational Algebra Tree: Calculate 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 get the employee ID, name (first_name, last_name) and salary in ascending order according to their salary.
Next: Write a query to get the maximum and minimum salary paid to the employees.

What is the difficulty level of this exercise?