Actor
actorID | firstName | lastName |
1 | John | Doe |
2 | Jane | Smith |
3 | Tom | Cruise |
4 | Emily | Brown |
5 | Chris | Evans |
Film
filmID | title | releaseYear | genre |
1 | The Matrix | 1999 | Action |
2 | Titanic | 1997 | Romance |
3 | Indiana Jones | 1981 | Adventure |
4 | Avengers Endgame | 2019 | Action |
5 | Spider Man | 2002 | Action |
ActionFilm
actionFilmID | filmID | actionColumn |
| (→ Film.filmID) | |
1 | 1 | Fight Scenes |
2 | 2 | Car Chases |
3 | 3 | Explosions |
4 | 4 | Superheroes |
5 | 5 | Villain Monologues |
AdventureFilm
adventureFilmID | filmID | adventureColumn |
| (→ Film.filmID) | |
1 | 1 | Puzzle Solving |
2 | 2 | Traveling |
3 | 3 | Hidden Treasures |
4 | 4 | Survival Skills |
5 | 5 | Historical Locations |
StarsInFilms
starsInFilmsID | actorID | filmID |
| (→ Actor.actorID) | (→ Film.filmID) |
1 | 1 | 1 |
2 | 2 | 2 |
3 | 3 | 3 |
4 | 4 | 4 |
5 | 5 | 5 |
FilmsByGenre
filmsByGenreID | filmID | genre |
| (→ Film.filmID) | |
1 | 1 | Action |
2 | 2 | Adventure |
3 | 3 | Action |
4 | 4 | Adventure |
5 | 5 | Action |