Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a table in a sql server 2008 database that contains bunch of records as well as a date column. The date is inserted automatically when a new entry to the table occurs. So, it contains the date of the record that has been created.

I am trying to run a query that would return me the earliest date and the latest date in this table.

I tried something like;

SELECT     TOP(1) DateAdded AS firstdate FROM News ORDER BY DateAdded DESC;  SELECT TOP(1) DateAdded AS lastdate FROM News ORDER BY DateAdded ASC;

but it only returned the 'firstdate'.

Can anyone guide me on how to achieve this?

share|improve this question

3 Answers

up vote 3 down vote accepted
SELECT 
       MIN(DateAdded) As FirstDate,
       MAX(DateAdded) As LastDate
FROM
       News;
share|improve this answer

The answer is to use aggregates.

SELECT
    MIN(DateAdded) AS firstdate,
    MAX(DateAdded) AS lastdate
FROM
    News;

Your query returns 2 results: each works individually though

share|improve this answer
thank you for the answer, I marked Jose's answer as he wrote first and I dont want to offend anyone... – Emin Apr 26 '09 at 18:06
I can imagine a bunch of us racing to answer this one... Lucky Jose :-) – gbn Apr 26 '09 at 18:11

You could use something like this:

    select DateAdded     from (SELECT DateAdded,
           row_number() over (order by DateAdded desc) as rn,
           count(*) over () as added_value
    FROM News
) t
where rn = 1
   or rn = added_value
ORDER BY DateAdded 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.