Ok, so I m querying two FQL tables: Events and event_members. On one query I get all events from the user and his friends (let s call this $events), and on the other query I get all the members attending to all those events (let s call it $attendingmembers). Both queries are returned as arrays on php, and as you may already know FQL doesn t allow INNER JOINS.
我想做的是“调整”数据, 这样我就可以同时加入结果, 并获得一个单一的阵列, 包含所有事件的细节和参加活动的人数。 两个阵列都有一个共同的“ 关键 ” : eid 。
在Sql上,这很容易,但是在FQL上,没有内部加入,所以我想我应该做连线插座,用阵列的中间部分来做类似的事情,但我无法找到办法。
帮助是感激不尽的!