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

MySQL Aggregate Function Exercises: List the number of jobs available in the employees table

MySQL Aggregate Function: Exercise-1 with Solution

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

Sample table: employees


Code:

SELECT COUNT(DISTINCT job_id) 
FROM employees;

Relational Algebra Expression:

Relational Algebra Expression: Aggregate Function: List the number of jobs available in the employees table.

Relational Algebra Tree:

Relational Algebra Tree: Aggregate Function: List the number of jobs available in the employees table.

Pictorial Presentation of the above query

Pictorial: Query to list the number of jobs available in the employees table.

 

MySQL Code Editor:

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

Previous:Aggregate Functions and Group by
Next: Write a query to get the total salaries payable to employees.

What is the difficulty level of this exercise?