programming-examples/sql/SQLMovieDatabase/21. Write a query in SQL to list all the movies which released in the country other than UK.sql

6 lines
258 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*21. Write a query in SQL to list all the movies which released in the country other than UK.*/
SELECT mov_title, mov_year, mov_time,
mov_dt_rel AS Date_of_Release,
mov_rel_country AS Releasing_Country
FROM movie
WHERE mov_rel_country<>'UK';