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 ?
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.
|
|
|
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 -
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. |
|||||||||||
|
|
You build a table that holds movie ids and category ids: movie_category(movie_id*,category_id*) '*' = (component of) PRIMARY KEY |
||||
|
|