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

SQLite Exercise: Display the department ID, department name, and manager first name

Write a query to display the department ID, department name, and manager first name.

Sample table : employees

Sample table : departments


SQLite Code:

SELECT d.department_id, d.depart_name, e.manager_id, e.first_name 
FROM departments d 
INNER JOIN employees e 
ON (d.manager_id = e.employee_id);

Output:

department_id  depart_name     manager_id  first_name
-------------  --------------  ----------  ----------
10             Administration  101         Jennifer
20             Marketing       100         Michael
30             Purchasing      100         Den
40             Human Resource  101         Susan
50             Shipping        100         Adam
60             IT              102         Alexander
70             Public Relatio  101         Hermann
80             Sales           100         John
90             Executive                   Steven
100            Finance         101         Nancy
110            Accounting      101         Shelley

Practice SQLite Online


Model Database

Employee Model  Database - w3resource online SQLite practice

Structure of 'hr' database :

hr database

Improve this sample solution and post your code through Disqus.

Previous: Write a query to find the employee ID, job title number of days between ending date and starting date for all jobs in department 90 from job history.
Next: Write a query to display the department name, manager name, and city.

What is the difficulty level of this exercise?