Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Suppose I have a movie listing website and I want post a movie into different categories (eg: Drama , Action) And these categories should come from another table so that i can show a particular movie in two or more categories . how is it possible ?

share|improve this question

2 Answers

up vote 1 down vote accepted

What you are looking for, I believe is a many-to-many table relationship. You would have a table containing all of your movies (their names, duration, etc). And another table containing a list of all possible categories (action,drama,comedy,etc).

The trick will be to have an additional third table containing the movie to category relationship. You reference the movie's id and the category id, like this -

id | movie_id | category_id   
---|----------|-------------
 1 |    1     |      1 
 2 |    1     |      2
 3 |    2     |      3
 4 |    2     |      1

In this example, movie id 1 is in category 1 and 2. Movie id 2 is in category 1 and 3. So you see, a movie can be in more than one category.

share|improve this answer
And id is redundant! – Strawberry Jan 19 at 9:41
@str - I guess... But for the sake of example I think it actually helps to understand the data... But you are correct - the id field has no real need to be there... – Lix Jan 19 at 9:43
Well you are not duplicating the movie at all actually. All you are doing is creating a row for every category for every movie. The actual movie has only one reference in the movies table and the category has only one reference in the categories table. This is the correct way to do a many-to-many relationship – Lix Jan 19 at 9:58
1  
@Lix nice idea i will workout with that – Preethu Alex Jan 19 at 10:00

You build a table that holds movie ids and category ids:

movie_category(movie_id*,category_id*)

'*' = (component of) PRIMARY KEY

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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