Hello,
I found following table structures while I was watching ruby on rails tutorial.
table actors
id int 11 primary key auto_increment
name varchar 30
table movies
id int 11 primary key auto_increment
name varchar 30
table actors_movies
actor_id int 11
movie_id int 11
how to I make a query to select movies that an actor involved?
I am not asking for ruby on rails code. I want to actual mysql query string.
Thank you!