programming-examples/sql/SQLMovieDatabase/1. Write a query in SQL to find the name and year of the movies.sql
2019-11-18 14:05:53 +01:00

3 lines
113 B
SQL

/*1. Write a query in SQL to find the name and year of the movies. */
SELECT mov_title, mov_year
FROM movie;