Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Databases SQL Reporting by Example Day 3: Getting Good at Grouping Day 3: Final Exam

Which managers have greater than 5 employees on team quiz question

Hello,

I'm stumped on this question. Can someone help me figure out the solution? The question wants me to complete a query that list managers with more than 5 employees on their team.

SELECT MANAGERS.FIRST_NAME, MANAGERS.LAST_NAME FROM MANAGERS JOIN EMPLOYEES ON EMPLOYEES.MANAGER_ID = MANAGERS.ID GROUP BY MANAGERS.ID ???

This was my response but it was incorrect: HAVING COUNT(1) > 5;

Many Thanks!

2 Answers

Steven Parker
Steven Parker
229,670 Points

Your answer appears to be correct. Did you notice that the semicolon was already on the line after the blank? If you added another one that might have thrown off the validator.

Hi Steven,

Yes I noticed the semicolon; I ended up retaking the quiz and the answer was correct this time; I may have had a typo or something.

Thanks for answering!