programming-examples/sql/SQLMovieDatabase/2. Write a query in SQL to find the year when the movie American Beauty released.sql

4 lines
156 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*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';