1.Give a query for a list of each department(number and name)with their number of employees.这是EMP表的问题,2.give a query for a list of each department(number and name) for all department with no employees.

来源:学生作业帮助网 编辑:作业帮 时间:2024/12/04 04:44:38
1.Give a query for a list of each department(number and name)with their number of employees.这是EMP表的问题,2.give a query for a list of each department(number and name) for all department with no employees.
xݑ?K@ƿʻՖs&NSI7&Ż[J.P,[Øͷ.ڒQcU};@`?B29@@vDD(H ` '% B6>vvӻ<_ 6Ͳ[P.Yh6Z\jL0@+$9jV 0mq"1U`aF <G(KZ9|v쓇)jfx4CArM}*ilv?J{?GM?9ޛG9 `

1.Give a query for a list of each department(number and name)with their number of employees.这是EMP表的问题,2.give a query for a list of each department(number and name) for all department with no employees.
1.Give a query for a list of each department(number and name)with their number of employees.
这是EMP表的问题,2.give a query for a list of each department(number and name) for all department with no employees.

1.Give a query for a list of each department(number and name)with their number of employees.这是EMP表的问题,2.give a query for a list of each department(number and name) for all department with no employees.
select dep.dept_no,dep.name,count(emp.empno) employeeNumber
from ps_department dep,ps_employee emp
where dep.dept_no = emp.dept_no
and dep.current_status = 'Y' /* in use */
and emp.current_status = 'Y' /* in use */
fyi.

为每个部门员工的编号和名称做一份调查列表。