I am executing this fql query
SELECT status_id,message FROM status WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) order by rand() limit 10
the result I get is just few statuses (about 4), instead of the 10 I asked for, and they are always the same, instead of being random as I asked.
Any advice?
Thank you in advance
SELECT status_id, message
FROM status
WHERE uid IN (
SELECT uid2 LIMIT 10
FROM Friend
WHERE uid=me())
ORDER BY rand()