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

Basic SELECT statement: Get the number of designations where employees do their jobs

MySQL Basic Select Statement: Exercise-10 with Solution

Write a query to get the number of designations available in the employees table.

Sample table: employees


Code:

SELECT COUNT(DISTINCT job_id) 
    FROM employees;

Relational Algebra Expression:

Relational Algebra Expression: Basic SELECT statement: Get the number of designations where  employees do their jobs.

Relational Algebra Tree:

Relational Algebra Tree: Basic SELECT statement: Basic SELECT statement: GGet the number of designations where  employees do their jobs.

Pictorial Presentation of the above query


Result :


MySQL Code Editor:

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

Previous: Write a query to get the number of employees working with the company.
Next: Write a query get all first name from employees table in upper case.

What is the difficulty level of this exercise?