Sample Tables: Deptno Dname LOC
Sample Tables: Deptno Dname LOC
TABLE : DEPT
20 RESEARCH DALLAS
30 SALES CHICAGO
40 OPERATIONS BOSTON
TABLE : EMP
1.Display all the employees who are getting 2500 and excess salaries in
department 20.
Ans: select * from emp where sal>=2500
and deptno=20;
no rows selected
4.Display all the employees who are getting some commission with their
designation is neither MANANGER nor ANALYST
Ans: select * from emp
where comm >0 and job not in ('MANAGER','ANALYST');
5.Display all the ANALYSTs whose name doesn’t ends with ‘S’
Ans: select * from emp
where job='ANALYST' and ename not like '%S';
7.Display all the employees who total salary is more than 2000.
(Total Salary = Sal + Comm)
Ans: select * from emp
where (sal+nvl(comm,0))>2000;
8.Display all the employees who are getting some commission in department 20
& 30.
Ans: select * from emp
where comm>0 and deptno in (20,30);
9.Display all the managers whose name doesn't start with A & S
Ans: select * from emp
where job='MANAGER' and
ename not like 'A%' and
ename not like 'S%'
JOB MAX(SAL)
--------- ----------
ANALYST 3000
CLERK 1300
MANAGER 2975
PRESIDENT 5000
SALESMAN 1600
2.Display the departments that are having more than 3 employees under it.
Ans: select deptno,count(*) from emp
group by deptno
having count(*)>3;
DEPTNO COUNT(*)
-------- ----------
20 5
30 6
3.Display job-wise average salaries for the employees whose employee number is
not from 7788 to 7790.
Ans: select job,avg(sal) from emp
where empno not between 7788 and 7790
group by job;
JOB AVG(SAL)
--------- ----------
ANALYST 3000
CLERK 1037.5
MANAGER 2758.33333
PRESIDENT 5000
SALESMAN 1400
4.Display department-wise total salaries for all the Managers and Analysts, only if
the average salaries for the same is greater than or equal to 3000.
Ans: select deptno,sum(sal) from emp
where job in ('MANAGER','ANALYST')
group by deptno
having avg(sal)>=3000;
no rows selected
ID COUNT(*)
----- ----------
101 7
102 4
103 3
no rows selected
3.Select only the duplicate records that are duplicated only once.
Ans: select id,count(*) from skills
group by id
having count(*)=1;
no rows selected
4.Select only the duplicate records that are not having the id=101.
Ans: select id,count(*) from skills
where id<>101
group by id
having count(*)>=1
ID COUNT(*)
----- ----------
102 4
103 3
ASSIGNMENTS ON SUBQUERIES
1.Display all the employees who are earning more than all the managers.
Ans: select * from emp
where sal >(select max(sal) from emp
where job='MANAGER');
2.Display all the employees who are earning more than any of the managers.
Ans: SELECT * from emp
where sal >all(select sal from emp where job like 'MAN%');
3.Select employee number, job & salaries of all the Analysts who are earning
more than any of the managers.
Ans:
5.Select department name & location of all the employees working for CLARK.
Ans: select dname,loc from dept
where deptno in(select deptno from emp
where mgr in(select empno from emp
where ename='CLARK'));
DNAME LOC
-------------- -------------
ACCOUNTING NEW YORK
10.Display all the managers & clerks who work in Accounts and Marketing
departments.
Ans: select ename from emp
where job in('MANAGER','CLERK')
AND deptno in(select deptno from dept
where dname in('ACCOUNTING','SALES'));
ENAME
---------
CLARK
MILLER
BLAKE
JAMES
no rows selected
15.Display all the employees who are getting more than the average
salaries of all the employees.
Ans: select * from emp
where sal>(select avg(sal)
from emp);
EMPNO ENAME JOB MGR HIREDATE SAL COMM DEPTNO
------ ---------- --------- ---------- --------- ---------- ---------- ----------
7566 JONES MANAGER 7839 02-APR-81 2975 20
7698 BLAKE MANAGER 7839 01-MAY-81 2850 30
7782 CLARK MANAGER 7839 09-JUN-81 2450 10
7788 SCOTT ANALYST 7566 19-APR-87 3000 20
7839 KING PRESIDENT 17-NOV-81 5000 10
7902 FORD ANALYST 7566 03-DEC-81 3000 20
ASSIGNMENTS ON JOINS
ASSIGNMENTS ON EQUI-JOINS
1.Display all the managers & clerks who work in Accounts and Marketing
departments.
Ans: select A.*
from emp A join dept B
on a.deptno=b.deptno
and job in('MANAGER','CLERK')
and dname in('ACCOUNTING','SALES');
2) Select department name & location of all the employees working for CLARK.
5) Delete the records from the DEPT table that don’t have matching
records in EMP
ASSIGNMENTS ON OUTER-JOINS
6) Display all the departmental information for all the existing employees and if
a department has no employees display it as “No employees”.
7) Get all the matching & non-matching records from both the tables.
8) Get only the non-matching records from DEPT table (matching records
shouldn’t be selected).
9) Select all the employees name along with their manager names, and if an
employee does not have a manager, display him as “CEO”.
ASSIGNMENTS ON SELF-JOINS
10)Get all the employees who work in the same departments as of SCOTT
11)Display all the employees who have joined before their managers.
12)List all the employees who are earning more than their managers.
15)Display employee name , his date of joining, his manager name & his
manager's date of joining.