I have the following tables and fields.
Actors
-ActorID
-LastName
-FirstName
Movies
-MovieID
-MovieName
-Year
.
.
.
Genres
-GenreID
-Genre
Ratings
-RatingID
-Rating
MoviesActors
-MovieActorID
-MovieID
-ActorID
I figured out how to do the joins to make it display the movie with all its actors. How would I go about making it show one field with the actors first and last name without changing the table though?
Thanks!!
Actors
-ActorID
-LastName
-FirstName
Movies
-MovieID
-MovieName
-Year
.
.
.
Genres
-GenreID
-Genre
Ratings
-RatingID
-Rating
MoviesActors
-MovieActorID
-MovieID
-ActorID
I figured out how to do the joins to make it display the movie with all its actors. How would I go about making it show one field with the actors first and last name without changing the table though?
Thanks!!
Comment