Skip to content
Advertisement

Get number of employees who worked in more than one department with SQL query

I’m trying to figure out a query which show the number (amount) of employees who worked in more than 1 departments. Here the table name and fields:

  • Employee(id_employee, employee_name, salary)
  • Department(id_dept, dept_name, budget)
  • Department_Employee(id_employee, id_dept, workhours_percentage)

Suppose the content of Department_Employee table is

With a right query, the result should be 2 (employees), because there are 2 employees who work in more than one department

  • Employee 0001 work in 3 departments
  • Employee 0002 work in 2 departments


I tried with the following query

But the result isn’t right.

Please help me out.

Thanks.

Advertisement

Answer

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement