Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


write a query to select name from one table which has
id,name and salary from another table which has id, sal
where the salary is the second maximum

Answers were Sorted based on User's Feedback



write a query to select name from one table which has id,name and salary from another table which ..

Answer / raveendra reddy

select emp.name,emp.id,sal.salary from empDetail emp,empSal
sal where sal.salary < (select max(salary) from empSal) and
emp.id=sal.id order by desc limit 1;

Is This Answer Correct ?    10 Yes 1 No

write a query to select name from one table which has id,name and salary from another table which ..

Answer / nagendra kumar m r

select top 1 e.[id],e.[name],s.salary from emp e join
emp_sal s on e.[id] = s.[id] and e.[id] in (select top 2
[id] from emp_sal order by salary desc)

Is This Answer Correct ?    1 Yes 1 No

write a query to select name from one table which has id,name and salary from another table which ..

Answer / bln

Select emp.name, emp.id, sal.salary from empDetai emp,
empSal sal
where emp.id=
(select innnerEmp.id from
(select innerEmpSal.id, innerEmpSal.sal from empSal
order innerEmpSal.salary desc

) where rowid=2;

)
And emp.id=sal.id;

This queiry initially execute the inner query and sort
records based on the salary. second inner query returns the
id of second maximum salary.

Is This Answer Correct ?    4 Yes 5 No

Post New Answer

More JDBC Interview Questions

What is database deadlock ?

0 Answers  


what are design patterns?

3 Answers   CFC, TCS, Wipro,


Explain creation of statement object with connection method create method with help of an example.

0 Answers  


What does the connection object represents?

0 Answers  


What is sqlwarning and discuss the procedure of retrieving warnings?

0 Answers  


How does a custom RowSetReader get called from a CachedRowSet?

0 Answers  


What is the purpose of the jdbc resultset interface?

0 Answers  


What does setautocommit do?

0 Answers  


Why we use while rs next ())?

0 Answers  


What is the return type of class.forname() method?

0 Answers  


What are the differences between statement and preparedstatement interface?

0 Answers  


Name the method, which is used to prepare a callablestatement.

0 Answers  


Categories