Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If this:

"select * from Table WHERE Date=(SELECT MAX(Date) FROM Table)"

returns newest record from the table, how to get second newest record?

share|improve this question

3 Answers

up vote 7 down vote accepted
SELECT * 
FROM Table
WHERE Date = ( SELECT MAX(Date) 
               FROM Table
               WHERE Date < ( SELECT MAX(Date) 
                              FROM Table
                            )
             ) 

or:

SELECT TOP 1 * 
FROM Table
WHERE Date < ( SELECT MAX(Date) 
               FROM Table
             ) 
ORDER BY Date DESC

or:

SELECT *
FROM
  ( SELECT t.*
         , ROW_NUMBER() OVER(ORDER BY Date DESC) AS RowNumber
    FROM Table t
  ) AS tmp
WHERE RowNumber = 2

If the Date column has unique values, all three queries will give the same result. If the column can have duplicate dates, then they may give different results (when there are ties in 1st or 2nd place). The first query will even give multiple rows in the result if there are ties in 2nd place.

share|improve this answer
They are all returning two records if the dates are the same, any solution for this? – Davor Zubak Dec 21 '11 at 13:33
The 2nd and 3rd query will always return 1 record or none. – ypercube Dec 21 '11 at 13:37
So, it depends on how you want to deal with ties. What do you want returned when all rows have identical dates? – ypercube Dec 21 '11 at 13:41
"select TOP (1) * 
 from Table   
 WHERE Date<(SELECT MAX(Date) FROM Table) 
 ORDER BY Date DESC"

should do the trick.

share|improve this answer
order by date descending and it will :D except limit isn't in SQL 2008... but top is. – xQbert Dec 21 '11 at 13:13
3  
The LIMIT clause isn't supported in SQL Server. Use TOP instead. msdn.microsoft.com/en-us/library/ms189463.aspx – Mark Byers Dec 21 '11 at 13:13
Yep, thanks for the hint! I've edited it. – Quasdunk Dec 21 '11 at 13:18

Please check this code.

SELECT * FROM category WHERE Created_Time <(SELECT MAX(Created_Time) FROM category) ORDER BY Created_Time DESC LIMIT 1

Prasad.

share|improve this answer
1  
LIMIT does not work in SQL SERVER it is MySQL syntax – Ocaso Protal Dec 21 '11 at 13:16
Oh Sorry. My fault. I didn't see which SQL server is. Thanks for noticing that. – Prasad Rajapaksha Dec 21 '11 at 14:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.