Hi,
I have following tables.
genre:
genre_id
name
actors:
actor_id
name
movies:
movie_id
actor_id
genre_id
title
I have following query to select all the actors with genre_id 3.
select a.name, m.genre_id from
actors as a
, movies as m
where
m.genre_id = 3;
is it possible to make a query without "movies as m" since I do not need m.genre_id. I just want to display actors name.