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 check a trigger is fired or not, while doing database testing?
Mention different types of joins?
How to test a dts package created for data insert update and delete?
What is the process of database testing?
Without involving database checkpoints, how you can test a sql query in qtp?
What is the way of writing testcases for database testing?
Explain database testing?
In database testing, what all things are required for writing good test cases?
In database testing, what do we need to check normally?
How to test database in manually?
What is cmmi and describe different levels of cmm?
Without using database checkpoints, how you test a sql query in qtp?
What we normally check for the database testing?
What is difference between having clause and where clause?
Mention different types of indexes?