Write a query to find second highest salary of an employee.
Answer Posted / rk
select sal from
(select rank() OVER (order by sal desc) sno ,sal from emp)
y
where sno= n
here
y : is the alias name for (select rank() OVER (order by sal
desc) sno ,sal from emp)
n : is the number ie if u want second highest sal then 'n'
value will be 2. for third highest n= 3...
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
What are the things that one should consider for selecting a project for test automation? For example, stability, etc.
Explain me how do you send enter/tab keys in webdriver?
What are different coverages in function testing?
Tell us what is the alternate way to click on login button?
Explain me how to check if an element is visible on the page?
When will you not automate testing?
Explain me what kinds of annotations are used in testng?
Explain me what is testng and why is it better than junit?
What is test automation or automation testing?
How to get the Background color of a Tab or Button in TestComplete Tool using VBScript? I have a validation that to verify whether a particular tab or button is highlighted or not. When the tab or button is highlighted the background color will be in Yellow color.If i get the background color then its easy for us to validate whether its highlighted or not. Can anybody help me on this?. Thanks in Advance.
hi every one this is ashok pls any one give answer me pls question is while testing with selenium after giving id user name and password , the inbox will be open , how to handle this one
What is a framework for automation testing?
How to Rcognize the Objects in the Web Page Dialog Using QTP
Is automation testing in agile methodology useful or not?
Tell me what is the firefoxdriver, class or an interface? And which interface does it implement?