4 lines
156 B
SQL
4 lines
156 B
SQL
/*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'; |