4 lines
156 B
MySQL
4 lines
156 B
MySQL
|
/*2. Write a query in SQL to find the year when the movie American Beauty released. */
|
||
|
SELECT mov_year
|
||
|
FROM movie
|
||
|
WHERE mov_title='American Beauty';
|