MOST IMPORTANT QUERIES (90% ASKED IN INTERVIEWS) 1.Query to find Second Highest Salary of Employee?(click for explaination) Answer:- Select distinct Salary from Employee e1 where 2= Select count(distinct Salary) from Employee e2 where e1.salary<=e2.salary; 2.Query to find duplicate rows in table?(click here for explaination) Answer :- Select * from Employee a where row_id != select max(row_id) for 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:- Select Employee_name,Salary/12 as ‘Monthly Salary’ from employee; Click here to get information on ROW_ID 4.What is the Query to fetch first record from Employee table? Answer:- Select * from Employee where Rownum =1; Click here to get What is Rownum? 5.What is the Query to fetch last record from the table? Answer:- Select * from Employee whe...