I have student marks in a student table. I need second
highest mark .Then what will the query for this?
Answer Posted / suman
select max(mark) from student where mark <
(select max(mark)from student)
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
Explain the different index configurations a table can have?
What are click through reports?
Explain alternate key, candidate key and composite key in sql server?
What is the maximum size of sql server database?
What are the dmvs?
Which is better statement or preparedstatement?
What are the methods used to protect against sql injection attack?
What is normalization? Explain different forms of normalization?
What is the maximum size of a row in sql server?
What is failover clustering overview?
What do you understand by a stored procedure?
How many types of cursor type are there?
Which is the main third-party tool used in sql server?
Write an SQL query to obtain the 2nd highest salary.
How to create a store procedure with encryption?