Suppose a student column has two columns, name and marks. How to get name and marks of top three students.
Answer Posted / krishna
SELECT Name, Marks FROM Student s1 where 3 <= (SELECT COUNT(*) FROM Students s2 WHERE s1.marks = s2.marks)
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How to test database in manually?
After entering the data from the front-end application interface, how do you test whether a database is updated or not?
What are the different types of database testing?
What is difference between having clause and where clause?
What is white box testing and black box testing?
What is ddl and what are their commands?
What is database testing and what we test in database testing?
What steps does a tester take in testing stored procedures?
How do you test whether a database in updated when information is entered in the front end?
How to test database procedures and triggers?
Mention different types of indexes?
You don’t have much time or only one day time, you have to execute 100 test cases, how you will execute
Without involving database checkpoints, how you can test a sql query in qtp?
Explain what is data driven test?
In database testing, what do we need to check normally?