I have a MySQL DB in which I store data about each user.
I would like to add a list of friends for each user. Should I create a table of friends for each user in the DB or is there a better way?
|
I have a MySQL DB in which I store data about each user. I would like to add a list of friends for each user. Should I create a table of friends for each user in the DB or is there a better way? |
|||||||||||
|
|
Assuming all your friends are also in the user table you will need a friends table which defines a simple one-to-many relationship - linking the users table back to itself. So
Where both UserIDLink1 and UserIDLink2 are foreign keys on the Users table. So for instance if I have three users
and Joe and Jane are friends then the Friends table would contain a single row
The above implicitly assumes that if A is a friend of B then B is a friend of A - if this isn't the case you'd probably want to rename UserIDLink1 and UserIDLink2 to UserID and FriendID or similar - in which case you'd have up to double the records too. Also for the bi-directional configuration (A is a friend of B if B is a friend of A) you should set up indexes on the Friends table for (UserIDLink1,UserIDLink2) and (UserIDLink2,UserIDLink1) to ensure access is always efficient if we were searching either for friends of joe or friends of jane (if you didn't set up the second index then the first query would be an efficient index lookup but the second would require a full table scan). If your links were not bidirectional this wouldn't be necessary to find out who A's friends are, but you would still probably most require it as you'll likely also need to find out who B is a friend of. |
||||
|
|
|
Assuming your
This setup supports that Peter is a friend of Mary, but Mary doesn't think of Peter like that. But the data exists to infer that Peter is an acquaintance for Mary... The primary key being both columns also stops duplicates. |
|||
|
|
|
Create a table that contains all friends Each row in the table will contain the ID of the user and the id of their friend |
|||||||
|
|
You are looking for M-to-N or many-to-many join table. Table Users:
Table Friendships
Both USER_ID and FRIEND_ID are foreign keys that reference Users table (Users.user_id). If user 123 is friend of user 921. Add row (123, 921) to Friendships table. |
|||
|
|
|
Create a single table for all the friends and give each friend a UsersID which is equal to their respective users key |
|||
|
|