Write a query to find second highest salary of an employee.
Answer Posted / rajesh kole
SELECT MIN(Sal) FROM Employee
WHERE Sal IN
(SELECT TOP 4 Sal FROM employee ORDER BY Sal DESC)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
On what basis you can map the success of automation testing?
Give some examples for defect management tools?
What is hybrid automation?
wat would be the -ve test case for search where u can brak it ,tell dnt tell abt spl characters insertion ,boundary values chk.
what are the questions that are generally asked in an interview if a person is having 3-4 years of exp..and in ds exp 2 yrs exp is wd automation testing
How to check if an element is visible on the page?
Tell me what are pros and cons of automating tests at ui layer?
What is a critical bug in a testing field?
How would you test your own element locator?
Tell me what is the testng.xml file used for?
What are the pre-requisites to start automation testing?
Highlight attributes of good framework?
notice the distinction between data driven testing and retesting?
What is functional and regression testing?
if i want to use different values in datatable with each iteration of for loop what would i do ??/