0

我在 iPhone 应用程序上工作,该应用程序从不同渠道获取事件并在地图上显示它们。现在我尝试在我的数据库中获取 Facebook 事件。我提出这个要求

SELECT name, venue, location, start_time, update_time FROM event WHERE update_time>1358294400 

但它不起作用。脸书回归

{
  "error": {
    "message": "Error validating access token: Session has expired at unix time 1358528400. The current unix time is 1358761880.", 
    "type": "OAuthException", 
    "code": 190, 
    "error_subcode": 463
  }
}

我怎样才能得到事件update_time

提前致谢。

4

1 回答 1

1

我猜你不能。自从-

WHERE 子句必须包含一个可索引的列。此类列在表中用*标记。

并且updated_time不是可索引的列。只有eidname在表中是可索引的event

因此,只需获取所有数据,然后根据updated_time

于 2013-01-21T12:22:58.963 回答