hi friends please answer this question ASAP:-
how to count the no. of employee in a each department
or
no. of employee in each location by using emp/dept table
Answers were Sorted based on User's Feedback
Answer / madhu sudhan g
Hiii
Try this query it will give you the answer
select count(1) as EmpCount,EmployeeName from EMP
GROUP BY DepartmentName
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ramandeep singh
SELECT Dept_Name, dept.Dept_ID, COUNT(*) AS 'no. of
employees' FROM dept
LEFT JOIN emp ON emp.Dept_ID = dept.Dept_ID
GROUP BY dept.Dept_ID, Dept_Name
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / sushanta
select dept no, count(dept no)from employee group by dept no.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / rushella
select department_id,count(employee_id) from employees
group by department_id order by department_id;
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / ezhumalai
select d.dept_ID ,count(empid) from Emp a inner join Department b
on a.empid=b.empid
group by d.dept_ID
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / eswar mudamanchu
For example i am taking Emp table:
Select Deptid,Count(empid) from Emp
Group By Deptid Order By deptid
Select Location,Count(empid) from Emp
Group By Location Order By Location
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rajkumar v
select Dept_Name,count(Dept_Name) as 'No. of employee'
from tbl_dept group by Dept_Name having COUNT(*)>1
Is This Answer Correct ? | 0 Yes | 1 No |
Why we need to use secondry database file? though, we can do same work using primary database file also.
How to recompile stored procedure at run time?
Write a SQL query to delete a table?
Explain ranking functions?
can you any body tell me the difference between candidate key and primary key
What is row by row processing ?
Find 2nd Highest salery in emp table Select* from emp where &n= select * count from emp where (salery >=emp.salery) Enter n value 2 These query is correct or not. Tell me any other methods.
What is best institute to Learn DotNET And SQL in chennai?
What is database mirroring?
Explain what are db_options used for?
How to select some specific rows from a table in ms sql server?
What does truncate do?