Oracle Queries
Oracle Queries
6) Display the employee name and annual salary for all employees.
SQL>select ename, 12*(sal+nvl(comm,0)) as "annual Sal" from emp
7) Display the names of all the employees who are working in depart
number 10.
SQL>select emame from emp where deptno=10;
8) Display the names of all the employees who are working as clerks
and
drawing a salary more than 3000.
SQL>select ename from emp where job='CLERK' and sal>3000;
9) Display the employee number and name who are earning comm.
SQL>select empno,ename from emp where comm is not null;
10) Display the employee number and name who do not earn any
comm.
SQL>select empno,ename from emp where comm is null;
11) Display the names of employees who are working as
clerks,salesman or
analyst and drawing a salary more than 3000.
SQL>select ename from emp where job='CLERK' OR JOB='SALESMAN'
OR JOB='ANALYST' AND SAL>3000;
12) Display the names of the employees who are working in the
company for
the past 5 years;
SQL>select ename from emp where to_char(sysdate,'YYYY')-
to_char(hiredate,'YYYY')>=5;
13) Display the list of employees who have joined the company before
30-JUN-90 or after 31-DEC-90.
a)select ename from emp where hiredate < '30-JUN-1990' or hiredate >
'31-DEC-90';
15) Display the list of all users in your database(use catalog table).
SQL>select username from all_users;
20) Display the Employee names for employees whose name ends with
alaphabet S.
SQL>select ename from emp where ename like '%S';
22) select the names of the employee whose names is exactly five
characters
in length.
SQL>select ename from emp where length(ename)=5;
23) Display the names of the employee who are not working as
MANAGERS.
SQL>select ename from emp where job not in('MANAGER');
24) Display the names of the employee who are not working as
SALESMAN OR
CLERK OR ANALYST.
SQL>select ename from emp where job not
in('SALESMAN','CLERK','ANALYST');
25) Display all rows from emp table.The system should wait after every
screen full of informaction.
SQL>set pause on
32) Display the maximum salary being paid to depart number 20.
SQL>select max(sal) from emp where deptno=20;
36) Display the names of the employee in order of salary i.e the name
of
the employee earning lowest salary should salary appear first.
SQL>select ename from emp order by sal;
43) Display the various jobs and total number of employees within
each job
group.
SQL>select job,count(job)from emp group by job;
44) Display the depart numbers and total salary for each department.
SQL>select deptno,sum(sal) from emp group by deptno;
45) Display the depart numbers and max salary for each department.
SQL>select deptno,max(sal) from emp group by deptno;
46) Display the various jobs and total salary for each job
SQL>select job,sum(sal) from emp group by job;
47) Display the various jobs and total salary for each job
SQL>select job,min(sal) from emp group by job;
48) Display the depart numbers with more than three employees in
each dept.
SQL>select deptno,count(deptno) from emp group by deptno having
count(*)>3;
49) Display the various jobs along with total salary for each of the jobs
where total salary is greater than 40000.
SQL>select job,sum(sal) from emp group by job having
sum(sal)>40000;
50) Display the various jobs along with total number of employees in
each
job.The output should contain only those jobs with more than three
employees.
SQL>select job,count(empno) from emp group by job having
count(job)>3
51) Display the name of the empployee who earns highest salary.
SQL>select ename from emp where sal=(select max(sal) from emp);
52) Display the employee number and name for employee working as
clerk and
earning highest salary among clerks.
SQL>select empno,ename from emp where where job='CLERK'
and sal=(select max(sal) from emp where job='CLERK');
53) Display the names of salesman who earns a salary more than the
highest
salary of any clerk.
SQL>select ename,sal from emp where job='SALESMAN' and
sal>(select
max(sal) from emp
where job='CLERK');
54) Display the names of clerks who earn a salary more than the
lowest
salary of any salesman.
SQL>select ename from emp where job='CLERK' and sal>(select
min(sal)
from emp
where job='SALESMAN');
Display the names of employees who earn a salary more than that of
Jones or that of salary grether than that of scott.
SQL>select ename,sal from emp where sal>
(select sal from emp where ename='JONES')and sal> (select sal from
emp
where ename='SCOTT');
55) Display the names of the employees who earn highest salary in
their
respective departments.
SQL>select ename,sal,deptno from emp where sal in(select max(sal)
from
emp group by deptno);
56) Display the names of the employees who earn highest salaries in
their
respective job groups.
SQL>select ename,sal,job from emp where sal in(select max(sal) from
emp
group by job)
59) Display the Job groups having total salary greater than the
maximum
salary for managers.
SQL>SELECT JOB,SUM(SAL) FROM EMP GROUP BY JOB HAVING
SUM(SAL)>(SELECT
MAX(SAL) FROM EMP WHERE JOB='MANAGER');
69) Find the First occurance of character 'a' from the following string
i.e
'Computer Maintenance Corporation'.
SQL>SELECT INSTR('Computer Maintenance Corporation','a',1) FROM
DUAL
75) Display the current date as 15th Augest Friday Nineteen Ninety
Saven.
SQL>select to_char(sysdate,'ddth Month day year') from dual
76) Display the following output for each row from emp table.
scott has joined the company on wednesday 13th August ninten nintey.
SQL>select ENAME||' HAS JOINED THE COMPANY ON '||
to_char(HIREDATE,'day
ddth Month year') from EMP;
77) Find the date for nearest saturday after current date.
SQL>SELECT NEXT_DAY(SYSDATE,'SATURDAY')FROM DUAL;
79) Display the date three months Before the current date.
SQL>select add_months(sysdate,3) from dual;
80) Display the common jobs from department number 10 and 20.
SQL>select job from emp where deptno=10 and job in(select job from
emp
where deptno=20);
83) Display the details of those who do not have any person working
under them.
SQL>select e.ename from emp,emp e where emp.mgr=e.empno group
by
e.ename having count(*)=1;
85) Display those who are not managers and who are managers any
one.
i)display the managers names
SQL>select distinct(m.ename) from emp e,emp m where
m.empno=e.mgr;
86) Display those employee whose name contains not less than 4
characters.
SQL>select ename from emp where length(ename)>4;
87) Display those department whose name start with "S" while the
location
name ends with "K".
SQL>select dname from dept where dname like 'S%' and loc like '%K';
89) Display those employees whose salary is more than 3000 after
giving 20%
increment.
SQL>select ename,sal from emp where (sal+sal*.2)>3000;
94) Display those employees who are working in the same dept where
his
manager is work.
SQL>select p.ename from emp e,emp p where e.empno=p.mgr and
p.deptno=e.deptno;
95) Display those employees who are not working under any manager.
SQL>select ename from emp where mgr is null
96) Display grade and employees name for the dept no 10 or 30 but
grade is
not 4 while joined the company before 31-dec-82.
SQL>select ename,grade from emp,salgrade where sal between losal
and
hisal and deptno in(10,30) and grade<>4 and hiredate<'31-DEC-82';
97) Update the salary of each employee by 10% increment who are not
eligiblw for commission.
SQL>update emp set sal=sal+sal*10/100 where comm is null;
98) SELECT those employee who joined the company before 31-dec-82
while
their dept location is newyork or Chicago.
SQL>SELECT EMPNO,ENAME,HIREDATE,DNAME,LOC FROM EMP,DEPT
WHERE (EMP.DEPTNO=DEPT.DEPTNO)AND
HIREDATE <'31-DEC-82' AND DEPT.LOC IN('CHICAGO','NEW YORK');
101) Display name and salary of ford if his salary is equal to hisal of
his
grade
a)select ename,sal,grade from emp,salgrade where sal between losal
and
hisal
and ename ='FORD' AND HISAL=SAL;
103) List out all employees name,job,salary,grade and depart name for
every
one in the company except 'CLERK'.Sort on salary display the highest
salary?
SQL>SELECT ENAME,JOB,DNAME,SAL,GRADE FROM
EMP,SALGRADE,DEPT WHERE
SAL BETWEEN LOSAL AND HISAL AND EMP.DEPTNO=DEPT.DEPTNO
AND JOB
NOT IN('CLERK')ORDER BY SAL ASC;
106) Display name of those employee who are getting the highest
salary?
SQL>select ename from emp where sal=(select max(sal) from emp);
110) Display name of those managers name whose salary is more than
average
salary of his company?
SQL>SELECT E.ENAME,EMP.ENAME FROM EMP,EMP E
WHERE EMP.EMPNO=E.MGR AND E.SAL>(SELECT AVG(SAL)
FROM EMP);
112) Display employee name,sal,comm and net pay for those employee
whose net pay is greter than or equal to any other employee salary of
the company?
SQL>select ename,sal,comm,sal+nvl(comm,0) as NetPay from emp
where sal+nvl(comm,0) >any (select sal from emp)
113) Display all employees names with total sal of company with each
employee name?
SQL>SELECT ENAME,(SELECT SUM(SAL) FROM EMP) FROM EMP;
115) Find out the number of employees whose salary is greater than
their
manager salary?
SQL>SELECT E.ENAME FROM EMP ,EMP E WHERE EMP.EMPNO=E.MGR
AND EMP.SAL<E.SAL;
119) Display those employee who joined in the company in the month
of Dec?
SQL>select ename from emp where to_char(hiredate,'MON')='DEC';
123) Display those employee whose 10% of salary is equal to the year
of
joining?
SQL>select ename from emp where to_char(hiredate,'YY')=sal*0.1;
127) Display those employee who has joined before 15th of the month.
a)select ename from emp where to_char(hiredate,'DD')<15;
132) Print the details of all the employees who are Sub-ordinate to
BLAKE?
SQL>select emp.ename from emp, emp e where emp.mgr=e.empno and
e.ename='BLAKE';
133) Display employee name and his salary whose salary is greater
than
highest average of department number?
SQL>SELECT SAL FROM EMP WHERE SAL>(SELECT MAX(AVG(SAL))
FROM EMP
GROUP BY DEPTNO);
135) Display the half of the ename's in upper case and remaining
lowercase?
SQL>SELECT
SUBSTR(LOWER(ENAME),1,3)||
SUBSTR(UPPER(ENAME),3,LENGTH(ENAME))
FROM EMP;
136) Display the 10th record of emp table without using group by and
rowid?
SQL>SELECT * FROM EMP WHERE ROWNUM<11
MINUS
SELECT * FROM EMP WHERE ROWNUM<10
150) For the time being I have decided that I will not impose this
validation.My boss has agreed to pay more than 10,000.
SQL>again alter the table or drop constraint with alter table emp drop
constraint chk_001 (or)Disable the constraint by using alter table emp
modify constraint chk_001 disable;
151) My boss has changed his mind. Now he doesn't want to pay more
than
10,000.so revoke that salary constraint.
SQL>alter table emp modify constraint chk_001 enable;
158) Delete the rows of employees who are working in the company
for more
than 2 years.
SQL>delete from emp where (sysdate-hiredate)/365>2;
161) Display employee name and department name for each employee.
SQL>select empno,dname from emp,dept where
emp.deptno=dept.deptno
167) Display itemname and total sales amount for each item.
SQL>select itemname,sum(amount) from item group by itemname;
168) Write a Query To Delete The Repeted Rows from emp table;
SQL>Delete from emp where rowid not in(select min(rowid)from emp
group
by ename)
169) TO DISPLAY 5 TO 7 ROWS FROM A TABLE
SQL>select ename from emp
where rowid in(select rowid from emp where rownum<=7
minus
select rowid from empi where rownum<5)
SQL>SELECT * FROM
(SELECT * FROM EMP ORDER BY ENAME DESC)
WHERE ROWNUM <10;
------******------
TO FIND THE DUPLICATE VALUES
JOINS:
OR
OR
OR
Difference 4:
Stored procedure can run independently. It can be executed
using EXECUTE or EXEC command
But function cannot run independently
Difference 5:
Temporary table (derived) cannot be created on function.
But it can be created in stored procedures
Difference 6:
From sql server 2005 onwards, TRY CATCH statements can be
used in the stored procedures.
But it cannot be used in the function. But we can use raise error
function.
Difference 7:
Stored procedure can call the user defined functions
But the function cannot call the stored procedures.
Difference 8:
Stored procedures can have input and output parameters.
But the function can have only input parameters.
Difference 9:
Stored procedures can have select and all DML operations.
But the function can do only select operation.
Difference 10:
Function cannot have the transaction statements.
Stored procedure can use transaction statements.