简体   繁体   中英

sql query to get data from two tables

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

SELECT movie_name
FROM table1
JOIN table2 USING (movie_id)
WHERE movie_genre = 'some_genre'

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM