3 lines
113 B
SQL
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; |