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 tried to get a facebook user First ever status in my rails app.

I tried this

SELECT status_id,time,message FROM status WHERE uid=me() AND source = 0 ORDER BY status_id ASC LIMIT 1

but it is not getting the first ever made status

share|improve this question

1 Answer

  SELECT status_id,time,message FROM status WHERE uid=me() AND source = 0 ORDER BY time ASC LIMIT 1

The above query works good. I just replaced status_id with time to sort the result by time (Unix Timestamp where the least is earliest)

share|improve this answer
It returns first of latest 100 statuses not first of all user statuses made from the begining – Taimoor Changaiz Feb 18 at 11:15

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.