Basically, I need to find the department which consists more than 10 staffs as I am stuck.
Any SQL will be helpful.
I will frequently monitor this question to reply to ur answers and questions if u need it.
Thanks in advance.
Code:
SELECT dname, sid FROM dept INNER JOIN staff ON dept.did = staff.did WHERE ?????? (this is the part where I am stuck)
I will frequently monitor this question to reply to ur answers and questions if u need it.
Thanks in advance.
Comment