├── LICENSE ├── README.md ├── actors.sql └── movies.sql /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Slack 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Backend interview preparation 2 | 3 | In this repository you'll find two files, `actors.sql` and `movies.sql`. They comprise titles and actors from the top 250 movies from the Internet Movie Database (IMDB). For simplicity's sake, it is not fully normalized. We will not be using this particular dataset during your onsite, but you can use it to familiarize yourself with SQLite and make sure you can access it from your preferred language. 4 | 5 | ## Preparing for the onsite 6 | 7 | Make sure you've installed `sqlite` on your machine, and, if necessary, a library or driver to access SQLite programmatically using the language of your choice. Some languages have SQLite support built-in, and some don't. 8 | 9 | We want you to feel prepared for the on-site. Before you arrive, be able to answer the following questions using the dataset we've provided: 10 | 11 | 1. What is the longest-running movie? 12 | 2. What movie has the most actors? 13 | 3. What is the breakdown of top movies by rating? 14 | 15 | 16 | -------------------------------------------------------------------------------- /movies.sql: -------------------------------------------------------------------------------- 1 | PRAGMA foreign_keys=OFF; 2 | BEGIN TRANSACTION; 3 | COMMIT; 4 | PRAGMA foreign_keys=OFF; 5 | BEGIN TRANSACTION; 6 | CREATE TABLE movies ( 7 | id INTEGER PRIMARY KEY NOT NULL, 8 | imdb_id VARCHAR(20) NOT NULL, 9 | title VARCHAR(255) NOT NULL, 10 | director VARCHAR(255) NOT NULL, 11 | year INT NOT NULL, 12 | rating VARCHAR(8) NOT NULL, 13 | genres VARCHAR(255) NOT NULL, 14 | runtime INT NOT NULL, 15 | country VARCHAR(255) NOT NULL, 16 | language VARCHAR(255) NOT NULL, 17 | imdb_score NUMERIC NOT NULL, 18 | imdb_votes INT NOT NULL, 19 | metacritic_score NUMERIC NOT NULL 20 | ); 21 | INSERT INTO movies VALUES(1,'tt0050083','12 Angry Men','Sidney Lumet',1957,'APPROVED','Crime, Drama',96,'USA','English',8.9000000000000003552,551194,96); 22 | INSERT INTO movies VALUES(2,'tt2024544','12 Years a Slave','Steve McQueen',2013,'R','Biography, Drama, History',134,'USA, UK','English',8.0999999999999996447,540713,96); 23 | INSERT INTO movies VALUES(3,'tt0062622','2001: A Space Odyssey','Stanley Kubrick',1968,'G','Adventure, Sci-Fi',149,'UK, USA','English, Russian',8.3000000000000007105,508060,82); 24 | INSERT INTO movies VALUES(4,'tt1187043','3 Idiots','Rajkumar Hirani',2009,'PG-13','Comedy, Drama',170,'India','Hindi, English',8.4000000000000003552,275250,67); 25 | INSERT INTO movies VALUES(5,'tt0056801','8½','Federico Fellini',1963,'NOT RATED','Drama',138,'Italy, France','Italian, French, English, German',8.0999999999999996447,94671,0); 26 | INSERT INTO movies VALUES(6,'tt0268978','A Beautiful Mind','Ron Howard',2001,'PG-13','Biography, Drama',135,'USA','English',8.1999999999999992894,724332,72); 27 | INSERT INTO movies VALUES(7,'tt0066921','A Clockwork Orange','Stanley Kubrick',1971,'R','Crime, Drama, Sci-Fi',136,'UK, USA','English',8.3000000000000007105,651025,78); 28 | INSERT INTO movies VALUES(8,'tt1832382','A Separation','Asghar Farhadi',2011,'PG-13','Drama, Mystery',123,'Iran, France','Persian',8.3000000000000007105,183235,95); 29 | INSERT INTO movies VALUES(9,'tt1280558','A Wednesday','Neeraj Pandey',2008,'NOT RATED','Crime, Drama, Mystery',104,'India','Hindi, English',8.1999999999999992894,63624,0); 30 | INSERT INTO movies VALUES(10,'tt0078748','Alien','Ridley Scott',1979,'R','Horror, Sci-Fi',116,'UK, USA','English',8.5,675363,83); 31 | INSERT INTO movies VALUES(11,'tt0090605','Aliens','James Cameron',1986,'R','Action, Adventure, Sci-Fi',137,'USA','English',8.4000000000000003552,569800,86); 32 | INSERT INTO movies VALUES(12,'tt0042192','All About Eve','Joseph L. Mankiewicz',1950,'NOT RATED','Drama',138,'USA','English, French',8.3000000000000007105,100938,98); 33 | INSERT INTO movies VALUES(13,'tt0086879','Amadeus','Milos Forman',1984,'R','Biography, Drama, History',160,'USA, France, Czechoslovakia','English, Italian, Latin, German',8.3000000000000007105,317642,93); 34 | INSERT INTO movies VALUES(14,'tt0169547','American Beauty','Sam Mendes',1999,'R','Drama',122,'USA','English',8.4000000000000003552,945109,86); 35 | INSERT INTO movies VALUES(15,'tt0120586','American History X','Tony Kaye',1998,'R','Crime, Drama',119,'USA','English',8.5,900775,62); 36 | INSERT INTO movies VALUES(16,'tt0245712','Amores Perros','Alejandro G. Iñárritu',2000,'R','Drama, Thriller',154,'Mexico','Spanish',8.0999999999999996447,198604,83); 37 | INSERT INTO movies VALUES(17,'tt0211915','Amélie','Jean-Pierre Jeunet',2001,'R','Comedy, Romance',122,'France, Germany','French, Russian, English',8.3000000000000007105,621409,69); 38 | INSERT INTO movies VALUES(18,'tt0060107','Andrei Rublev','Andrei Tarkovsky',1966,'NOT RATED','Biography, Drama, History',205,'Soviet Union','Russian, Italian, Tatar',8.1999999999999992894,35387,0); 39 | INSERT INTO movies VALUES(19,'tt0075686','Annie Hall','Woody Allen',1977,'PG','Comedy, Romance',93,'USA','English, German',8,228961,92); 40 | INSERT INTO movies VALUES(20,'tt0078788','Apocalypse Now','Francis Ford Coppola',1979,'R','Drama, War',147,'USA','English, French, Vietnamese',8.5,520858,94); 41 | INSERT INTO movies VALUES(21,'tt4154756','Avengers: Infinity War','Anthony Russo, Joe Russo',2018,'PG-13','Action, Adventure, Fantasy',149,'USA','English',8.6999999999999992894,395069,68); 42 | INSERT INTO movies VALUES(22,'tt0088763','Back to the Future','Robert Zemeckis',1985,'PG','Adventure, Comedy, Sci-Fi',116,'USA','English',8.5,868829,86); 43 | INSERT INTO movies VALUES(23,'tt0072684','Barry Lyndon','Stanley Kubrick',1975,'PG','Adventure, Drama, History',185,'UK, USA','English, German, French',8.0999999999999996447,124273,0); 44 | INSERT INTO movies VALUES(24,'tt0372784','Batman Begins','Christopher Nolan',2005,'PG-13','Action, Adventure',140,'USA, UK','English, Urdu, Mandarin',8.3000000000000007105,1128171,70); 45 | INSERT INTO movies VALUES(25,'tt0112471','Before Sunrise','Richard Linklater',1995,'R','Drama, Romance',101,'USA, Austria, Switzerland','English, German, French',8.0999999999999996447,223475,77); 46 | INSERT INTO movies VALUES(26,'tt0381681','Before Sunset','Richard Linklater',2004,'R','Drama, Romance',80,'USA','English, French',8.0999999999999996447,195916,90); 47 | INSERT INTO movies VALUES(27,'tt0052618','Ben-Hur','William Wyler',1959,'G','Adventure, Drama, History',212,'USA','English',8.0999999999999996447,191488,90); 48 | INSERT INTO movies VALUES(28,'tt0040522','Bicycle Thieves','Vittorio De Sica',1948,'NOT RATED','Drama',89,'Italy','Italian',8.3000000000000007105,116746,0); 49 | INSERT INTO movies VALUES(29,'tt0083658','Blade Runner','Ridley Scott',1982,'R','Sci-Fi, Thriller',117,'USA, Hong Kong','English, German, Cantonese, Japanese, Hungarian, Arabic',8.1999999999999992894,589433,89); 50 | INSERT INTO movies VALUES(30,'tt1856101','Blade Runner 2049','Denis Villeneuve',2017,'R','Drama, Mystery, Sci-Fi',164,'USA, UK, Hungary, Canada','English, Finnish, Japanese, Hungarian, Russian, Somali, Spanish',8.0999999999999996447,314938,81); 51 | INSERT INTO movies VALUES(31,'tt0112573','Braveheart','Mel Gibson',1995,'R','Biography, Drama, History',178,'USA','English, French, Latin, Scottish Gaelic',8.4000000000000003552,850470,68); 52 | INSERT INTO movies VALUES(32,'tt0064115','Butch Cassidy and the Sundance Kid','George Roy Hill',1969,'PG','Biography, Crime, Drama',110,'USA','English, Spanish',8.0999999999999996447,178708,66); 53 | INSERT INTO movies VALUES(33,'tt0034583','Casablanca','Michael Curtiz',1942,'PG','Drama, Romance, War',102,'USA','English, French, German, Italian',8.5,449731,100); 54 | INSERT INTO movies VALUES(34,'tt0112641','Casino','Martin Scorsese',1995,'R','Crime, Drama',178,'USA, France','English',8.1999999999999992894,392395,73); 55 | INSERT INTO movies VALUES(35,'tt0092067','Castle in the Sky','Hayao Miyazaki',1986,'PG','Animation, Adventure, Family',125,'Japan','Japanese',8.0999999999999996447,118834,78); 56 | INSERT INTO movies VALUES(36,'tt0264464','Catch Me If You Can','Steven Spielberg',2002,'PG-13','Biography, Crime, Drama',141,'USA, Canada','English, French',8.0999999999999996447,661837,75); 57 | INSERT INTO movies VALUES(37,'tt0118849','Children of Heaven','Majid Majidi',1997,'PG','Drama, Family',89,'Iran','Persian',8.3000000000000007105,44875,0); 58 | INSERT INTO movies VALUES(38,'tt0071315','Chinatown','Roman Polanski',1974,'R','Drama, Mystery, Thriller',130,'USA','English, Cantonese, Spanish',8.1999999999999992894,249658,86); 59 | INSERT INTO movies VALUES(39,'tt0095765','Cinema Paradiso','Giuseppe Tornatore',1988,'R','Drama',155,'Italy, France','Italian',8.5,186441,80); 60 | INSERT INTO movies VALUES(40,'tt0033467','Citizen Kane','Orson Welles',1941,'PG','Drama, Mystery',119,'USA','English',8.4000000000000003552,345747,100); 61 | INSERT INTO movies VALUES(41,'tt0021749','City Lights','Charles Chaplin',1931,'G','Comedy, Drama, Romance',87,'USA','English',8.5999999999999996447,135980,0); 62 | INSERT INTO movies VALUES(42,'tt0317248','City of God','Fernando Meirelles, Kátia Lund(co-director)',2002,'R','Crime, Drama',130,'Brazil, France','Portuguese',8.5999999999999996447,610240,79); 63 | INSERT INTO movies VALUES(43,'tt2380307','Coco','Lee Unkrich, Adrian Molina(co-director)',2017,'PG','Animation, Adventure, Comedy',105,'USA','English, Spanish',8.4000000000000003552,199339,81); 64 | INSERT INTO movies VALUES(44,'tt0091251','Come and See','Elem Klimov',1985,'NOT RATED','Drama, War',142,'Soviet Union','Belarusian, Russian, German',8.1999999999999992894,39014,0); 65 | INSERT INTO movies VALUES(45,'tt0061512','Cool Hand Luke','Stuart Rosenberg',1967,'GP','Crime, Drama',126,'USA','English',8.0999999999999996447,141032,91); 66 | INSERT INTO movies VALUES(46,'tt5074352','Dangal','Nitesh Tiwari',2016,'NOT RATED','Action, Biography, Drama',161,'India','Hindi, Tamil, Telugu',8.5,97450,0); 67 | INSERT INTO movies VALUES(47,'tt0082096','Das Boot','Wolfgang Petersen',1981,'R','Adventure, Drama, Thriller',149,'West Germany','German, English, French',8.4000000000000003552,197859,86); 68 | INSERT INTO movies VALUES(48,'tt0097165','Dead Poets Society','Peter Weir',1989,'PG','Comedy, Drama',128,'USA','English, Latin',8.0999999999999996447,336865,79); 69 | INSERT INTO movies VALUES(49,'tt0046911','Diabolique','Henri-Georges Clouzot',1955,'NOT RATED','Crime, Drama, Horror',117,'France','French, English',8.0999999999999996447,51308,0); 70 | INSERT INTO movies VALUES(50,'tt0046912','Dial M for Murder','Alfred Hitchcock',1954,'PG','Crime, Thriller',105,'USA','English',8.1999999999999992894,132470,0); 71 | INSERT INTO movies VALUES(51,'tt0095016','Die Hard','John McTiernan',1988,'R','Action, Thriller',132,'USA','English, German, Italian, Japanese',8.1999999999999992894,684102,70); 72 | INSERT INTO movies VALUES(52,'tt1853728','Django Unchained','Quentin Tarantino',2012,'R','Drama, Western',165,'USA','English, German, French, Italian',8.4000000000000003552,1137223,81); 73 | INSERT INTO movies VALUES(53,'tt0246578','Donnie Darko','Richard Kelly',2001,'R','Drama, Sci-Fi, Thriller',113,'USA','English',8.0999999999999996447,667055,88); 74 | INSERT INTO movies VALUES(54,'tt0036775','Double Indemnity','Billy Wilder',1944,'PASSED','Crime, Drama, Film-Noir',107,'USA','English',8.3000000000000007105,119602,95); 75 | INSERT INTO movies VALUES(55,'tt0363163','Downfall','Oliver Hirschbiegel',2004,'R','Biography, Drama, History',156,'Germany, Austria, Italy','German, Russian, Hungarian',8.1999999999999992894,290472,82); 76 | INSERT INTO movies VALUES(56,'tt0057012','Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb','Stanley Kubrick',1964,'PG','Comedy',95,'USA, UK','English, Russian',8.4000000000000003552,395100,96); 77 | INSERT INTO movies VALUES(57,'tt0338013','Eternal Sunshine of the Spotless Mind','Michel Gondry',2004,'R','Drama, Romance, Sci-Fi',108,'USA','English',8.3000000000000007105,777946,89); 78 | INSERT INTO movies VALUES(58,'tt0116282','Fargo','Joel Coen, Ethan Coen',1996,'R','Crime, Drama, Thriller',98,'USA, UK','English',8.0999999999999996447,531928,85); 79 | INSERT INTO movies VALUES(59,'tt0137523','Fight Club','David Fincher',1999,'R','Drama',139,'USA, Germany','English',8.8000000000000007105,1575933,66); 80 | INSERT INTO movies VALUES(60,'tt0266543','Finding Nemo','Andrew Stanton, Lee Unkrich(co-director)',2003,'G','Animation, Adventure, Comedy',100,'USA','English',8.0999999999999996447,816790,90); 81 | INSERT INTO movies VALUES(61,'tt0059578','For a Few Dollars More','Sergio Leone',1965,'R','Western',132,'Italy, Spain, West Germany','Italian, English',8.3000000000000007105,192172,74); 82 | INSERT INTO movies VALUES(62,'tt0109830','Forrest Gump','Robert Zemeckis',1994,'PG-13','Drama, Romance',142,'USA','English',8.8000000000000007105,1494511,82); 83 | INSERT INTO movies VALUES(63,'tt0093058','Full Metal Jacket','Stanley Kubrick',1987,'R','Drama, War',116,'UK, USA','English, Vietnamese',8.3000000000000007105,575150,76); 84 | INSERT INTO movies VALUES(64,'tt0083987','Gandhi','Richard Attenborough',1982,'PG','Biography, Drama, History',191,'UK, India, USA','English',8.0999999999999996447,198613,79); 85 | INSERT INTO movies VALUES(65,'tt1954470','Gangs of Wasseypur','Anurag Kashyap',2012,'N/A','Action, Crime, Drama',321,'India','Hindi',8.1999999999999992894,61502,89); 86 | INSERT INTO movies VALUES(66,'tt0172495','Gladiator','Ridley Scott',2000,'R','Action, Adventure, Drama',155,'USA, UK','English',8.5,1138558,67); 87 | INSERT INTO movies VALUES(67,'tt2267998','Gone Girl','David Fincher',2014,'R','Crime, Drama, Mystery',149,'USA','English',8.0999999999999996447,708934,79); 88 | INSERT INTO movies VALUES(68,'tt0031381','Gone with the Wind','Victor Fleming, George Cukor, Sam Wood',1939,'G','Drama, History, Romance',238,'USA','English',8.1999999999999992894,250641,97); 89 | INSERT INTO movies VALUES(69,'tt0119217','Good Will Hunting','Gus Van Sant',1997,'R','Drama',126,'USA','English',8.3000000000000007105,722300,70); 90 | INSERT INTO movies VALUES(70,'tt0099685','Goodfellas','Martin Scorsese',1990,'R','Crime, Drama',146,'USA','English, Italian',8.6999999999999992894,848461,89); 91 | INSERT INTO movies VALUES(71,'tt1205489','Gran Torino','Clint Eastwood',2008,'R','Drama',116,'Germany, USA','English, Hmong',8.0999999999999996447,641712,72); 92 | INSERT INTO movies VALUES(72,'tt0095327','Grave of the Fireflies','Isao Takahata',1988,'NOT RATED','Animation, Drama, War',89,'Japan','Japanese',8.5,178750,0); 93 | INSERT INTO movies VALUES(73,'tt0107048','Groundhog Day','Harold Ramis',1993,'PG','Comedy, Fantasy, Romance',101,'USA','English, French, Italian',8,515385,72); 94 | INSERT INTO movies VALUES(74,'tt2015381','Guardians of the Galaxy','James Gunn',2014,'PG-13','Action, Adventure, Sci-Fi',121,'USA','English',8.0999999999999996447,862056,76); 95 | INSERT INTO movies VALUES(75,'tt1028532','Hachi: A Dog''s Tale','Lasse Hallström',2009,'G','Drama, Family',93,'UK, USA','English, Japanese',8.0999999999999996447,206101,0); 96 | INSERT INTO movies VALUES(76,'tt2119532','Hacksaw Ridge','Mel Gibson',2016,'R','Biography, Drama, History',139,'Australia, USA','English, Japanese',8.1999999999999992894,327390,71); 97 | INSERT INTO movies VALUES(77,'tt1201607','Harry Potter and the Deathly Hallows: Part 2','David Yates',2011,'PG-13','Adventure, Drama, Fantasy',130,'USA, UK','English',8.0999999999999996447,650933,87); 98 | INSERT INTO movies VALUES(78,'tt0113277','Heat','Michael Mann',1995,'R','Crime, Drama, Thriller',170,'USA','English, Spanish',8.1999999999999992894,493158,76); 99 | INSERT INTO movies VALUES(79,'tt0395169','Hotel Rwanda','Terry George',2004,'PG-13','Biography, Drama, History',121,'UK, South Africa, Italy','English, French',8.0999999999999996447,301154,79); 100 | INSERT INTO movies VALUES(80,'tt0892769','How to Train Your Dragon','Dean DeBlois, Chris Sanders',2010,'PG','Animation, Action, Adventure',98,'USA','English',8.0999999999999996447,574232,74); 101 | INSERT INTO movies VALUES(81,'tt0347149','Howl''s Moving Castle','Hayao Miyazaki',2004,'PG','Animation, Adventure, Family',119,'Japan','Japanese',8.1999999999999992894,264367,80); 102 | INSERT INTO movies VALUES(82,'tt0044741','Ikiru','Akira Kurosawa',1952,'NOT RATED','Drama',143,'Japan','Japanese',8.3000000000000007105,54466,0); 103 | INSERT INTO movies VALUES(83,'tt0118694','In the Mood for Love','Kar-Wai Wong',2000,'PG','Drama, Romance',98,'Hong Kong, China','Cantonese, Shanghainese, French, Spanish',8.0999999999999996447,98079,85); 104 | INSERT INTO movies VALUES(84,'tt0107207','In the Name of the Father','Jim Sheridan',1993,'R','Biography, Drama',133,'Ireland, UK, USA','English',8.0999999999999996447,134004,84); 105 | INSERT INTO movies VALUES(85,'tt1255953','Incendies','Denis Villeneuve',2010,'R','Drama, Mystery, War',131,'Canada, France','French, Arabic, English',8.1999999999999992894,111824,80); 106 | INSERT INTO movies VALUES(86,'tt1375666','Inception','Christopher Nolan',2010,'PG-13','Action, Adventure, Sci-Fi',148,'USA, UK','English, Japanese, French',8.8000000000000007105,1721888,74); 107 | INSERT INTO movies VALUES(87,'tt3606756','Incredibles 2','Brad Bird',2018,'PG','Animation, Action, Adventure',118,'USA','English',8.1999999999999992894,72216,80); 108 | INSERT INTO movies VALUES(88,'tt0097576','Indiana Jones and the Last Crusade','Steven Spielberg',1989,'PG-13','Action, Adventure, Fantasy',127,'USA','English, German, Greek, Arabic',8.3000000000000007105,600911,65); 109 | INSERT INTO movies VALUES(89,'tt0361748','Inglourious Basterds','Quentin Tarantino, Eli Roth',2009,'R','Adventure, Drama, War',153,'Germany, USA','English, German, French, Italian',8.3000000000000007105,1051127,69); 110 | INSERT INTO movies VALUES(90,'tt2096673','Inside Out','Pete Docter, Ronnie Del Carmen(co-director)',2015,'PG','Animation, Adventure, Comedy',95,'USA','English',8.1999999999999992894,490371,94); 111 | INSERT INTO movies VALUES(91,'tt0816692','Interstellar','Christopher Nolan',2014,'PG-13','Adventure, Drama, Sci-Fi',169,'USA, UK','English',8.5999999999999996447,1193213,74); 112 | INSERT INTO movies VALUES(92,'tt0758758','Into the Wild','Sean Penn',2007,'R','Adventure, Biography, Drama',148,'USA','English, Danish',8.0999999999999996447,501358,73); 113 | INSERT INTO movies VALUES(93,'tt0025316','It Happened One Night','Frank Capra',1934,'NOT RATED','Comedy, Romance',105,'USA','English',8.0999999999999996447,80148,87); 114 | INSERT INTO movies VALUES(94,'tt0038650','It''s a Wonderful Life','Frank Capra',1946,'PG','Drama, Family, Fantasy',130,'USA','English',8.5999999999999996447,332452,89); 115 | INSERT INTO movies VALUES(95,'tt0073195','Jaws','Steven Spielberg',1975,'PG','Adventure, Drama, Thriller',124,'USA','English',8,481672,87); 116 | INSERT INTO movies VALUES(96,'tt0055031','Judgment at Nuremberg','Stanley Kramer',1961,'NOT RATED','Drama, War',186,'USA','English, German',8.1999999999999992894,56732,60); 117 | INSERT INTO movies VALUES(97,'tt0107290','Jurassic Park','Steven Spielberg',1993,'PG-13','Adventure, Sci-Fi, Thriller',127,'USA','English, Spanish',8.0999999999999996447,731642,68); 118 | INSERT INTO movies VALUES(98,'tt0266697','Kill Bill: Vol. 1','Quentin Tarantino',2003,'R','Action, Crime, Thriller',111,'USA','English, Japanese, French',8.0999999999999996447,852684,69); 119 | INSERT INTO movies VALUES(99,'tt0119488','L.A. Confidential','Curtis Hanson',1997,'R','Crime, Drama, Mystery',138,'USA','English',8.3000000000000007105,472540,90); 120 | INSERT INTO movies VALUES(100,'tt0113247','La Haine','Mathieu Kassovitz',1995,'NOT RATED','Crime, Drama',98,'France','French',8.0999999999999996447,124905,0); 121 | INSERT INTO movies VALUES(101,'tt3783958','La La Land','Damien Chazelle',2016,'PG-13','Comedy, Drama, Music',128,'USA, Hong Kong','English',8.0999999999999996447,377662,93); 122 | INSERT INTO movies VALUES(102,'tt0169102','Lagaan: Once Upon a Time in India','Ashutosh Gowariker',2001,'PG','Adventure, Drama, Musical',224,'India','Hindi, English, Awadhi, Urdu',8.0999999999999996447,87652,84); 123 | INSERT INTO movies VALUES(103,'tt0056172','Lawrence of Arabia','David Lean',1962,'PG','Adventure, Biography, Drama',216,'UK','English, Arabic, Turkish',8.3000000000000007105,228818,100); 124 | INSERT INTO movies VALUES(104,'tt0118799','Life Is Beautiful','Roberto Benigni',1997,'PG-13','Comedy, Drama, War',116,'Italy','Italian, German, English',8.5999999999999996447,509596,59); 125 | INSERT INTO movies VALUES(105,'tt0079470','Life of Brian','Terry Jones',1979,'R','Comedy',94,'UK','English, Latin',8.0999999999999996447,316048,75); 126 | INSERT INTO movies VALUES(106,'tt0986264','Like Stars on Earth','Aamir Khan, Amole Gupte',2007,'PG','Drama, Family',165,'India','Hindi, English',8.4000000000000003552,125670,0); 127 | INSERT INTO movies VALUES(107,'tt0120735','Lock, Stock and Two Smoking Barrels','Guy Ritchie',1998,'R','Comedy, Crime',107,'UK','English',8.1999999999999992894,473491,66); 128 | INSERT INTO movies VALUES(108,'tt3315342','Logan','James Mangold',2017,'R','Action, Drama, Sci-Fi',137,'USA','English, Spanish',8.0999999999999996447,490583,77); 129 | INSERT INTO movies VALUES(109,'tt0110413','Léon: The Professional','Luc Besson',1994,'R','Crime, Drama, Thriller',110,'France','English, Italian, French',8.5999999999999996447,865636,64); 130 | INSERT INTO movies VALUES(110,'tt0022100','M','Fritz Lang',1931,'NOT RATED','Crime, Drama, Mystery',99,'Germany','German',8.4000000000000003552,118879,0); 131 | INSERT INTO movies VALUES(111,'tt1392190','Mad Max: Fury Road','George Miller',2015,'R','Action, Adventure, Sci-Fi',120,'Australia, USA','English, Russian',8.0999999999999996447,721427,90); 132 | INSERT INTO movies VALUES(112,'tt0978762','Mary and Max','Adam Elliot',2009,'NOT RATED','Animation, Comedy, Drama',92,'Australia','English, Yiddish',8.0999999999999996447,143622,0); 133 | INSERT INTO movies VALUES(113,'tt0209144','Memento','Christopher Nolan',2000,'R','Mystery, Thriller',113,'USA','English',8.5,979086,80); 134 | INSERT INTO movies VALUES(114,'tt0353969','Memories of Murder','Joon-ho Bong',2003,'NOT RATED','Action, Crime, Drama',132,'South Korea','Korean, English',8.0999999999999996447,91834,82); 135 | INSERT INTO movies VALUES(115,'tt0017136','Metropolis','Fritz Lang',1927,'NOT RATED','Drama, Sci-Fi',153,'Germany','German',8.3000000000000007105,134625,98); 136 | INSERT INTO movies VALUES(116,'tt0405159','Million Dollar Baby','Clint Eastwood',2004,'PG-13','Drama, Sport',132,'USA','English, Irish',8.0999999999999996447,560634,86); 137 | INSERT INTO movies VALUES(117,'tt4912910','Mission: Impossible - Fallout','Christopher McQuarrie',2018,'PG-13','Action, Adventure, Thriller',147,'USA','English, French',8.4000000000000003552,52519,86); 138 | INSERT INTO movies VALUES(118,'tt0027977','Modern Times','Charles Chaplin',1936,'G','Comedy, Drama, Family',87,'USA','English',8.5,176442,96); 139 | INSERT INTO movies VALUES(119,'tt0198781','Monsters, Inc.','Pete Docter, David Silverman(co-director), Lee Unkrich(co-director)',2001,'G','Animation, Adventure, Comedy',92,'USA','English',8.0999999999999996447,697248,78); 140 | INSERT INTO movies VALUES(120,'tt0071853','Monty Python and the Holy Grail','Terry Gilliam, Terry Jones',1975,'PG','Adventure, Comedy, Fantasy',91,'UK','English, French, Latin',8.3000000000000007105,438977,93); 141 | INSERT INTO movies VALUES(121,'tt0031679','Mr. Smith Goes to Washington','Frank Capra',1939,'NOT RATED','Comedy, Drama',129,'USA','English',8.1999999999999992894,93251,73); 142 | INSERT INTO movies VALUES(122,'tt0476735','My Father and My Son','Çagan Irmak',2005,'N/A','Drama',108,'Turkey','Turkish',8.5,58142,0); 143 | INSERT INTO movies VALUES(123,'tt0096283','My Neighbor Totoro','Hayao Miyazaki',1988,'G','Animation, Family, Fantasy',86,'Japan','Japanese',8.1999999999999992894,218742,86); 144 | INSERT INTO movies VALUES(124,'tt0087544','Nausicaä of the Valley of the Wind','Hayao Miyazaki',1984,'PG','Animation, Adventure, Fantasy',117,'Japan, USA','Japanese, English',8.0999999999999996447,119226,86); 145 | INSERT INTO movies VALUES(125,'tt0074958','Network','Sidney Lumet',1976,'R','Drama',121,'USA','English',8.0999999999999996447,123954,88); 146 | INSERT INTO movies VALUES(126,'tt0477348','No Country for Old Men','Ethan Coen, Joel Coen',2007,'R','Crime, Drama, Thriller',122,'USA','English, Spanish',8.0999999999999996447,719981,91); 147 | INSERT INTO movies VALUES(127,'tt0053125','North by Northwest','Alfred Hitchcock',1959,'NOT RATED','Adventure, Mystery, Thriller',136,'USA','English',8.3000000000000007105,254111,98); 148 | INSERT INTO movies VALUES(128,'tt0364569','Oldboy','Chan-wook Park',2003,'R','Action, Drama, Mystery',120,'South Korea','Korean',8.4000000000000003552,430833,74); 149 | INSERT INTO movies VALUES(129,'tt0047296','On the Waterfront','Elia Kazan',1954,'NOT RATED','Crime, Drama, Thriller',108,'USA','English',8.1999999999999992894,122143,88); 150 | INSERT INTO movies VALUES(130,'tt0087843','Once Upon a Time in America','Sergio Leone',1984,'R','Crime, Drama',229,'Italy, USA','English, Italian, French',8.4000000000000003552,258711,0); 151 | INSERT INTO movies VALUES(131,'tt0064116','Once Upon a Time in the West','Sergio Leone',1968,'PG-13','Western',164,'Italy, USA','Italian, Spanish',8.5,255482,80); 152 | INSERT INTO movies VALUES(132,'tt0073486','One Flew Over the Cuckoo''s Nest','Milos Forman',1975,'R','Drama',133,'USA','English',8.6999999999999992894,786628,80); 153 | INSERT INTO movies VALUES(133,'tt0457430','Pan''s Labyrinth','Guillermo del Toro',2006,'R','Drama, Fantasy, War',118,'Spain, Mexico, USA','Spanish',8.1999999999999992894,545207,98); 154 | INSERT INTO movies VALUES(134,'tt0070510','Paper Moon','Peter Bogdanovich',1973,'PG','Comedy, Crime, Drama',102,'USA','English',8.0999999999999996447,33698,0); 155 | INSERT INTO movies VALUES(135,'tt0087884','Paris, Texas','Wim Wenders',1984,'R','Drama',145,'West Germany, France, UK, USA','English, Spanish',8.0999999999999996447,66595,0); 156 | INSERT INTO movies VALUES(136,'tt0050825','Paths of Glory','Stanley Kubrick',1957,'NOT RATED','Drama, War',88,'USA','English, German, Latin',8.4000000000000003552,146311,0); 157 | INSERT INTO movies VALUES(137,'tt0060827','Persona','Ingmar Bergman',1966,'NOT RATED','Drama, Thriller',83,'Sweden','Swedish, English',8.0999999999999996447,79021,0); 158 | INSERT INTO movies VALUES(138,'tt0325980','Pirates of the Caribbean: The Curse of the Black Pearl','Gore Verbinski',2003,'PG-13','Action, Adventure, Fantasy',143,'USA','English',8,921780,63); 159 | INSERT INTO movies VALUES(139,'tt0091763','Platoon','Oliver Stone',1986,'R','Drama, War',120,'USA','English, Vietnamese',8.0999999999999996447,335564,92); 160 | INSERT INTO movies VALUES(140,'tt0119698','Princess Mononoke','Hayao Miyazaki',1997,'PG-13','Animation, Adventure, Fantasy',134,'Japan','Japanese',8.4000000000000003552,274898,76); 161 | INSERT INTO movies VALUES(141,'tt1392214','Prisoners','Denis Villeneuve',2013,'R','Crime, Drama, Mystery',153,'USA','English',8.0999999999999996447,491276,74); 162 | INSERT INTO movies VALUES(142,'tt0054215','Psycho','Alfred Hitchcock',1960,'R','Horror, Mystery, Thriller',109,'USA','English',8.5,501271,97); 163 | INSERT INTO movies VALUES(143,'tt0110912','Pulp Fiction','Quentin Tarantino',1994,'R','Crime, Drama',154,'USA','English, Spanish, French',8.9000000000000003552,1537588,94); 164 | INSERT INTO movies VALUES(144,'tt0081398','Raging Bull','Martin Scorsese',1980,'R','Biography, Drama, Sport',129,'USA','English',8.1999999999999992894,272958,89); 165 | INSERT INTO movies VALUES(145,'tt0082971','Raiders of the Lost Ark','Steven Spielberg',1981,'PG','Action, Adventure',115,'USA','English, German, Hebrew, Spanish, Arabic, Nepali',8.5,767571,85); 166 | INSERT INTO movies VALUES(146,'tt0089881','Ran','Akira Kurosawa',1985,'R','Action, Drama',162,'Japan, France','Japanese',8.1999999999999992894,93857,96); 167 | INSERT INTO movies VALUES(147,'tt0405508','Rang De Basanti','Rakeysh Omprakash Mehra',2006,'NOT RATED','Comedy, Drama',157,'India','Hindi, Punjabi, English',8.3000000000000007105,93843,0); 168 | INSERT INTO movies VALUES(148,'tt0042876','Rashomon','Akira Kurosawa',1950,'NOT RATED','Crime, Drama, Mystery',88,'Japan','Japanese',8.3000000000000007105,124977,0); 169 | INSERT INTO movies VALUES(149,'tt0047396','Rear Window','Alfred Hitchcock',1954,'PG','Mystery, Thriller',112,'USA','English',8.5,373659,100); 170 | INSERT INTO movies VALUES(150,'tt0032976','Rebecca','Alfred Hitchcock',1940,'NOT RATED','Drama, Mystery, Romance',130,'USA','English, French',8.0999999999999996447,104328,0); 171 | INSERT INTO movies VALUES(151,'tt0180093','Requiem for a Dream','Darren Aronofsky',2000,'R','Drama',102,'USA','English',8.3000000000000007105,666774,68); 172 | INSERT INTO movies VALUES(152,'tt0105236','Reservoir Dogs','Quentin Tarantino',1992,'R','Crime, Drama, Thriller',99,'USA','English',8.3000000000000007105,776839,79); 173 | INSERT INTO movies VALUES(153,'tt0075148','Rocky','John G. Avildsen',1976,'PG','Drama, Sport',120,'USA','English',8.0999999999999996447,444783,69); 174 | INSERT INTO movies VALUES(154,'tt3170832','Room','Lenny Abrahamson',2015,'R','Drama',118,'Ireland, Canada, UK, USA','English',8.1999999999999992894,280817,86); 175 | INSERT INTO movies VALUES(155,'tt1979320','Rush','Ron Howard',2013,'R','Action, Biography, Drama',123,'UK, Germany, USA','English, German, Italian, French, Spanish',8.0999999999999996447,371751,75); 176 | INSERT INTO movies VALUES(156,'tt0120815','Saving Private Ryan','Steven Spielberg',1998,'R','Drama, War',169,'USA','English, French, German, Czech',8.5999999999999996447,1041360,90); 177 | INSERT INTO movies VALUES(157,'tt0086250','Scarface','Brian De Palma',1983,'R','Crime, Drama',170,'USA','English, Spanish',8.3000000000000007105,628490,65); 178 | INSERT INTO movies VALUES(158,'tt0108052','Schindler''s List','Steven Spielberg',1993,'R','Biography, Drama, History',195,'USA','English, Hebrew, German, Polish',8.9000000000000003552,1016413,93); 179 | INSERT INTO movies VALUES(159,'tt0114369','Se7en','David Fincher',1995,'R','Crime, Drama, Mystery',127,'USA','English',8.5999999999999996447,1208501,65); 180 | INSERT INTO movies VALUES(160,'tt0047478','Seven Samurai','Akira Kurosawa',1954,'NOT RATED','Adventure, Drama',207,'Japan','Japanese',8.6999999999999992894,268158,98); 181 | INSERT INTO movies VALUES(161,'tt0015324','Sherlock Jr.','Buster Keaton',1924,'NOT RATED','Action, Comedy, Romance',45,'USA','English',8.3000000000000007105,27311,0); 182 | INSERT INTO movies VALUES(162,'tt1130884','Shutter Island','Martin Scorsese',2010,'R','Mystery, Thriller',138,'USA','English, German',8.0999999999999996447,943838,63); 183 | INSERT INTO movies VALUES(163,'tt0045152','Singin'' in the Rain','Stanley Donen, Gene Kelly',1952,'G','Comedy, Musical, Romance',103,'USA','English',8.3000000000000007105,183983,99); 184 | INSERT INTO movies VALUES(164,'tt0208092','Snatch','Guy Ritchie',2000,'R','Comedy, Crime',102,'UK, USA','English, Russian',8.3000000000000007105,685944,55); 185 | INSERT INTO movies VALUES(165,'tt0053291','Some Like It Hot','Billy Wilder',1959,'NOT RATED','Comedy, Romance',121,'USA','English',8.3000000000000007105,207450,97); 186 | INSERT INTO movies VALUES(166,'tt0245429','Spirited Away','Hayao Miyazaki, Kirk Wise',2001,'PG','Animation, Adventure, Family',125,'Japan','Japanese, English',8.5999999999999996447,517757,96); 187 | INSERT INTO movies VALUES(167,'tt1895587','Spotlight','Tom McCarthy',2015,'R','Crime, Drama, History',128,'USA','English',8.0999999999999996447,330669,93); 188 | INSERT INTO movies VALUES(168,'tt0079944','Stalker','Andrei Tarkovsky',1979,'NOT RATED','Drama, Sci-Fi',162,'Soviet Union','Russian',8.0999999999999996447,90397,0); 189 | INSERT INTO movies VALUES(169,'tt0092005','Stand by Me','Rob Reiner',1986,'R','Adventure, Drama',89,'USA','English',8.0999999999999996447,317852,75); 190 | INSERT INTO movies VALUES(170,'tt0076759','Star Wars: Episode IV - A New Hope','George Lucas',1977,'PG','Action, Adventure, Fantasy',121,'USA','English',8.5999999999999996447,1063160,90); 191 | INSERT INTO movies VALUES(171,'tt0080684','Star Wars: Episode V - The Empire Strikes Back','Irvin Kershner',1980,'PG','Action, Adventure, Fantasy',124,'USA','English',8.8000000000000007105,990187,82); 192 | INSERT INTO movies VALUES(172,'tt0086190','Star Wars: Episode VI - Return of the Jedi','Richard Marquand',1983,'PG','Action, Adventure, Fantasy',131,'USA','English',8.3000000000000007105,812891,58); 193 | INSERT INTO movies VALUES(173,'tt0018455','Sunrise','F.W. Murnau',1927,'NOT RATED','Drama, Romance',94,'USA','English',8.1999999999999992894,37544,0); 194 | INSERT INTO movies VALUES(174,'tt0043014','Sunset Boulevard','Billy Wilder',1950,'NOT RATED','Drama, Film-Noir',110,'USA','English',8.5,168704,0); 195 | INSERT INTO movies VALUES(175,'tt0075314','Taxi Driver','Martin Scorsese',1976,'R','Crime, Drama',114,'USA','English, Spanish',8.3000000000000007105,598053,94); 196 | INSERT INTO movies VALUES(176,'tt0103064','Terminator 2','James Cameron',1991,'R','Action, Sci-Fi',137,'USA, France','English, Spanish',8.5,855587,75); 197 | INSERT INTO movies VALUES(177,'tt0053198','The 400 Blows','François Truffaut',1959,'NOT RATED','Crime, Drama',99,'France','French, English',8.0999999999999996447,87056,0); 198 | INSERT INTO movies VALUES(178,'tt0053604','The Apartment','Billy Wilder',1960,'NOT RATED','Comedy, Drama, Romance',125,'USA','English',8.3000000000000007105,133765,0); 199 | INSERT INTO movies VALUES(179,'tt0116231','The Bandit','Yavuz Turgul',1996,'N/A','Crime, Drama, Thriller',128,'Turkey, France, Bulgaria','Turkish',8.3000000000000007105,51209,0); 200 | INSERT INTO movies VALUES(180,'tt0118715','The Big Lebowski','Joel Coen, Ethan Coen',1998,'R','Comedy, Crime',117,'USA, UK','English, German, Hebrew, Spanish',8.0999999999999996447,625711,69); 201 | INSERT INTO movies VALUES(181,'tt0440963','The Bourne Ultimatum','Paul Greengrass',2007,'PG-13','Action, Mystery, Thriller',115,'USA, Germany, France, Spain','English, French, Arabic, Russian, Spanish',8,563751,85); 202 | INSERT INTO movies VALUES(182,'tt0050212','The Bridge on the River Kwai','David Lean',1957,'PG','Adventure, Drama, War',161,'UK, USA','English, Japanese, Thai',8.1999999999999992894,177347,87); 203 | INSERT INTO movies VALUES(183,'tt0468569','The Dark Knight','Christopher Nolan',2008,'PG-13','Action, Crime, Drama',152,'USA, UK','English, Mandarin',9,1937798,82); 204 | INSERT INTO movies VALUES(184,'tt1345836','The Dark Knight Rises','Christopher Nolan',2012,'PG-13','Action, Thriller',164,'UK, USA','English, Arabic',8.4000000000000003552,1318858,78); 205 | INSERT INTO movies VALUES(185,'tt0077416','The Deer Hunter','Michael Cimino',1978,'R','Drama, War',183,'USA, UK','English, Russian, Vietnamese, French',8.0999999999999996447,271619,81); 206 | INSERT INTO movies VALUES(186,'tt0407887','The Departed','Martin Scorsese',2006,'R','Crime, Drama, Thriller',151,'USA, Hong Kong','English, Cantonese',8.5,1014809,85); 207 | INSERT INTO movies VALUES(187,'tt0080678','The Elephant Man','David Lynch',1980,'PG','Biography, Drama',124,'USA, UK','English',8.1999999999999992894,186733,0); 208 | INSERT INTO movies VALUES(188,'tt0017925','The General','Clyde Bruckman, Buster Keaton',1926,'NOT RATED','Action, Adventure, Comedy',67,'USA','English',8.1999999999999992894,67260,0); 209 | INSERT INTO movies VALUES(189,'tt0068646','The Godfather','Francis Ford Coppola',1972,'R','Crime, Drama',175,'USA','English, Italian, Latin',9.1999999999999992894,1353121,100); 210 | INSERT INTO movies VALUES(190,'tt0071562','The Godfather: Part II','Francis Ford Coppola',1974,'R','Crime, Drama',202,'USA','English, Italian, Spanish, Latin, Sicilian',9,931660,90); 211 | INSERT INTO movies VALUES(191,'tt0015864','The Gold Rush','Charles Chaplin',1925,'NOT RATED','Adventure, Comedy, Drama',95,'USA','English',8.1999999999999992894,84100,0); 212 | INSERT INTO movies VALUES(192,'tt0060196','The Good, the Bad and the Ugly','Sergio Leone',1966,'R','Western',178,'Italy, USA, Spain, West Germany','Italian, English',8.9000000000000003552,586129,90); 213 | INSERT INTO movies VALUES(193,'tt2278388','The Grand Budapest Hotel','Wes Anderson',2014,'R','Adventure, Comedy, Drama',99,'USA, Germany','English, French, German',8.0999999999999996447,595252,88); 214 | INSERT INTO movies VALUES(194,'tt0032551','The Grapes of Wrath','John Ford',1940,'NOT RATED','Drama, History',129,'USA','English',8.0999999999999996447,77245,95); 215 | INSERT INTO movies VALUES(195,'tt0032553','The Great Dictator','Charles Chaplin',1940,'PASSED','Comedy, Drama, War',125,'USA','English, Esperanto',8.5,168888,0); 216 | INSERT INTO movies VALUES(196,'tt0057115','The Great Escape','John Sturges',1963,'APPROVED','Adventure, Drama, History',172,'USA','English, German, French, Russian, Spanish',8.1999999999999992894,194590,87); 217 | INSERT INTO movies VALUES(197,'tt0120689','The Green Mile','Frank Darabont',1999,'R','Crime, Drama, Fantasy',189,'USA','English, French',8.5,943104,61); 218 | INSERT INTO movies VALUES(198,'tt4016934','The Handmaiden','Chan-wook Park',2016,'NOT RATED','Crime, Drama, Mystery',144,'South Korea','Korean, Japanese',8.0999999999999996447,63847,84); 219 | INSERT INTO movies VALUES(199,'tt1454029','The Help','Tate Taylor',2011,'PG-13','Drama',146,'USA, India, United Arab Emirates','English',8.0999999999999996447,374077,62); 220 | INSERT INTO movies VALUES(200,'tt2106476','The Hunt','Thomas Vinterberg',2012,'R','Drama',115,'Denmark, Sweden','Danish, English, Polish',8.3000000000000007105,221544,77); 221 | INSERT INTO movies VALUES(201,'tt1675434','The Intouchables','Olivier Nakache, Éric Toledano',2011,'R','Biography, Comedy, Drama',112,'France','French, English',8.5,626811,57); 222 | INSERT INTO movies VALUES(202,'tt0012349','The Kid','Charles Chaplin',1921,'NOT RATED','Comedy, Drama, Family',68,'USA','English',8.3000000000000007105,85578,0); 223 | INSERT INTO movies VALUES(203,'tt0110357','The Lion King','Roger Allers, Rob Minkoff',1994,'G','Animation, Adventure, Drama',88,'USA','English, Swahili, Xhosa, Zulu',8.5,774047,83); 224 | INSERT INTO movies VALUES(204,'tt0405094','The Lives of Others','Florian Henckel von Donnersmarck',2006,'R','Drama, Thriller',137,'Germany','German',8.4000000000000003552,305456,89); 225 | INSERT INTO movies VALUES(205,'tt0120737','The Lord of the Rings: The Fellowship of the Ring','Peter Jackson',2001,'PG-13','Adventure, Drama, Fantasy',178,'New Zealand, USA','English, Sindarin',8.8000000000000007105,1420506,92); 226 | INSERT INTO movies VALUES(206,'tt0167260','The Lord of the Rings: The Return of the King','Peter Jackson',2003,'PG-13','Adventure, Drama, Fantasy',201,'USA, New Zealand','English, Quenya, Old English, Sindarin',8.9000000000000003552,1408815,94); 227 | INSERT INTO movies VALUES(207,'tt0167261','The Lord of the Rings: The Two Towers','Peter Jackson',2002,'PG-13','Adventure, Drama, Fantasy',179,'USA, New Zealand','English, Sindarin, Old English',8.6999999999999992894,1269091,87); 228 | INSERT INTO movies VALUES(208,'tt0033870','The Maltese Falcon','John Huston',1941,'NOT RATED','Film-Noir, Mystery',100,'USA','English',8.0999999999999996447,133921,96); 229 | INSERT INTO movies VALUES(209,'tt0133093','The Matrix','Lana Wachowski, Lilly Wachowski',1999,'R','Action, Sci-Fi',136,'USA','English',8.6999999999999992894,1413032,73); 230 | INSERT INTO movies VALUES(210,'tt0050783','The Nights of Cabiria','Federico Fellini',1957,'NOT RATED','Drama',110,'Italy, France','Italian',8.0999999999999996447,35787,0); 231 | INSERT INTO movies VALUES(211,'tt0019254','The Passion of Joan of Arc','Carl Theodor Dreyer',1928,'NOT RATED','Biography, Drama, History',114,'France','French',8.1999999999999992894,37482,0); 232 | INSERT INTO movies VALUES(212,'tt0253474','The Pianist','Roman Polanski',2002,'R','Biography, Drama, Music',150,'France, Poland, Germany, UK, USA','English, German, Russian',8.5,596506,85); 233 | INSERT INTO movies VALUES(213,'tt0482571','The Prestige','Christopher Nolan',2006,'PG-13','Drama, Mystery, Sci-Fi',130,'USA, UK','English',8.5,1000153,66); 234 | INSERT INTO movies VALUES(214,'tt0093779','The Princess Bride','Rob Reiner',1987,'PG','Adventure, Family, Fantasy',98,'USA','English',8.0999999999999996447,340652,77); 235 | INSERT INTO movies VALUES(215,'tt1305806','The Secret in Their Eyes','Juan José Campanella',2009,'R','Drama, Mystery, Romance',129,'Argentina, Spain','Spanish',8.1999999999999992894,160827,80); 236 | INSERT INTO movies VALUES(216,'tt0050976','The Seventh Seal','Ingmar Bergman',1957,'NOT RATED','Drama, Fantasy',96,'Sweden','Swedish, Latin',8.1999999999999992894,133442,0); 237 | INSERT INTO movies VALUES(217,'tt0111161','The Shawshank Redemption','Frank Darabont',1994,'R','Drama',142,'USA','English',9.3000000000000007105,1967060,80); 238 | INSERT INTO movies VALUES(218,'tt0081505','The Shining','Stanley Kubrick',1980,'R','Drama, Horror',146,'UK, USA','English',8.4000000000000003552,729245,63); 239 | INSERT INTO movies VALUES(219,'tt0102926','The Silence of the Lambs','Jonathan Demme',1991,'R','Crime, Drama, Thriller',118,'USA','English',8.5999999999999996447,1052451,85); 240 | INSERT INTO movies VALUES(220,'tt0167404','The Sixth Sense','M. Night Shyamalan',1999,'PG-13','Drama, Mystery, Thriller',107,'USA','English, Latin, Spanish',8.0999999999999996447,806593,64); 241 | INSERT INTO movies VALUES(221,'tt0070735','The Sting','George Roy Hill',1973,'PG','Comedy, Crime, Drama',129,'USA','English',8.3000000000000007105,207805,80); 242 | INSERT INTO movies VALUES(222,'tt0088247','The Terminator','James Cameron',1984,'R','Action, Sci-Fi',107,'UK, USA','English, Spanish',8,694211,84); 243 | INSERT INTO movies VALUES(223,'tt0084787','The Thing','John Carpenter',1982,'R','Horror, Mystery, Sci-Fi',109,'USA','English, Norwegian',8.0999999999999996447,310049,57); 244 | INSERT INTO movies VALUES(224,'tt0041959','The Third Man','Carol Reed',1949,'NOT RATED','Film-Noir, Mystery, Thriller',93,'UK','English, German, Russian',8.1999999999999992894,135530,0); 245 | INSERT INTO movies VALUES(225,'tt0040897','The Treasure of the Sierra Madre','John Huston',1948,'NOT RATED','Adventure, Drama, Western',126,'USA','English, Spanish',8.3000000000000007105,96096,99); 246 | INSERT INTO movies VALUES(226,'tt0120382','The Truman Show','Peter Weir',1998,'PG','Comedy, Drama, Sci-Fi',103,'USA','English',8.0999999999999996447,787036,90); 247 | INSERT INTO movies VALUES(227,'tt0114814','The Usual Suspects','Bryan Singer',1995,'R','Crime, Mystery, Thriller',106,'USA, Germany','English, Hungarian, Spanish, French',8.5999999999999996447,857477,77); 248 | INSERT INTO movies VALUES(228,'tt0046268','The Wages of Fear','Henri-Georges Clouzot',1953,'NOT RATED','Adventure, Drama, Thriller',131,'France, Italy','French, English, Spanish, German, Italian, Russian',8.0999999999999996447,45369,0); 249 | INSERT INTO movies VALUES(229,'tt0032138','The Wizard of Oz','Victor Fleming, George Cukor, Mervyn LeRoy, Norman Taurog, King Vidor',1939,'PG','Adventure, Family, Fantasy',102,'USA','English',8,336253,100); 250 | INSERT INTO movies VALUES(230,'tt0993846','The Wolf of Wall Street','Martin Scorsese',2013,'R','Biography, Comedy, Crime',180,'USA','English, French',8.1999999999999992894,960126,75); 251 | INSERT INTO movies VALUES(231,'tt0469494','There Will Be Blood','Paul Thomas Anderson',2007,'R','Drama',158,'USA','English, American Sign Language',8.0999999999999996447,439002,93); 252 | INSERT INTO movies VALUES(232,'tt5027774','Three Billboards Outside Ebbing, Missouri','Martin McDonagh',2017,'R','Comedy, Crime, Drama',115,'UK, USA','English',8.1999999999999992894,252520,88); 253 | INSERT INTO movies VALUES(233,'tt0056592','To Kill a Mockingbird','Robert Mulligan',1962,'NOT RATED','Crime, Drama',129,'USA','English',8.3000000000000007105,256971,87); 254 | INSERT INTO movies VALUES(234,'tt0046438','Tokyo Story','Yasujirô Ozu',1953,'NOT RATED','Drama',136,'Japan','Japanese, English',8.1999999999999992894,39808,0); 255 | INSERT INTO movies VALUES(235,'tt0052311','Touch of Evil','Orson Welles',1958,'PG-13','Crime, Drama, Film-Noir',95,'USA','English, Spanish',8.0999999999999996447,86449,0); 256 | INSERT INTO movies VALUES(236,'tt0114709','Toy Story','John Lasseter',1995,'G','Animation, Adventure, Comedy',81,'USA','English',8.3000000000000007105,739551,95); 257 | INSERT INTO movies VALUES(237,'tt0435761','Toy Story 3','Lee Unkrich',2010,'G','Animation, Adventure, Comedy',103,'USA','English, Spanish',8.3000000000000007105,643623,92); 258 | INSERT INTO movies VALUES(238,'tt0117951','Trainspotting','Danny Boyle',1996,'R','Drama',94,'UK','English',8.1999999999999992894,560372,83); 259 | INSERT INTO movies VALUES(239,'tt0105695','Unforgiven','Clint Eastwood',1992,'R','Drama, Western',130,'USA','English',8.1999999999999992894,323850,85); 260 | INSERT INTO movies VALUES(240,'tt1049413','Up','Pete Docter, Bob Peterson(co-director)',2009,'PG','Animation, Adventure, Comedy',96,'USA','English',8.3000000000000007105,790677,88); 261 | INSERT INTO movies VALUES(241,'tt0434409','V for Vendetta','James McTeigue',2005,'R','Action, Drama, Sci-Fi',132,'USA, UK, Germany','English',8.1999999999999992894,908615,62); 262 | INSERT INTO movies VALUES(242,'tt0052357','Vertigo','Alfred Hitchcock',1958,'PG','Mystery, Romance, Thriller',128,'USA','English',8.3000000000000007105,299784,0); 263 | INSERT INTO movies VALUES(243,'tt0910970','WALL·E','Andrew Stanton',2008,'G','Animation, Adventure, Family',98,'USA','English',8.4000000000000003552,851909,95); 264 | INSERT INTO movies VALUES(244,'tt1291584','Warrior','Gavin O''Connor',2011,'PG-13','Drama, Sport',140,'USA','English, Spanish',8.1999999999999992894,386666,71); 265 | INSERT INTO movies VALUES(245,'tt2582802','Whiplash','Damien Chazelle',2014,'R','Drama, Music',107,'USA','English',8.5,557674,88); 266 | INSERT INTO movies VALUES(246,'tt0050986','Wild Strawberries','Ingmar Bergman',1957,'NOT RATED','Drama, Romance',91,'Sweden','Swedish, Latin',8.1999999999999992894,78439,0); 267 | INSERT INTO movies VALUES(247,'tt3011894','Wild Tales','Damián Szifron',2014,'R','Comedy, Drama, Thriller',122,'Argentina, Spain','Spanish',8.0999999999999996447,137211,77); 268 | INSERT INTO movies VALUES(248,'tt0051201','Witness for the Prosecution','Billy Wilder',1957,'NOT RATED','Crime, Drama, Mystery',116,'USA','English, German',8.4000000000000003552,83720,0); 269 | INSERT INTO movies VALUES(249,'tt0055630','Yojimbo','Akira Kurosawa',1961,'NOT RATED','Action, Drama, Thriller',110,'Japan','Japanese',8.3000000000000007105,90685,0); 270 | INSERT INTO movies VALUES(250,'tt5311514','Your Name.','Makoto Shinkai',2016,'PG','Animation, Drama, Fantasy',106,'Japan','Japanese',8.4000000000000003552,101001,79); 271 | COMMIT; 272 | --------------------------------------------------------------------------------