programming-examples/sql/SQLMovieDatabase/10. Write a query in SQL to find the list of all those movies with year which include the words Boogie Nights.sql

5 lines
232 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*10. Write a query in SQL to find the list of all those movies with year which include the words Boogie Nights.*/
SELECT mov_id, mov_title, mov_year
FROM movie
WHERE mov_title LIKE '%Boogie%Nights%'
ORDER BY mov_year ASC;