1

I have two tables

In table 1 I have

movie_id, movie_name

In table_2 I have

movie_id,movie_genre 

Now I want to know the the names of movie which belongs to particular genre

What should my query look like?? Thanks

2 Answers 2

3
SELECT movie_name
FROM table1
JOIN table2 USING (movie_id)
WHERE movie_genre = 'some_genre'
Sign up to request clarification or add additional context in comments.

Comments

2

Something like this:

SELECT movie_name
FROM table1 AS T1, table_2 AS T2
WHERE movie_genre='action' AND T1.movie_id=T2.movie_id

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.