0

私はFacebookユーザーをRailsアプリで初めてのステータスにしようとしました。

私はこれを試しました

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

しかし、それは最初に作られたステータスを取得していません

4

1 に答える 1

0
  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)

于 2013-02-17T19:12:02.437 に答える