SQL Queries
SQL Queries
SQL Queries
111111111111111111111111111111111111NSR Technologies
SQL 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 * from all_users;
19) Display the names of employees whose name starts with alaphabet S.
SQL>select ename from emp where ename like 'S%';
20) Display the Employee names for employees whose name ends with
alaphabet S.
SQL>select ename from emp where ename like '%S';
21) Display the names of employees whose names have second alphabet A in
their names.
SQL>select ename from emp where ename like '_A%';
22) select the names of the employee whose names is exactly five
characters
in length;
select name from employee where length(name)=5;
23) Display the names of the employee who are not working as MANAGERS.
24) Display the names of the employee who are not working as SALESMAN OR
CLERK OR ANALYST.
25) Display all rows from emp table.The system should wait after every
screen full of informaction.
32) Display the maximum salary being paid to depart number 20.
35) Display the total salary drawn by ANALYST working in depart number
40.
36) Display the names of the employee in order of salary i.e the name of
the employee earning lowest salary should appear first.
39) Display empno,ename,deptno,sal sort the output first base on name and
within name by deptno and with in deptno by sal.
40) Display the name of the employee along with their annual
salary(sal*12).The name of the employee earning highest annual salary
should apper first.
select * from ( select empno,ename,sal,sal*12+nvl(comm,0) as
annual_salary from emp) oder by annual salary desc;
42) Display depart numbers and total number of employees working in each
department.
43) Display the various jobs and total number of employees within each
job
group.
44) Display the depart numbers and total salary for each department.
45) Display the depart numbers and max salary for each department.
46) Display the various jobs and total salary for each job
47) Display the various jobs and total salary for each job
48) Display the depart numbers with more than three employees in each
dept.
49) Display the various jobs along with total salary for each of the jobs
Where total salary is greater than 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.
select job,count(ename) from emp group by job having count(ename)>3;
51) Display the name of the employee who earns highest salary.
52) Display the employee number and name for employee working as clerk
and
earning highest salary among clerks.
53) Display the names of salesman who earns a salary more than the
highest
salary of any clerk.
54) Display the names of clerks who earn a salary more than the lowest
salary of any salesman.
Display the names of employees who earn a salary more than that of
Jones or that of salary grether than that of scott.
select name from emp where sal>( select max(sal) from emp where
ename in('jones','scott');
55) Display the names of the employees who earn highest salary in their
respective departments.
56) Display the names of the employees who earn highest salaries in their
respective job groups.
57) Display the employee names who are working in accounting department.
59) Display the Job groups having total salary greater than the maximum
salary for managers.
60) Display the names of employees from department number 10 with salary
grether than that of any employee working in other department.
select name from emp where depart number=10 and salary>(select depart
sum(salary) from emp grop by depart);
61) Display the names of the employees from department number 10 with
salary greater than that of all employee working in other departments.
69) Find the First occurance of character 'a' from the following string
i.e
'Computer Maintenance Corporation'.
71) Display the informaction from emp table.Where job manager is found it
should be displayed as boos(Use replace function).
75) Display the current date as 15th Augest Friday Nineteen Ninety Saven
scott has joined the company on wednesday 13th August ninten nintey.
select * from emp where ename='scott' and hiredate='13-AUG-99';
77) Find the date for nearest saturday after current date.
79) Display the date three months Before the current date.
80) Display the common jobs from department number 10 and 20.
83) Display the details of those who do not have any person working under
them.
84) Display the details of those employees who are in sales department
and
grade is 3.
85) Display those who are not managers and who are managers any one.
i)display the managers names
86) Display those employee whose name contains not less than 4
characters.
87) Display those department whose name start with "S" while the location
name ends with "K".
select * from dept where dname like 'S%' and loc like '%K';
89) Display those employees whose salary is more than 3000 after giving
20%
increment.
select * from (
select a.empno,a.ename,nvl2(a.sal,a.sal+a.sal*20/100,0) as new_sal)
wherer new_sal>3000;
93)Display those employees whose salary greter than his manager salaray.
94) Display those employees who are working in the same dept where his
manager is work.
95) Display those employees who are not working under any manager.
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.
select ename,sal,grade from (select ename,sal,(case
when sal>1000 and sal<2000 then 4
when sal>2000 and sal<3000 then 3
when sal>3000 and sal<4000 then 2
when sal>4000 then 1
end) as grade ) where grade <>4 and doj<'31-DEC-82' and deptno in(10,30)
97) Update the salary of each employee by 10% increment who are not
eligiblw for commission.
98) SELECT those employee who joined the company before 31-dec-82 while
their dept location is newyork or Chicago.
101) Display name and salary of ford if his salary is equal to hisal of
his
grade
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?
104) Display the employee name,job and his manager.Display also employee
who
are without manager?
106) Display name of those employee who are getting the highest salary.
109) Display dname where at least 3 are working and display only
department
name?
110) Display name of those managers name whose salary is more than
average
salary of his company?
111)Display those managers name whose salary is more than average salary
of
his employee.
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?
113) Display all employees names with total sal of company with each
employee name?
115) Find out the number of employees whose salary is greater than their
manager salary?
119) Display those employee who joined in the company in the month of
Dec?
122) Display those employee whose first 2 characters from hiredate -last
2
characters of salary?
123) Display those employee whose 10% of salary is equal to the year of
joining?
126) Display those employees who joined the company before 15 of the
month?
127) Display those employee who has joined before 15th of the month.
select * from emp where doj<'15-AUG-2018';
select a.ename from emp a where empno in ( select b.mgr from emp b);
131) Display those employees whose grade is equal to any number of sal
but
not equal to first number of sal?
132) Print the details of all the employees who are Sub-ordinate to
BLAKE?
select a.ename from emp a where empno=(
select b.mgr from emp b where b.ename='BLAKE');
133) Display employee name and his salary whose salary is greater than
highest average of department number.
select ename,sal from emp where sal>(
select avg(sal) from emp where deptno='&deptno' group by deptno);
select * from (
select rownum as rno, emp.* from emp) where rno=10;
135) Display the half of the ename's in upper case and remaining
lowercase?
select upper( substr(ename,1,length(ename)/2) ) ||''|| lower(
substr(ename,length(ename)/2+1) ) as new_name from emp;
136) Display the 10th record of emp table without using group by and
rowid?
select * from (
select rownum as rno,emp.* from emp ) where rno=10;
140) Display those employee whose joining of month and grade is equal.
select * from emp where to_char(doj,'mm') in ( select grad from salgrade)
146) Oops I forgot give the primary key constraint. Add in now.
alter table emp add constraint pk_id_emp primary key;
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.
151) My boss has changed his mind. Now he doesn't want to pay more than
10,000.so revoke that salary constraint.
alter table emp drop constraint constraint_name;
155) This deptno column should be related to deptno column of dept table;
alter table emp add constraint fk_deptno_emp foreign key(deptno)
references dept(deptno) on delete set null;
157) Create table called as newemp. Using single command create this
table
as well as get data into this table(use create table as);
create table new_emp as select * from emp;
158) Delete the rows of employees who are working in the company for more
than 2 years.
delete from emp where to_char(sysdate,'yyyy')-to_char(doj,'yyyy')>2;
161) Display employee name and department name for each employee.
165) Display the department name and total number of employees in each
department.
select a.deptno,b.dname,count(a.empno) from emp a inner join
dept b on b.deptno=a.deptno group by a.deptno,b.dname;
167) Display itemname and total sales amount for each item.
168) Write a Query To Delete The Repeted Rows from emp table;
delete from emp a where a.rowid >(
select min(rowid) from emp b where a.id=b.id);