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: Find the number of jobs available in the employees table


1. Write a query to find the number of jobs available in the employees table.

Sample Solution:

Code:

SELECT COUNT(DISTINCT job_id) 
FROM employees;

Sample table: employees


Output:

pg_exercises=# SELECT COUNT(DISTINCT job_id)
pg_exercises-# FROM employees;
 count
-------
    19
(1 row)

Relational Algebra Expression:

Relational Algebra Expression: Find the number of jobs available in the employees table.

Relational Algebra Tree:

Relational Algebra Tree: Find the number of jobs available in the employees table.

Practice Online


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

Previous: PostgreSQL Aggregate Functions and Group By- Exercises, Practice, Solution
Next: Write a query to get the total salaries payable to employees.

What is the difficulty level of this exercise?