The 3rd MAX Salary in The Emp Table.: SQL Important Interview Queries by Prazval - Ks@Odigurus
The 3rd MAX Salary in The Emp Table.: SQL Important Interview Queries by Prazval - Ks@Odigurus
KS@ODIGURUS
WWW.ODIGURUS.COM
SQL IMPORTANT INTERVIEW QUERIES BY PRAZVAL.KS@ODIGURUS
15. Select all record from emp table where deptno =10 or 40.
16. Select all record from emp table where deptno=30 and sal>1500.
17. Select all record from emp where job not in SALESMAN or
CLERK.
19. Select all records where ename starts with ‘S’ and its lenth is 6
char.
WWW.ODIGURUS.COM
SQL IMPORTANT INTERVIEW QUERIES BY PRAZVAL.KS@ODIGURUS
20. Select all records where ename may be any no of character but it
should end with ‘R’.
select * from emp where sal> any(select sal from emp where sal<3000);
select * from emp where sal> all(select sal from emp where sal<3000);
25. Select all the employee group by deptno and sal in descending
order.
26. How can I create an empty table emp1 with same structure as
emp?
WWW.ODIGURUS.COM
SQL IMPORTANT INTERVIEW QUERIES BY PRAZVAL.KS@ODIGURUS
once?
(Select * from emp) Union (Select * from emp1)
30. How to fetch only common records from two tables emp and
emp1?
(Select * from emp) Intersect (Select * from emp1)
31. How can I retrive all records of emp1 those should not present in
emp2?
(Select * from emp) Minus (Select * from emp1)
32. Count the totalsa deptno wise where more than 2 employees
exist.
SELECT deptno, sum(sal) As totalsal
FROM emp
GROUP BY deptno
HAVING COUNT(empno) > 2
WWW.ODIGURUS.COM