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
Kindly let me know how to setup JMeter for functionality testing of a Web application.. The apache help doc is good but i m little confused with it... :(
What are the important operations in database testing?
In general, how do you see automation fitting into the overall process of testing?
Hi All! Am new to Selenium and would really appreciate your help writing test cases for the following scenario: 1. Manually create 2 logins User A and User B on say, orkut.com or facebook.com. 2. Have User A invite User B as a friend. 3. Have User B accept the friend request. 4. Have User A post a comment on his own profile. 5. Have User B post a reply to that comment. 6. Each User logs out of his respective account. 7. Do not use Selenium IDE. 8. Use Selenium RC and Java.
Simplify the term defect severity.
Once you identify the tool what would be your next steps?
wat would be the parameteries for ul testing for web applilcation
What are the attributes of a good framework?
Write a short compiled module which selects random numbers?
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.
Mention a few good practices while performing automation testing.
What is ‘good code’? What is ‘good design’?
if i want to use different values in datatable with each iteration of for loop what would i do ??/
What is junit? And what is junit annotation?
How could the web element attributes be inspected in order to use them in different locators?