Write a query to find second highest salary of an employee.
Answer Posted / aarti
select * from employees
where salary = (select mnin(salary)from (select salary from
employees where rownum <= 2 order by salary DESC)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Do you know what is robot api?
What type of scenarios can be automated?
What all different approaches can be used for designing an automation solution?
What are the important operations in database testing?
What is ‘good code’? What is ‘good design’?
When is automation testing useful?
List some advantages and disadvantages of manual testing.
hi to all, if we open a browser(for ex. yahoomail.com) using navigate command. the cursor by default focussing on the 'yahoo id' html edit box. how to get the label(ie.,yahoo id) of that html edit box using descriptive program. here we should not use identify tool to get the property,thtml editbox method. by tracing the cursor position we have to get the label name. is it possible? please let me know.
Please explain what is the difference between findelement () and findelements ()?
What is an automated test script?
Elaborate the fields in bug report in automated testing
What criteria do you consider for automating a test?
How can we make one test method dependent on other using testng?
Could any one share scripts... where we can Parameterize radio buttons and Check boxes in Rational Robot.
Tell us what is junit? And what is junit annotation?