I have student marks in a student table. I need second
highest mark .Then what will the query for this?
Answer Posted / dolat ram
select max(mark) from student where mark < (select max
(mark) from student)
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How do I delete a sql server database?
List the types of recovery model available in sql server?
What is a with(nolock)?
Which sql server table is used to hold the stored procedure script?
What is forward - only cursors / read only cursor?
How do I open port 1433?
Explain differences between web edition and business edition?
Can we shrink data file in sql server?
Explain what is raid and what are different types of raid levels?
What is subreport?
How many databases can we create in a single server?
How to compare the top two records using sql?
How will you find out if there are expensive SQL statements running or not?
Find columns used in stored procedure?
When is update_statistics command used?