5 lines
232 B
SQL
5 lines
232 B
SQL
/*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; |