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

I have a query where I wish to retrieve the oldest X records. At present my query is something like the following:

SELECT Id, Title, Comments, CreatedDate
FROM MyTable
WHERE CreatedDate > @OlderThanDate
ORDER BY CreatedDate DESC

I know that normally I would remove the 'DESC' keyword to switch the order of the records, however in this instance I still want to get records ordered with the newest item first.

So I want to know if there is any means of performing this query such that I get the oldest X items sorted such that the newest item is first. I should also add that my database exists on SQL Server 2005.

share|improve this question

3 Answers

up vote 16 down vote accepted

Why not just use a subquery?

SELECT T1.* 
FROM
(SELECT TOP X Id, Title, Comments, CreatedDate
FROM MyTable
WHERE CreatedDate > @OlderThanDate
ORDER BY CreatedDate) T1
ORDER BY CreatedDate DESC
share|improve this answer

Kalpesh, it does work, I have just used the example by Jason Punyon and it works great and my example has a join in it:

    SELECT Bottom.* from 
    (    
        SELECT TOP(@numRecords) Filter.Pk, Images.Md5, 
           FROM Images
        JOIN Filter ON Images.Pk = Filter.ImagePk AND Images.CasePk = Filter.CasePk
           WHERE Filter.Pk < @recordPk
           AND Filter.CasePk = @casePk
           AND Filter.UserPk = @userPk
        ORDER BY Filter.Pk desc) Bottom ORDER BY Bottom.Pk ASC
share|improve this answer

Embed the query. You take the top x when sorted in ascending order (i.e. the oldest) and then re-sort those in descending order ...

select * 
from 
(
    SELECT top X Id, Title, Comments, CreatedDate
    FROM MyTable
    WHERE CreatedDate > @OlderThanDate
    ORDER BY CreatedDate 
) a
order by createddate desc
share|improve this answer

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.