Let's say I am following these user_ids,ex. 1,2,3,4,5
does twitter get the latest tweets with this query ?
select*from tweets where user_id in (select id from user_id)
I am trying to do this now to develop myself, but when I think, it is too much for "in" keyword, so what do you think ?, what might be the other possibilities better than this one?
thank you :)