如何使用IN语句选择许多用户的状态?

时间:2011-10-05 00:52:30

标签: sql facebook facebook-fql

我的状态会返回许多状态:

select message from status where uid = me()

朋友的状态会返回许多状态:

select message from status where uid in ("639620453")

组合两者都会返回一个状态:

select message from status where uid in ("36818590","639620453")

它看起来像平台的一个错误。

是否有人知道一次选择多个用户状态的替代方法?

1 个答案:

答案 0 :(得分:0)

似乎有一个错误,你应该记录here。解决方法可能是查询流表。

select message, source_id
from stream 
where source_id  in ("36818590","639620453")