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
|
I have tried to get a facebook user First ever status in my rails app. I tried this
but it is not getting the first ever made status |
|||
|
|
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) |
|||
|