I have student marks in a student table. I need second
highest mark .Then what will the query for this?
Answer Posted / pravin more
select max(mark) from student where mark <
(select max(mark)from student)
| Is This Answer Correct ? | 53 Yes | 14 No |
Post New Answer View All Answers
what is a live lock? : Sql server database administration
Can we use where and having clause together?
Suppose we have a table "MyTable" containing 10 rows, what query should be executed to update the odd rows "Salary" as 9000?
What is data modification?
what is a self join? : Sql server database administration
What is cube dimension? : sql server analysis services, ssas
How do you delete duplicate rows in sql server?
What are examples of triggers?
What is Extended user-defined?
What is full outer join in sql server joins?
When would you use the stored procedures or functions?
How to automatically create a log when an exception is being received into SQL Server?
What is difference between drop truncate and delete?
What is tempdb in sql server?
Can one drop a column from a table?