Complex - SQL - Queries - Complex - SQL - Queries - Examples - PDF Filename UTF-8''Complex SQL Queries - Complex SQL Queries Examples
Complex - SQL - Queries - Complex - SQL - Queries - Examples - PDF Filename UTF-8''Complex SQL Queries - Complex SQL Queries Examples
Following are some very important Complex SQL Queries Examples with answers.I have tried to explain
each and every query in detail so that everyone will get idea of how it is executed step-by-step.Following
are some Complex SQL Queries Examples with answers in detail.
Select distinct Salary from Employee e1 where 2=Select count(distinct Salary) from
Employee e2 where e1.salary<=e2.salary;
Select * from Employee a where rowid <>( select max(rowid) from Employee b
where a.Employee_num=b.Employee_num);
3.How to fetch monthly Salary of Employee if annual salary is given?(click here for Explaination)
Answer:
union
select * from (Select * from Employee e order by rowid desc) where rownum <=5;
9.How to Display Odd rows in Employee table?(90% asked Complex SQL Queries Examples)
Answer:
select * from (Select Dense_Rank() over ( order by salary desc) as Rnk,E.* from
Employee E) where Rnk=3;
select rownum, e.* from emp e where rownum<=(select count(*)/2 from emp);
minus
15.How Can i create table with same structure with data of Employee table?
Answer:
Intersect
Select * from Employee where Dept_no Not in(Select Department_no from Department);
18.How to get distinct records from the table without using distinct keyword.
Answer:
select * from Employee a where rowid = (select max(rowid) from Employee b where
a.Employee_no=b.Employee_no);
19.Select all records from Employee table whose name is ‘Amit’ and ‘Pradnya’
Answer:
20.Select all records from Employee table where name not in ‘Amit’ and ‘Pradnya’
Answer:
MS SQL:
24.How Do you find all Employees with its managers?(Consider there is manager id also in
Employee table)
Answer:
25.Display the name of employees who have joined in 2016 and salary is greater than 10000?
Answer:
Select name from Employee where Hire_Date like ‘2016%’ and salary>10000;
SELECT
Email
FROM
Employee
where NOT REGEXP_LIKE(Email, ‘[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}’, ‘i’);
Tip: User needs to know the concept of Hierarchical queries. Click here to get concept of hierarchical
queries
29.How to remove duplicate rows from table?(100% asked in Complex SQL Queries for Interviews)
Answer:
First Step: Selecting Duplicate rows from table
Tip: Use concept of max (rowid) of table. Click here to get concept of rowid.
30.How to find count of duplicate rows? (95% asked in SQL queries for Interviews )
Answer: