Thanks, Daniel. I've read through your post a few times trying to get all information together.
I don't know, but I was planning on keeping this simple (on a level I can cope with in PHP/MySQL).

Originally Posted by
djr33
Obviously the cast for your film belongs to your film, but how exactly do you find your cast from that film?
With my scheme, I was thinking something like this:
Code:
SELECT name FROM person
JOIN cast ON actorid=actor.id
JOIN movie ON movieid=movie.id
WHERE title="Lemony Snicket"
What I want to store about each movie is
Title, Actors, Genres, Writers, Director(s), Country, Running Time, Rating, Keyword
But I figured having everything in one table is not efficient. Therefore I took out Actors, Writers and Director(s) and made Persons.
Should I also make a separate table for Country, Genres and Keyword as well?
I will read your post over to figure out how to incorporate that into my scheme. Thanks.
Bookmarks