fql - fbconnect 获得第一篇帖子
我想获得有史以来的第一个流记录。我尝试过:
SELECT post_id,created_time FROM stream WHERE source_id = 610611346 ORDER BY created_time ASC LIMIT 1
但它给了我最新的而不是第一个帖子:(。我将限制增加到 5 只是为了看看它带回来的内容,它只是按升序排列的最后 5 个帖子。我想我'我将 LIMIT 与索引混淆了,这该怎么办
?
I want to get the first stream record ever. I tried:
SELECT post_id,created_time FROM stream WHERE source_id = 610611346 ORDER BY created_time ASC LIMIT 1
But it gives me the LATEST instead of the FIRST post :(. I increased the limit to 5 just to have a look at what it was bringing back and it is simply the last 5 posts in ascending order. I guess I'm confusing LIMIT with like an index. How can this be done?
Mike
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您出现以下情况,会发生什么情况:
What happens if you: