Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two tables. One named status like this...

user_id |  status
--------+-----------
      1 |  random status from user 1
      2 |  random status from user 2
      3 |  random message from user 3
      4 |  staus from user 4 
      1 |  second status for user1

etc... and another named users_following like this...

user_id |  is_following
--------+-----------
      1 |  2
      1 |  3
      2 |  1
      3 |  2

meaning that user 1 is following both users 2 and 3 etc...

So, let's say I chose user 1. What is the best query (performance wise) to show the status updates of users that user 1 is following, in this case users 2 and 3

currently I have something like

SELECT * from status WHERE user_id IN(SELECT is_following FROM users_following 
WHERE user_id='1') LIMIT 0,5 

but I don't think this is good for performance if a user was following thousands+ of users

share|improve this question

1 Answer

up vote 1 down vote accepted
  1. You forgot ORDER BY date_posted DESC (or status_id)
  2. INNER JOIN would be better here

        SELECT s.*
          FROM status s
    INNER JOIN users_following f ON f.is_following = s.user_id
                                AND f.user_id = 1
      ORDER BY s.status_id DESC
         LIMIT 0, 5 
    

Notes
1. There is no single quotes around integer 1
2. You should create composite index user_id + is_following

share|improve this answer
yeah, I have the order by but I just didn't think it was that necessary for the question.. So, how would you implement the INNER JOIN into it? – barjonah Dec 23 '10 at 23:54
@barjonah: updated answer – zerkms Dec 24 '10 at 0:06
Wow, thanks. looks like its working great. So, do you think this will work good, if a user subscribed to thousands+ of users. – barjonah Dec 24 '10 at 0:16
Thanks man, I tested it on one of my tables with 4mil+ rows and it works perfect. – barjonah Dec 24 '10 at 0:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.