programming-examples/sql/SQLMovieDatabase/19. Write a query in SQL to list all the movies with year and genres.sql

5 lines
197 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*19. Write a query in SQL to list all the movies with year and genres.*/
SELECT mov_title, mov_year, gen_title
FROM movie
NATURAL JOIN movie_genres
NATURAL JOIN genres;