I have student marks in a student table. I need second
highest mark .Then what will the query for this?
Answer Posted / rakesh
In Oracle
select marks from
(select marks from
(select marks from students order by marks desc)
where rownum<3
order by marks asc)
where rownum<2
Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Explain about unique identifier data type in sql server?
What is 2nf normalization?
What is the purpose of object explorer and its features? : sql server management studio
How do you troubleshoot errors in a SQL Server Agent Job?
What are the different types of data sources in ssrs?
How do I open a .db file?
What is purpose of normalization?
How to throw custom exception in Stored Procedure?
Why is the need for data conversion transformations?
What are the rendering extensions of ssrs?
How can i Relate Tables in SSIS
Can you insert NULL in unique column?
How can I create a report based on a query? : sql server management studio
how can you check the level of fragmentation on a table? : Sql server administration
Write the syntax for stuff function in an sql server?