DBMS
DBMS
Table:
No 1 SS
(of Query & Output
in Shell)
No 2 Query select first_name,last_name,employee_id,phone_number,salary,department_id from employee E1 where salary=(select
(as Plain Text) min(salary) from employee E2 where E1.department_id = E2.department_id);
No 2 SS
(of Query & Output
in Shell)
No 3 SS
(of Query & Output
in Shell)
No 4 Query select department_id, count(*) as total_employee from employee group by department_id having max(salary)<=30000;
(as Plain Text)
No 4 SS
(of Query & Output
in Shell)
No 5 SS
(of Query & Output
in Shell)
No 7 SS
(of Query & Output
in Shell)