programming-examples/sql/SQLMovieDatabase/2. Write a query in SQL to find the year when the movie American Beauty released.sql
2019-11-18 14:05:53 +01:00

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';