Q. List the department names and the number of their employees.


Consider this table --

SALARYGRADE ( LOWSAL , HIGHSAL , GRADE )
DEPT(DEPTNO. , DEPTNAME , LOCATION)

You can understand by seeing this video ---




Answer =

SELECT DEPTNAME ,COUNT( EMPL.DEPTNO ) FROM EMPL, DEPT WHERE EMPL.DEPTNO = DEPT.DEPTNO ;

Post a Comment

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

Previous Post Next Post