Tagged Questions

5
votes
1answer
114 views

In a social network environment, what would be the easiest way to check for friendships globally?

For reference, here is a question on SO that I asked recently that is relevant to this question: How to model Friendship relationships On that question, we figured out a way to display news feed ...
2
votes
2answers
109 views

How to model Friendship relationships

I have been trying to figure out how to do this, and even with looking at other examples, I can't get it figured out, so maybe I can get some personalized help. I've got two tables, users_status and ...
2
votes
5answers
2k views

Friend of a friend in PHP/MySQL?

Ok I have searched before asking, all I found was several questions asking what I am but 0 answers so maybe someone who knows will see this or I will make it a more clear question. I have a social ...
2
votes
9answers
2k views

Using PHP and MySQL, how to structure a “Friendship” in database for a community website?

For community websites like Facebook, myspace, etc.. They have a feature called "Friendship", means you can add friends, send "add friends request", etc.. How to structure it in database? I means, ...
1
vote
2answers
215 views

MySQL: InnoDB |OR| MyISAM?

I have two tables: Users and Friendships. The actions I have in the website are: Register Log in Select friends/people from users table Add people as friends There are a little more actions but ...
1
vote
3answers
382 views

Best way to show friends of a user in alphabetical order

On a social network I am working on in PHP/MySQL, I have a friends page, it will show all friends a user has, like most networks do. I have a friend table in mysql, it only has a few fields. auto_ID, ...
0
votes
4answers
262 views

Mutual friends sql with join (Mysql)

I have two tables users table: id|name user_relationships id | user_id | friend_id and want to get names of mutual friends of 2 users. i.e: user_relationships 1 | 1 | 3 2 | 2 | 3 users 3| ...
0
votes
2answers
86 views

Blocking friends sql (super slow sql??)

Hi im having trouble with this sql. Basically it displays statuses that my friends posted, and it filters out the friends that i blocked. The sql is slooooowwwwwww though.. It takes 2 seconds to ...