I'm creating a many to many relationship between content, but to simplify it I'll use an easier relationship for now. An example would be a relationship between movies. What would be the right way to store this data?

I was originally doing this:

Movie | Related Movie | Relation (Relation of the related movie)
--------------------------------
Matrix   | Matrix 2 | Sequel
Matrix 2 | Matrix   | Prequel

So Matrix 2 is the sequel of Matrix, but then I realized it doesn't seem to make sense to store the relation of the related movie instead of the relation of the actual movie. So then I tried this instead:

Movie | Relation | Related Movie 
--------------------------------
Matrix   | Prequel | Matrix 2
Matrix 2 | Sequel  | Matrix

Now I'm storing the actual relation of the movie instead of the related movie, so the row makes more sense. It's also more literal, Matrix is the prequel of Matrix 2.

However, then I realized in the front end using the 2nd way it would look like this for the Matrix page: Prequel - Matrix 2

And for the Matrix 2 page: Sequel - Matrix

So the first way seems to store the data more correctly in the backend, but not the front end. And the second way seems that it doesn't store the data correctly in the backend, but in the front end it makes more sense.

So in this case, should I actually store the data the other way around (2nd way)? Should I even be concerned about this at all? As long as it makes sense in the front end?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You needn't store both the backwards and forwards relations. Unlike a linked list, you don't have to store the prev and next pointers to be able to traverse backwards and forwards.

For example, why not do:

SELECT * FROM movies;
+----+---------------+
| id | title         |
+----+---------------+
|  1 | Matrix        |
|  2 | Matrix 2      |
|  3 | The Animatrix |
+----+---------------+

SELECT * FROM movie_relations;
+----+----------+---------------+------------------+
| id | movie_id | relation_type | related_movie_id |
+----+----------+---------------+------------------+
|  1 |        1 | sequel        |                2 |
|  2 |        1 | offshoot      |                3 |
|  3 |        2 | offshoot      |                3 |
+----+----------+---------------+------------------+

Now, if you need to find all sequels of Matrix:

SELECT related_movie_id FROM movie_relations 
WHERE movie_id = 1 AND relation_type = 'sequel'

If you need to instead find all prequels of Matrix 2, you know that this is simply the list of movies with related_movie_id 2 as a sequel:

SELECT movie_id FROM movie_relations 
WHERE related_movie_id = 2 AND relation_type = 'sequel'

Let's say you need all movies related to Matrix 2 (which has an implicit prequel and a directly specified offshoot):

SELECT DISTINCT(movies.id), title FROM movies 
    LEFT JOIN movie_relations mr_direct ON mr_direct.related_movie_id = movies.id 
    LEFT JOIN movie_relations mr_implicit ON mr_implicit.movie_id = movies.id 
WHERE mr_direct.movie_id = 2 OR mr_implicit.related_movie_id = 2;

+----+---------------+
| id | title         |
+----+---------------+
|  1 | Matrix        |
|  3 | The Animatrix |
+----+---------------+

The query is slightly more complex than if you had stored redundant data. But, I prefer to not duplicate information where unnecessary.

link|improve this answer
Hmm, but doing it this way it's harder to get the title of the actual related movie instead of the movie title itself. I.e. if I want to know the titles of related movies for Matrix, I would use: SELECT title FROM movies m INNER JOIN movies_relations mr ON m.id = mr.movie_id WHERE m.id = 1 But this will give me the title of "Matrix" which is the actual movie itself and not the title of the related movie. Maybe I have the query wrong? Doing it this way, you also have to flip the select and where fields back and forth. With the original ways I was using I can stick to one query for everything. – Joker Feb 6 '11 at 5:40
The query is backwards: SELECT movies.title FROM movies LEFT JOIN movie_relations ON movie_relations.related_movie_id = movies.id WHERE movie_relations.movie_id = 1; will pull up the correct related movies. I'll update my answer to show how it works with multiple relations, and to do it in one query. – ash Feb 6 '11 at 6:35
Updated, see answer. – ash Feb 6 '11 at 6:55
Thanks for showing the query, this seems so simple yet a little complex. Now the question is how to show the relation type of the related movie along with the title. For example, I want results of Matrix 2 related movies as: Matrix (Prequel), The Animatrix (Offshoot). If I add the relation_type as a field in the select I would get Matrix (Sequel), The Animatrix (Null). Since the sequel doesn't have a way to know the opposite is prequel, how would you do that using your method? – Joker Feb 6 '11 at 7:17
You'd have to add an IF statement in the SELECT. But, now that you mention needing these fields, I think your original thinking of keeping the redundant data would work (relation of the related movie). – ash Feb 6 '11 at 8:07
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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