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