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 news items that when created adds the time of creation date/time in unix timestamp format into the database. If i wanted to order by most recent first would i use ASC or DESC in my mysql query?

EDIT:

Thanks everyone for replying. I understand now. I will make Sarfraz answer the accepted solution as he was first to reply but thanks to everyone else to :) . Have to wait 11 minutes before i can accept it as a solution.

share|improve this question
@Col. Shrapnel - I have not fully finished it yet and wanted to make sure before i went any further. – PHPLOVER Feb 16 '11 at 19:47
oh. just one word made you such a trouble. I wish you luck. Seems you'll need a lot. – Your Common Sense Feb 16 '11 at 19:53

5 Answers

up vote 2 down vote accepted

DESC - timestamps are "higher = newer" number. So sorting by DESC(ending) will put the highest (newest) entries first.

share|improve this answer

You should perform a SQL Query like below

SELECT * FROM News ORDER BY date DESC
share|improve this answer

If i wanted to order by most recent first would i use ASC or DESC in my mysql query?

You would order by DESC for the most recent info or higher date.

share|improve this answer

Unix timestamp is number of seconds since the epoch (Dec. 1969). So, newer posts have a higher number, thus, sort DESC.

share|improve this answer

DESC will put the largest first, which would be the most recent.

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.