Jump to content

New Updates/Status' Etc


aceband

Recommended Posts

SELECT users_username, tweets_tweet
FROM tweets
JOIN users ON tweets_users_id = users_id
WHERE tweets_users_id IN (
    SELECT followers_followee
    FROM followers
    WHERE followers_follower = 1
)
ORDER BY tweets_tweet_date DESC;

 

Which shows all statusses of your friends: http://webdevkid.files.wordpress.com/2009/03/twitter-clone.png?w=536&h=376 (don't mind the text)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.