在 FQL 中使用 DISTINCT 关键字
我试图在帖子评论中找到不同的用户 ID。我知道这可以通过 SQL
和 DISTINCT
子句来完成,但我不确定如何使用 fql
来完成。如果没有任何办法,假设我拉下 post_id 上的所有 fromid,那么这样做的一种方法是什么?
I am trying to find the distinct user IDs on comments to a post. I know this can be done with SQL
with the DISTINCT
clause, but I am not sure how it might be done with fql
. If there is not any way, what would be one approach to doing so, assuming I pull down all the fromid on a post_id?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FQL 与 SQL 不同,因为您不会因为与 SQL 相同的原因而获得重复项(
JOIN
等),所以不,没有DISTINCT
我所知道的关键字。如果您在解析特定查询时遇到问题,您应该发布该问题,以便我们可以提供进一步帮助。FQL isn't like SQL in the sense that you don't get duplicates for the same reasons SQL does (
JOIN
s, etc.), so no, there's noDISTINCT
keyword that I know of. If you're having an issue parsing a specific query, you should post that so we can help further.