Jump to content

[SOLVED] Struggling with query select all employee_ids who manages a department with more


AdRock

Recommended Posts

I have been struggling to create this query all dat and am ready to give up

 

I want to select all employee_ids who manages a department with more than 5 employees

 

Employee table

-------------------

employee_id (primary key)

 

Manages table

------------------

employee_id (foreign key)

dept_id (foreign key)

 

Works_in table

------------------

employee_id (foreign key)

dept_id (foreign key)

 

Department table

----------------------

dept_id (primary key)

Link to comment
Share on other sites

Thanks Barand

 

That sorted out half the problem.

 

I have added an extra inner join sp now it shows which dept_id the count belongs to

 

SELECT e.employee_id, COUNT(*) as underlings, d.dept_id

FROM Employee e

INNER JOIN Manages m ON e.employee_id = m.employee_id

INNER JOIN Works_in w ON m.dept_id = w.dept_id

INNER JOIN Department d ON w.dept_id = d.dept_id

GROUP BY e.employee_id, d.dept_id

HAVING underlings > 5

 

What i need to add to this query is which employee id manages the department with the count of emplyees greater than 5

Link to comment
Share on other sites

I tried what i thought would work but i get too many values on line 5

 

This is what i tried

 

SELECT Employee.ssn

FROM Employee

INNER JOIN Manages on Employee.employye_id = Manages.employee_id

where Employee.employee_id=

(SELECT e.employee_id, COUNT(*) as underlings, d.dept_id

FROM Employee e

INNER JOIN Manages m ON e.employee_id = m.employee_id

INNER JOIN Works_in w ON m.dept_id = w.dept_id

INNER JOIN Department d ON w.dept_id = d.dept_id

GROUP BY e.employee_id, d.dept_id

HAVING underlings > 5)

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.