-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseed.sql
183 lines (155 loc) · 50.9 KB
/
seed.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Servidor: 127.0.0.1
-- Tiempo de generación: 19-06-2024 a las 00:30:21
-- Versión del servidor: 10.4.32-MariaDB
-- Versión de PHP: 8.2.12
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */
;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */
;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */
;
/*!40101 SET NAMES utf8mb4 */
;
--
-- Base de datos: `proyecto_movies_2024`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `actores`
--
CREATE TABLE `actors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) NOT NULL,
`surname` varchar(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `director`
--
CREATE TABLE `directors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) NOT NULL,
`surname` varchar(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `genero`
--
CREATE TABLE `genres` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(40) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `peliculas`
--
CREATE TABLE `movies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`overview` text NOT NULL,
`runtime` varchar(10) NOT NULL,
`poster_path` varchar(255) NOT NULL,
`id_director` int(11) NOT NULL ,
PRIMARY KEY (`id`),
FOREIGN KEY (id_director) REFERENCES directors(id)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci;
-- -- --------------------------------------------------------
CREATE TABLE movies_actors (
id_movie int(11) NOT NULL,
id_actor int(11) NOT NULL,
PRIMARY KEY (id_movie, id_actor),
FOREIGN KEY (`id_movie`) REFERENCES movies (`id`),
FOREIGN KEY (`id_actor`) REFERENCES actors (`id`)
);
CREATE TABLE movies_genres (
id_movie INT,
id_genre INT,
PRIMARY KEY (id_movie, id_genre),
FOREIGN KEY (`id_movie`) REFERENCES movies (`id`),
FOREIGN KEY (`id_genre`) REFERENCES genres (`id`)
);
INSERT INTO `actors` (`id`, `name`,`surname`) VALUES
(205, 'Kirsten', 'Dunst'), (501, 'Dakota', 'Fanning'), (532, 'Joe', 'Pantoliano'), (690, 'Ke Huy', 'Quan'), (865, 'Michael', 'Bay'), (1237, '', 'Flea'), (1461, 'George', 'Clooney'), (1640, 'Stellan', 'Skarsgård'), (1892, 'Matt', 'Damon'), (2541, 'Jun', 'Kunimura'), (2882, 'Diane', 'Lane'), (2888, 'Will', 'Smith'), (2974, 'Roger', 'Yuan'), (2983, 'Mark', 'Strong'), (3134, 'Tamlyn', 'Tomita'), (3810, 'Javier', 'Bardem'), (3905, 'William H.', 'Macy'), (4287, 'Aurélia', 'Petit'), (4483, 'Dustin', 'Hoffman'), (4495, 'Steve', 'Carell'), (4581, 'Steve', 'Coogan'), (4589, 'Benjamin', 'Bratt'), (4690, 'Christopher', 'Walken'), (5081, 'Emily', 'Blunt'), (6677, 'Kyle', 'MacLachlan'), (6807, 'Sam', 'Rockwell'), (6972, 'Ian', 'McShane'), (7905, 'Mary', 'Gibbs'), (7907, 'John', 'Ratzenberger'), (7908, 'Frank', 'Oz'), (7998, 'Bret', 'Parker'), (10859, 'Ryan', 'Reynolds'), (10981, 'Fiona', 'Shaw'), (12097, 'Christopher', 'Knights'), (12219, 'Jon', 'Stewart'), (12890, 'Pete', 'Docter'), (15298, 'Rachel', 'House'), (15556, 'Rebecca', 'Hall'), (16183, 'Gedde', 'Watanabe'), (16851, 'Josh', 'Brolin'), (16866, 'Jennifer', 'Lopez'), (17039, 'Nick', 'Offerman'), (17419, 'Bryan', 'Cranston'), (17697, 'John', 'Krasinski'), (17743, 'Miranda', 'Cosgrove'), (18589, 'Lee', 'Majors'), (18864, 'Tom', 'McGrath'), (19274, 'Seth', 'Rogen'), (19278, 'Bill', 'Hader'), (19492, 'Viola', 'Davis'), (19547, 'Gregg', 'Berger'), (19997, 'Siobhan', 'Hewlett'), (20374, 'Teresa', 'Palmer'), (20904, 'James', 'Hong'), (20959, 'Louis Gossett', 'Jr.'), (21125, 'Richard', 'Kind'), (22227, 'Christopher', 'Meloni'), (23498, 'Alexander', 'Ludwig'), (23659, 'Will', 'Ferrell'), (24358, 'Lori', 'Alan'), (24898, 'Nathan', 'Jones'), (25147, 'Tony', 'Hale'), (27428, 'Aaron', 'Taylor-Johnson'), (28633, 'Richard', 'Jenkins'), (28743, 'John', 'Lynch'), (29528, 'Matthew', 'Rhys'), (30614, 'Ryan', 'Gosling'), (31549, 'Phil', 'LaMarr'), (34517, 'Trey', 'Parker'), (35159, 'Laraine', 'Newman'), (35515, 'June', 'Squibb'), (35970, 'Patrick', 'Ligardes'), (37250, 'Matthias', 'Hues'), (37939, 'Yum', 'Jung-ah'), (40716, 'Mathis', 'Landwehr'), (41088, 'Jason', 'Segel'), (41091, 'Kristen', 'Wiig'), (44079, 'Charlotte', 'Rampling'), (51329, 'Bradley', 'Cooper'), (51998, 'Liza', 'Lapira'), (52583, 'Wagner', 'Moura'), (52792, 'Maya', 'Rudolph'), (52891, 'Tom', 'Burke'), (54168, 'Anne', 'Marivin'), (54807, 'Affif Ben', 'Badra'), (56162, 'Josh', 'Randall'), (56322, 'Amy', 'Poehler'), (57795, 'David', 'Field'), (58115, 'Eric', 'Dane'), (58395, 'Karin', 'Konoval'), (58733, 'Jason', 'Davis'), (58769, 'Stephen', 'Colbert'), (59117, 'Angus', 'Sampson'), (59175, 'Blake', 'Lively'), (59258, 'Lewis', 'Black'), (59298, 'Joseph', 'Beddelem'), (59693, 'Liza', 'Colón-Zayas'), (59784, 'Carlos', 'Alazraqui'), (60416, 'Alex', 'Ferns'), (60851, 'François', 'Chau'), (61782, 'Kevin', 'Copeland'), (61784, 'Goran D.', 'Kleut'), (61831, 'Samantha', 'Hanratty'), (61969, 'Phil', 'Proctor'), (62765, 'Rhea', 'Seehorn'), (63007, 'Kincsö', 'Pethö'), (63235, 'Cedric', 'Yarbrough'), (63522, 'Sofía', 'Vergara'), (64151, 'Mike', 'Mitchell'), (64181, 'Dave', 'Goelz'), (64564, 'Mike', 'Möller'), (64900, 'Jeff J.J.', 'Authors'), (65524, 'Ioan', 'Gruffudd'), (66055, 'Richard', 'Norton'), (67599, 'Vanessa', 'Hudgens'), (70851, 'Jack', 'Black'), (72754, 'Elissa', 'Knight'), (73269, 'Elsa', 'Pataky'), (73659, 'Kurt', 'McKinney'), (74375, 'Cynthia', 'Rothrock'), (74568, 'Chris', 'Hemsworth'), (74610, 'Tasha', 'Smith'), (75122, 'Lachy', 'Hulme'), (78029, 'Martin', 'Lawrence'), (78962, 'Andy', 'McPhee'), (79072, 'Kevin', 'Durand'), (80122, 'Paul', 'Nakauchi'), (80591, 'Rashida', 'Jones'), (80779, 'Enoch', 'King'), (82314, 'Karina', 'Testa'), (82317, 'Maud', 'Forget'), (82923, 'Bérénice', 'Bejo'), (84496, 'Josh', 'Cooley'), (86007, 'Jim', 'Ward'), (86330, 'Lee', 'Beom-soo'), (86436, 'Julia', 'Kato'), (86654, 'Austin', 'Butler'), (87819, 'Dawnn', 'Lewis'), (88124, 'Jesse', 'Plemons'), (91387, 'Keone', 'Young'), (93089, 'Tracy', 'Coogan'), (93252, 'Kim', 'Hae-sook'), (94797, 'Dichen', 'Lachman'), (102603, 'John', 'Howard'), (102693, 'Colleen', 'Smith'), (103406, 'Sara', 'Wiseman'), (105124, 'Shane', 'Dundas'), (109019, 'Nelson', 'Lee'), (109167, 'Tony', 'Cook'), (109422, 'Rob', 'Mars'), (109423, 'Vic', 'Chao'), (109437, 'Clarence John', 'Ryan'), (111466, 'Mona', 'Marshall'), (111513, 'Yvette Nicole', 'Brown'), (111640, 'Munetaka', 'Aoki'), (112698, 'Dawn', 'Klingberg'), (117642, 'Jason', 'Momoa'), (119869, 'John', 'Salley'), (121204, 'Alan', 'Wells'), (121529, 'Léa', 'Seydoux'), (123701, 'Fala', 'Chen'), (124747, 'Pierre', 'Coffin'), (124748, 'Chris', 'Renaud'), (124750, 'Dana', 'Gaier'), (125025, 'Joey', 'King'), (125167, 'Mindy', 'Kaling'), (128191, 'Billy', 'Blanks'), (136295, 'Neil', 'Sandilands'), (137229, 'Kathy', 'Owen'), (137262, 'Steve', 'Purcell'), (140007, 'Seán T. Ó', 'Meallaigh'), (143346, 'Keith', 'Ferguson'), (145446, 'Kirk R.', 'Thatcher'), (145536, 'Leon', 'Herbert'), (148899, 'George', 'Shevtsov'), (150030, 'David', 'Collins'), (150869, 'Bret', 'Marnell'), (154657, 'James', 'Sie'), (157865, 'Karen', 'Maruyama'), (164258, 'Barbara', 'Andres'), (166703, 'Markus', 'Hamilton'), (167295, 'John', 'Cygan'), (167393, 'Heather', 'Thomas'), (168140, 'Paul', 'Ganus'), (169200, 'Phyllis', 'Smith'), (171743, 'Lori Tan', 'Chinn'), (174563, 'Paul', 'Pape'), (177231, 'Lana', 'Parrilla'), (196179, 'Stephen McKinley', 'Henderson'), (196502, 'Paula', 'Poundstone'), (199529, 'Jordan', 'Long'), (202446, 'James', 'Murray'), (205923, 'Babs', 'Olusanmokun'), (208282, 'Shea', 'Adams'), (208460, 'Anton', 'Valensi'), (214701, 'Sherry', 'Lynn'), (215913, 'Jacob', 'Tomuri'), (217777, 'Steve', 'Alterman'), (221018, 'Dan', 'Stevens'), (221611, 'Jonathan', 'Groff'), (222508, 'Michel', 'Qissi'), (224235, 'DJ', 'Khaled'), (226366, 'Brian Tyree', 'Henry'), (231666, 'Alistair', 'Brammer'), (232499, 'Harry Shum', 'Jr.'), (234548, 'Daniel', 'Webber'), (298410, 'Keegan-Michael', 'Key'), (299743, 'Sebastian', 'Maniscalco'), (440414, 'Amy', 'Schumer'), (452205, 'Bobby', 'Moynihan'), (505710, '', 'Zendaya'), (543530, 'Dave', 'Bautista'), (544442, 'Paola', 'Nuñez'), (560081, 'Yoon', 'Kyung-ho'), (570968, 'Vinnie', 'Varon'), (573792, 'Kim', 'Min-jae'), (578838, 'Shin', 'Jung-keun'), (581170, 'Dmitriy', 'Miller'), (586757, 'Adèle', 'Exarchopoulos'), (587778, 'Jim', 'Tighe'), (930817, 'Anthony Brandon', 'Wong'), (932821, 'So', 'Ji-sub'), (933238, 'Rebecca', 'Ferguson'), (933272, 'Olwen', 'Fouéré'), (939345, 'Patrick', 'Seitz'), (942259, 'Beth', 'Champion'), (947361, 'Abdel', 'Qissi'), (966554, 'Eka', 'Darville'), (969332, 'Jacob', 'Hopkins'), (971877, 'Mick', 'Wingert'), (997684, 'Imola', 'Gáspár'), (1003260, 'Nassim', 'Lyes'), (1014587, 'Bryan', 'Probets'), (1020716, 'Iván', 'González'), (1023483, 'Phoebe', 'Waller-Bridge'), (1024395, 'Ma', 'Dong-seok'), (1051396, 'Vahidin', 'Prelić'), (1056053, 'Josh', 'Helman'), (1078674, 'Park', 'Ji-hwan'), (1090945, 'Andrew', 'Ryan'), (1098034, 'Lennon', 'Wynn'), (1098756, 'Brittany', 'Ishibashi'), (1116852, 'Rob', 'Fukuzaki'), (1117371, 'Dominic', 'McHale'), (1123785, 'Yannick', 'Choirat'), (1125220, 'Tim', 'Burns'), (1141501, 'Carter', 'Hastings'), (1190668, 'Timothée', 'Chalamet'), (1196534, 'Shauna', 'Pinkett'), (1196600, 'Gong', 'Teyu'), (1199744, 'Jun', 'Suk-ho'), (1202032, 'Vincent B.', 'Gorce'), (1224130, 'Sarayu', 'Blue'), (1224391, 'Ian', 'Roberts'), (1225953, 'Sterling K.', 'Brown'), (1226294, 'Paula', 'Pell'), (1230868, 'Tiffany', 'Haddish'), (1235818, 'Frank', 'Buckley'), (1236458, 'Ronnie del', 'Carmen'), (1238612, 'Cecile', 'Sinclair'), (1239710, 'Ann Marie', 'Horan'), (1239728, 'Tara', 'Breathnach'), (1243341, 'Nicholas', 'Walker'), (1251570, 'Lesley', 'Fera'), (1252492, 'Zoe', 'Boyle'), (1254630, 'Lee', 'Jun-hyuk'), (1257671, 'Kim', 'Woo-bin'), (1260038, 'Ron', 'Funches'), (1260745, 'Tony', 'Fucile'), (1265143, 'Tony', 'Lynch'), (1272941, '', 'Iota'), (1278483, 'Cavin', 'Cornwall'), (1278487, 'Hannah', 'Waddingham'), (1292825, 'Ben', 'Gerrard'), (1294982, 'Paul Walter', 'Hauser'), (1295417, 'Kim', 'Jong-soo'), (1295761, 'Suzanne', 'Buirgy'), (1300075, 'Dwight', 'Turner'), (1303873, 'Jenna', 'Kanell'), (1319469, 'Ronny', 'Chieng'), (1327613, 'Karl', 'Glusman'), (1330423, 'Kim', 'Dae-myung'), (1335315, 'Georgina', 'Campbell'), (1336804, 'Yoo', 'Jae-myung'), (1338488, 'Aksel', 'Üstün'), (1343136, 'Vinod', 'Prabhakar'), (1347175, 'Kim', 'Eui-sung'), (1355622, 'Ricky', 'Tribord'), (1363060, 'Amra', 'Mallassi'), (1363809, 'Monsieur', 'Poulpe'), (1364324, 'Lex', 'Daniel'), (1364528, 'Lee', 'Ha-nee'), (1366194, 'Victor', 'Pontecorvo'), (1370577, 'Stéphane', 'Jacquot'), (1371546, 'Alexa', 'Mansour'), (1371894, 'Kaitlyn', 'Dias'), (1373526, 'Burt', 'Caesar'), (1373737, 'Florence', 'Pugh'), (1381186, 'Stephanie', 'Hsu'), (1385813, 'Jefferson', 'White'), (1394427, 'Travis', 'Jeffery'), (1394433, 'Hiroshi', 'Kasuga'), (1394442, 'Toby', 'Fuller'), (1394451, 'Yoji', 'Tatsuta'), (1397778, 'Anya', 'Taylor-Joy'), (1398632, 'Steve', 'Wall'), (1399166, 'Melanie', 'Liburd'), (1406892, 'Paris Van', 'Dyke'), (1414117, 'Anaïs', 'Parello'), (1416897, 'Marky Lee', 'Campbell'), (1420819, 'Bae', 'Noo-ri'), (1425059, 'Zdeněk', 'Dvořáček'), (1427688, 'Dean', 'Grimes'), (1431398, 'Vince', 'Pisani'), (1432064, 'Abraham', 'Popoola'), (1434017, 'Matthew', 'Sim'), (1443472, 'Erik', 'Langley'), (1444366, 'Kim', 'Ki-cheon'), (1444816, 'Peter', 'Macon'), (1445417, 'Lee', 'Perry'), (1445877, 'Olga', 'Miller'), (1447932, 'Winston', 'Duke'), (1449075, 'Allyson', 'Seeger'), (1450075, 'Jean-Marc', 'Bellu'), (1452807, 'Katja', 'Wagner'), (1453786, 'April', 'Hong'), (1457238, 'Sonoya', 'Mizuno'), (1469135, '', 'Lilimar'), (1470534, 'Jonas', 'Dinal'), (1475833, 'Lee', 'Shorten'), (1489211, 'Simu', 'Liu'), (1501120, 'Min', 'Kim'), (1502198, 'Jerri', 'Tubbs'), (1502319, 'Martha B.', 'Knighton'), (1502451, 'James Taku', 'Leung'), (1504904, 'Molly', 'Jackson'), (1508173, 'Edmund', 'Donovan'), (1509023, 'Matthew Van', 'Leeve'), (1509454, 'Artt', 'Butler'), (1513568, 'Florence', 'Mezzara'), (1515510, 'Melissa', 'Saint-Amand'), (1516729, 'Bianca', 'Bethune'), (1528809, 'James', 'Yaegashi'), (1530733, 'Ryu', 'Jun-yeol'), (1531086, 'Višnja', 'Obradović'), (1531657, 'Peter', 'Sagal'), (1537768, 'Kim', 'Tae-ri'), (1539586, 'Nikos', 'Andronicos'), (1541593, 'Sunčica', 'Milanović'), (1551044, 'Rahel', 'Romahn'), (1558337, 'Vaughn', 'Johseph'), (1565450, 'Aurora', 'Blue'), (1565451, 'Veronika', 'Bonell'), (1565452, 'Lola', 'Cooley'), (1565453, 'Dani', 'Dare'), (1565455, 'Andrea', 'Datzman'), (1565456, 'Randy', 'Hahn'), (1565457, 'Emma', 'Hudak'), (1565458, 'Evan', 'Hudak'), (1565459, 'Dara', 'Iruka'), (1565460, 'Daniella', 'Jones'), (1565461, 'Sophia Lee', 'Karadi'), (1565465, 'Tony', 'Maki'), (1565467, 'Nick', 'Pitera'), (1565470, 'Murray Pearl', 'Schaeffer'), (1566012, 'Jo', 'Woo-jin'), (1569193, 'James', 'Millard'), (1574622, 'Go', 'Gyu-pil'), (1578220, 'Levy', 'Tran'), (1586047, 'Owen', 'Teague'), (1602013, 'Alex', 'Lee'), (1615594, 'Ahmed', 'Lucan'), (1625558, '', 'Awkwafina'), (1627984, 'Rachid', 'Abbad'), (1628383, 'Derek', 'Russo'), (1633278, 'Julien', 'Jakout'), (1634440, 'Sophia', 'Emberson-Bain'), (1646774, 'Christopher', 'Sean'), (1649152, 'Jacob', 'Batalon'), (1653905, 'Mayumi', 'Yoshida'), (1667664, 'Ed', 'Herbstman'), (1673717, 'Zara', 'Michales'), (1680316, 'Heo', 'Ji-won'), (1683343, 'Cailee', 'Spaeny'), (1684351, 'Jesse', 'Malinowski'), (1689329, 'Juani', 'Feliz'), (1689339, 'Jeff', 'Bosley'), (1697940, 'Daniel', 'Schröckert'), (1709047, 'Cailey', 'Fleming'), (1717801, 'Léa', 'Léviant'), (1734173, 'Jon', 'Iles'), (1734178, 'Ben', 'Smith-Petersen'), (1734182, 'Robert', 'Jones'), (1734184, 'Shyan', 'Tonga'), (1734188, 'Ripley', 'Voeten'), (1734935, 'Evan', 'Holtzman'), (1745104, "Ernest 'Scooby'", 'Rogers'), (1745137, 'Sheree da', 'Costa'), (1749388, 'Marcia', 'Tucker'), (1756597, 'James Austin', 'Johnson'), (1763910, 'Jay DeVon', 'Johnson'), (1764370, 'Daouda', 'Keita'), (1766435, 'Kim', 'Min-seo'), (1767276, 'Cat', 'Simmons'), (1768009, 'Nicholas', 'Verdi'), (1775865, 'Masa', 'Kanome'), (1780346, 'Kait', 'Tenison'), (1790012, 'Tim', 'James'), (1790182, 'Adam', 'Bloom'), (1813752, 'Bobby', 'Hernandez'), (1825888, 'Brian', 'Philpot'), (1836699, 'Diarmuid de', 'Faoite'), (1847915, 'Humberly', 'González'), (1849954, 'Wolfgang', 'Novogratz'), (1850005, 'Tim', 'Carroll'), (1874958, 'Brent Moorer', 'Gaskins'), (1882774, 'Italo', 'Amerighi'), (1901394, 'Huw', 'Novelli'), (1903874, 'Maya', 'Hawke'), (1908764, 'Dashell', 'Zamm'), (1934576, 'Giusi', 'Merli'), (1935849, 'Moe', 'Bar-El'), (1939055, 'Dawayne', 'Jordan'), (1944266, 'Greg', 'Hill'), (1945374, 'Will', 'Irvine'), (1956794, 'Howland', 'Wilson'), (1963462, 'Yves', 'Calvi'), (1970662, 'Gregory James', 'Cohan'), (1984017, 'Chantelle', 'Jamieson'), (1988030, 'Ryu', 'Sung-hyun'), (1989290, 'Jin', 'Sun-kyu'), (2000658, 'Chloe', 'Fineman'), (2001956, 'Evan', 'Lai'), (2037046, 'Souheila', 'Yacoub'), (2047180, 'Karl Van', 'Moorsel'), (2054077, 'Joseph', 'Charles'), (2069517, 'Gábor', 'Szemán'), (2071572, 'Logan', 'Hunt'), (2079867, 'Mel', 'Powell'), (2088446, 'Jin', 'Ha'), (2089936, 'Steven Sean', 'Garland'), (2093324, 'Anna', 'Halberg'), (2096500, 'Greg', 'Hatton'), (2098163, 'Amy', 'Sturdivant'), (2098630, 'Ahn', 'Se-ho'), (2116647, 'Scott', 'Johnson'), (2120814, 'Adain', 'Bradley'), (2122049, 'Jasmin', 'Lawrence'), (2125943, 'Ko', 'Gun-han'), (2128650, 'Benjamin', 'Scott'), (2133924, 'Ok', 'Ja-yeon'), (2135069, 'Jojo T.', 'Gibbs'), (2138905, 'Simon', 'McLachlan'), (2145383, 'Justin James', 'Boykin'), (2146942, 'Freya', 'Allan'), (2148104, 'Kang', 'Yoon'), (2151474, 'Choi', 'Yu-ri'), (2158768, 'Jimmy', 'Walker'), (2159482, 'Lee', 'Ji-hoon'), (2166824, 'Sandra', 'Parfait'), (2173699, 'Nagisa', 'Morimoto'), (2179424, 'Serhat', 'Metin'), (2185196, 'Justin Walker', 'White'), (2195140, 'Ayo', 'Edebiri'), (2212128, 'Kajsa', 'Mohammar'), (2215526, 'James', 'Swanton'), (2220846, 'Jesse', 'Turner'), (2235946, 'Jeong', 'In-kyeom'), (2256312, 'Jacob', 'Scipio'), (2259333, 'Shivantha', 'Wijesinha'), (2259783, 'David', 'Barnett'), (2282154, 'Jimmy', 'Donaldson'), (2283795, 'Gregory J.', 'Fryer'), (2291087, 'Kim', 'Do-gun'), (2295806, 'Ben', 'Knight'), (2309880, 'Frances', 'Berry'), (2342156, 'Nicola', 'Brome'), (2357412, 'Logan', 'Kim'), (2369527, 'Gloria', 'Cole'), (2372075, 'Peter Sztojanov', 'Jr.'), (2373501, 'Reyn', 'Doi'), (2380037, 'Madeleine', 'Wilson'), (2388831, 'Larsen', 'Thompson'), (2403317, 'Timi-Joy', 'Marbot'), (2423284, 'Billy', 'Clements'), (2431565, 'Alyla', 'Browne'), (2435321, 'Lydia', 'Peckham'), (2440257, 'Hong Indira', 'Rieck'), (2458276, 'Semu', 'Filipo'), (2458747, 'Marvin', 'Dubart'), (2476742, 'Alan', 'Kim'), (2478780, 'Lee', 'Si-hoon'), (2480853, 'Harriet', 'Slater'), (2502877, 'Catharine', 'Daddario'), (2504388, 'Adia', 'Smith-Eriksson'), (2518487, 'Thomas', 'Espinera'), (2522236, 'Dennis', 'McDonald'), (2551325, 'Tim', 'Franklin'), (2553628, 'Janos', 'Tiborcz'), (2559822, 'Robert', 'Tinsley'), (2570548, 'Malachi', 'Mutakabbir'), (2575303, 'Laquet Sharnell', 'Pringle'), (2576032, 'Quinn', 'Hemphill'), (2618018, 'Madeleine', 'Jones'), (2627443, 'Tim', 'Rogers'), (2632032, 'Megan', "O'Connell"), (2632353, 'Samuel', 'Falé'), (2634981, 'Emily', 'Havea'), (2637893, 'Virginie', 'Laverdure'), (2639174, 'Peggy', 'Etra'), (2643001, 'Cody', 'Marshall'), (2646671, 'Kaden', 'Hartcher'), (2663919, 'Yoon', 'Byung-hee'), (2692444, 'Lee', 'Se-ho'), (2709774, 'Lee', 'Tae-kyu'), (2710312, 'Oliver', 'Finnegan'), (2719906, 'Joss', 'Carter'), (2721623, 'Bria', 'Brimmer'), (2728596, 'Nat', 'Buchanan'), (2729674, 'Alex', 'Pires'), (2747866, 'Patrick', 'Millin'), (2749024, '', 'Avantika'), (2756171, 'Simeon', 'Freeman'), (2757115, 'Manaf', 'Irani'), (2758109, 'Zsófia', 'Kocsis'), (2798670, 'Yvonne', 'Campbell'), (2801110, 'Felix', 'Leech'), (2829072, 'Lawrence', 'Ola'), (2855994, 'Akiko', 'Hitomi'), (2863913, 'Jonathan', 'Gunning'), (2878476, 'Kim', 'Tae-jun'), (2881089, 'Daniel', 'Nelson'), (2895359, 'Jung', 'Mi-hyeong'), (2896645, 'Ron', 'Smyck'), (2911018, 'Jayden', 'Irving'), (2917826, 'Ioane', "Sa'ula"), (2936138, 'Choi', 'Dong-goo'), (2948491, 'Kaylee', 'Hottle'), (2985385, 'Shim', 'Young-eun'), (2990052, 'Noureddine', 'Hajoujou'), (2992036, 'Lorraine', 'Tai'), (2993591, 'Alex', 'Time'), (3012028, 'Amer', 'El-Erwadi'), (3020876, 'Kensington', 'Tallman'), (3035155, 'Son', 'In-yong'), (3038337, 'Xanthia', 'Marinelli'), (3054747, 'Matuse', 'Paz'), (3055705, 'Guy', 'Spence'), (3067900, 'Darcy', 'Bryce'), (3072032, 'Jared', 'Shaw'), (3081264, 'Jay', 'Shetty'), (3081917, 'Angela Nica', 'Sullen'), (3085693, 'Nirish Bhat', 'Surambadka'), (3097574, 'Sarah Sarang', 'Oh'), (3100178, 'Kelli', 'Bailey'), (3115933, 'Cassandra', 'Sorrell'), (3236054, 'Ibrahima', 'Ba'), (3237601, 'Dylan', 'Baldwin'), (3264370, 'Grace', 'Lu'), (3269719, 'Rand', 'Faris'), (3275193, 'Han', 'Kyu-won'), (3280944, 'Jared', 'Shimabukuro'), (3291912, 'Shane', "O'Regan"), (3305523, 'Han', 'Dong-kyu'), (3305956, 'Miles', 'Johnson'), (3313934, 'Alan', 'Mehdizadeh'), (3314044, 'Briella', 'Guiza'), (3314410, 'Dora', 'Kápolnai-Schvab'), (3314411, '', 'Joelle'), (3366121, 'Nick', 'Annas'), (3366146, 'Chika', 'Ikogwe'), (3382280, 'Staša', 'Nikolić'), (3430988, 'Adam', 'Dunn'), (3435712, 'Shakriya', 'Tarinyawat'), (3452589, 'Iñaki', 'Lartigue'), (3495288, 'Botond', 'Bóta'), (3511290, 'Cora Maple', 'Lindell'), (3520488, 'Jaclyn', 'White'), (3529502, 'Alexandra', 'Tóth'), (3539260, 'Dirk', 'Rabe'), (3549271, 'Anna', 'Adams'), (3568034, 'Nathan', 'Hesse'), (3579580, 'Quaden', 'Bayles'), (3585651, 'Matt De', 'Souza'), (3594766, 'Hong', 'Jun-young'), (3602293, 'Yong', 'Yea'), (3608238, 'Justin', 'Garza'), (3624711, 'Tedroy', 'Newell'), (3639306, 'Lee', 'Hyun-gul'), (3641129, 'Jess', 'Matney'), (3641130, 'Tywaun', 'Tornes'), (3669713, 'Hopi', 'Grace'), (3682068, 'Yoo', 'In-hyuk'), (3686562, 'Hugo', 'Trophardy'), (3704161, 'Ryan Austin', 'Bryant'), (3705641, 'Ash', 'Hodgkinson'), (3711093, 'Maleeka', 'Gasbarri'), (3734838, 'Xavier Alba', 'Royo'), (3757983, 'Ras-Samuel', "Welda'abzgi"), (3761948, 'Shannon', 'Antonia'), (3770091, 'Diego', 'Retamales'), (3774031, 'Kevin', 'Kedgley'), (3791324, 'Andrea', 'Bechis'), (3821441, 'Choi', 'Woo-jun'), (3857644, 'Ana', 'Cilas'), (3863344, 'Kya', 'Brame'), (3867166, 'Geoffrey', 'Hinton'), (3868920, 'Dan', 'Reardon'), (3899921, 'Luis', 'Alkmim'), (3914947, 'Harj', 'Dhillon'), (3957230, 'Han', 'Ki-jang'), (3981140, 'Cho', 'Kook-hyung'), (4008428, 'Lucian', 'Roucka'), (4010802, 'Jeon', 'Ah-hee'), (4019755, 'David', 'Yeung'), (4019759, 'Sean David', 'Lowe'), (4020310, 'Vic', 'Zander'), (4030968, 'Choi', 'Kwang-je'), (4033288, 'Alison', 'Halstead'), (4044399, 'Roman Boeer de', 'Garcez'), (4047107, 'Kim', 'Ki-ho'), (4047968, 'Patricia', 'Rabus'), (4048524, 'Shin', 'Hyeon-yong'), (4056270, 'Ty', 'Fisher'), (4056272, 'Benn', 'Jovanovski'), (4064869, 'Park', 'Jun-hyuk'), (4072157, 'Molly', 'Mcowan'), (4072158, 'Rex', 'Adams'), (4072163, 'Fouad', 'Humaidan'), (4072164, 'Hassan', 'Najib'), (4072167, 'Elbooz Omar Ahmed', 'Fathie'), (4072170, 'Tim', 'Hilborne'), (4086224, 'Michael', 'Nesto'), (4086229, 'Justin Joseph', 'Brown'), (4086231, 'Ruby Joe', 'Fetkenheuer'), (4086235, 'Axyl W.', 'Clarkson'), (4086236, 'David', 'Ruessel'), (4093599, 'David', 'Kurzhal'), (4103947, 'Manuel', 'Werling'), (4103950, 'Kira', 'Kortenbach'), (4118011, 'Shon', 'Ji-young'), (4118013, 'Han', 'Da-hee'), (4123321, "Sa'Raya Paris", 'Johnson'), (4142055, 'Kwan', 'Jao'), (4142056, 'Pascal', 'Siffert'), (4142058, 'Grégoire', 'Canlorbe'), (4149146, 'Benoit', 'Pitre'), (4173535, 'Daniel Patrick', 'Shook'), (4193195, 'Jordy', 'Campbell'), (4199450, 'Jewelianna', 'Ramos-Ortiz'), (4201101, 'Danny', 'Lim'), (4202900, 'Jack', 'Doherty'), (4207481, 'Charles', 'Camrose'), (4228844, 'Supreet', 'Bedi'), (4233589, 'Niall', 'White'), (4274663, 'Peter', 'Sammak'), (4287863, 'Marcia', 'Coronado'), (4307089, 'Michelangelo', 'Hyeon'), (4329963, 'Anthony', 'Morris'), (4329965, 'Hannah', 'Howland'), (4329966, 'Cara', 'Steele'), (4329967, 'Kofi De Graft', 'Jordan'), (4364226, 'Cassie', 'Riley'), (4366710, 'Julia', 'Harriman'), (4377186, 'CJ.', 'Bloomfield'), (4379987, 'Cece', 'Valentina'), (4416178, 'Mila', "O'Malley"), (4433125, 'Joyner', 'Lucas'), (4441956, 'Charlee', 'Fraser'), (4472548, 'Nina', 'Gallas'), (4473605, 'Nathan', 'Langworthy'), (4484228, 'Ji', 'Gun-woo'), (4504876, 'Martin', 'Cohen'), (4504885, 'Charlotte', 'Wood'), (4505121, 'Madison', 'Polan'), (4512499, 'Khaby', 'Lame'), (4522725, 'Chris', 'Matheson'), (4541002, 'Yeon', 'Ye-rim'), (4551440, 'Jacob', 'Greenway'), (4554406, 'Alison', 'Adnet'), (4554407, 'Hamza', 'Baissa'), (4554408, 'Jasper', 'Ryan-Carter'), (4554411, 'Abdelkarim Hussein Seli Mohamed', 'Hassanin'), (4554420, 'Abdelaziz', 'Boumane'), (4554421, 'Abdellah', 'Echahbi'), (4554422, 'Zouhair', 'Elakkari'), (4554423, 'Mohamed', 'Mouraoui'), (4554424, 'Adil Achraf', 'Sayd'), (4554426, 'Hamza', 'Sayd'), (4554427, 'Havin', 'Fathi'), (4554430, 'Remi', 'Fadare'), (4554432, 'Oxa', 'Hazel'), (4554433, 'Hajiyeva', 'Pakiza'), (4554435, 'Sima', 'Rostami'), (4558342, 'Omar', 'A.K.'), (4558343, 'Paul', 'Boyle'), (4558354, 'Sára', 'Bácsfalvi'), (4558357, 'Zoe Kata', 'Kaska'), (4559101, 'Tracy', 'Todd'), (4566278, 'Audrey', 'Brooke'), (4578518, 'Sumayyah', 'Nuriddin-Green'), (4578519, 'Kendall Coyne', 'Schofield'), (4582130, 'Lincoln', 'Nakamura'), (4589981, 'Spencer', 'Connelly'), (4589985, 'Yeye', 'Zhou'), (4590935, 'Theodore', 'Avery'), (4590942, 'Nova', 'Onas'), (4590963, 'Nathan', 'Bates'), (4590970, 'Luisa', 'Mariano'), (4590971, 'Tahlia', 'Crinis'), (4590972, 'Georgia', 'Willett'), (4623438, 'Tess', 'Dobre'), (4636543, 'Jamaliah', 'Othman'), (4636546, 'Nick', 'Lawler'), (4645192, 'José Antonio Pedrosa', 'Moreno'), (4646847, 'Blanca', 'Goodfriend'), (4698603, 'Kalkidan', 'China'), (4698604, 'Di', 'Smith'), (4698607, 'Georgia', 'Nottage'), (4698608, 'Andrew', 'Owen'), (4712399, 'Audrey', 'Hoffman'), (4719445, 'Robert', 'Clavero'), (4719447, 'Patrick', 'Moroney'), (4727486, 'Alexander', 'Rivero'), (4727490, 'Marta Siteiya', 'Moipei'), (4727493, 'David', 'Weissmann'), (4728208, 'Peter', 'Stephens'), (4728209, 'Sean', 'Millis'), (4728211, 'Dylan', 'Adonis'), (4728215, 'Stephen', 'Amadasun'), (4728218, 'Jamie', 'Cluff'), (4728219, 'Adam', 'Thompson'), (4728221, 'Nellie', 'Collins'), (4728222, 'Adam', 'Washbourne'), (4728224, 'James', 'Corcoran'), (4728225, 'Sasa', 'Vitanovic'), (4728227, 'Tige Sixel', 'Miller'), (4728228, 'Justice', 'Jones'), (4728230, 'Keza', 'Ishimwe'), (4728232, 'Mark', 'Wales'), (4728234, 'Chudier', 'Gatwech'), (4728239, 'Harrison', 'Norris'), (4728241, 'Sean', 'Renfrey'), (4732041, 'Peter', 'Hayes'), (4732042, 'Souleymane', 'Diasse'), (4732043, 'Anastasia', 'Miller'), (4732044, 'Michael', 'Spudic'), (4733135, 'Ashley J.', 'Hicks'), (4733161, 'Greg', 'Mckenzie'), (4733200, 'Omar', 'Khan'), (4733203, 'Tom', 'Knight'), (4733206, 'Jessica', 'Holmes'), (4735086, 'Alio Wencheng', 'Fan'), (4735305, 'Chong Wei', 'Zhang'), (4736038, 'Mike', 'Derudder'), (4745961, 'Temper', 'Lavigne'), (4745962, 'Timothy', 'LaForce'), (4745963, 'Randy S.', 'Love'), (4745964, 'LePrix', 'Robinson'), (4745965, 'Easy Ian', 'Radcliffe'), (4752519, 'Royce Mealin', 'Jr.'), (4753648, 'Hannah', 'Dargan'), (4753649, 'Emily', 'Dargan'), (4757324, 'Lucy', 'Ridley'), (4757352, 'Dunja', 'Pavlović'), (4758268, 'Karter Reese', 'Newsome'), (4758270, 'James Lee', 'Thomas'), (4758277, 'Adriana', 'Sheri'), (4758280, 'Marybel', 'Rodriguez'), (4758281, 'Austin', 'Carter'), (4758322, 'Sandra', 'Tabarés'), (4758324, 'Marina', 'Yerles'), (4758330, 'Mahily Dement', 'Elismar'), (4758335, 'Balthazar', 'Boncza'), (4775147, 'Robert', 'Yasumura'), (4775148, 'Karen', 'Yasumura'), (4775149, 'Veronica', 'Lapke'), (4775151, 'Jon', 'Ohye'), (4775526, 'Hiro', 'Nakamura');
INSERT INTO `directors` (`id`, `name`, `surname`) VALUES
(182001, "kelsey", "Mann"),
(67803, "Amanda", "Silver"),
(12890, "Pete", "Docter"),
(1399842, "Bilall", "Fallah"),
(18184, "Xavier", "Gens"),
(17697, "John", "Krasinski"),
(98631, "Adam", "Wingard"),
(2036, "Alex", "Garland"),
(2376041, "Lee", "Sang-yong"),
(1069627, "Ross", "Clarkson"),
(2957803, "Ishana", "Night Shyamalan"),
(119337, "Choi", "Dong-hoon"),
(1453540, "Shannon", "Tindle"),
(132876, "Brad", "Peyton"),
(64151, "Mike", "Mitchell"),
(40684, "David", "Leitch"),
(1651531, "Spenser", "Cohen"),
(124748, "Chris", "Renaud"),
(137427, "Denis", "Villeneuve"),
(20629, "George", "Miller");
INSERT INTO `genres` (`id`, `name`) VALUES
(28,'Action'),
(12,'Adventure'),
(16,'Animation'),
(35,'Comedy'),
(80,'Crime'),
(99,'Documentary'),
(18,'Drama'),
(10751,'Family'),
(14,'Fantasy'),
(36,'History'),
(27,'Horror'),
(10402,'Music'),
(9648,'Mystery'),
(10749,'Romance'),
(878,'Science Fiction'),
(10770,'TV Movie'),
(53,'Thriller'),
(10752,'War'),
(37,'Western');
INSERT INTO `movies` (`id`, `title`, `overview`, `runtime`, `poster_path`, `id_director`) VALUES
(1022789, "Inside Out 2", "Teenager Riley's mind headquarters is undergoing a sudden demolition to make room for something entirely unexpected: new Emotions! Joy, Sadness, Anger, Fear and Disgust, who've long been running a successful operation by all accounts, aren't sure how to feel when Anxiety shows up. And it looks like she's not alone.", 97, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/oxxqiyWrnM0XPnBtVe9TgYWnPxT.jpg", 182001),
(653346, "Kingdom of the Planet of the Apes", "Several generations in the future following Caesar's reign, apes are now the dominant species and live harmoniously while humans have been reduced to living in the shadows. As a new tyrannical ape leader builds his empire, one young ape undertakes a harrowing journey that will cause him to question all that he has known about the past and to make choices that will define a future for apes and humans alike.", 145, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/gKkl37BQuKTanygYQG1pyYgLVgf.jpg", 67803),
(150540, "Inside Out", "From an adventurous balloon ride above the clouds to a monster-filled metropolis, Academy Award-winning director Pete Docter (Monsters, Inc., Up), has taken audiences to unique and imaginative places. In Disney and Pixar's original movie Inside Out, he will take us to the most extraordinary location of all—inside the mind.", 95, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/2H1TmgdfNtsKlU9jKdeNyYL5y8T.jpg", 12890),
(573435, "Bad Boys: Ride or Die", "After their late former Captain is framed, Lowrey and Burnett try to clear his name, only to end up on the run themselves.", 115, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/nP6RliHjxsz4irTKsxe8FRhKZYl.jpg", 1399842),
(1001311, "Sous la Seine", "In the Summer of 2024, Paris is hosting the World Triathlon Championships on the Seine for the first time. Sophia, a brilliant scientist, learns from Mika, a young environmental activist, that a large shark is swimming deep in the river. To avoid a bloodbath at the heart of the city, they have no choice but to join forces with Adil, the Seine river police commander.", 104, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/qZPLK5ktRKa3CL4sKRZtj8UlPYc.jpg", 18184),
(639720, "IF", "A young girl who goes through a difficult experience begins to see everyone's imaginary friends who have been left behind as their real-life friends have grown up.", 104, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/xbKFv4KF3sVYuWKllLlwWDmuZP7.jpg", 17697),
(823464, "Godzilla x Kong: The New Empire", "Following their explosive showdown, Godzilla and Kong must reunite against a colossal undiscovered threat hidden within our world, challenging their very existence and our own.", 115, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/z1p34vh7dEOnLDmyCrlUVLuoDzd.jpg", 98631),
(929590, "Civil War", "In the near future, a group of war journalists attempt to survive while reporting the truth as the United States stands on the brink of civil war.", 109, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/sh7Rg8Er3tFcN9BpKIPOMvALgZd.jpg", 2036),
(955555, "The Roundup: Punishment", "Detective Ma Seok-do changes his affiliation from the Geumcheon Police Station to the Metropolitan Investigation Team, in order to eradicate Japanese gangsters who enter Korea to commit heinous crimes.", 105, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/lW6IHrtaATxDKYVYoQGU5sh0OVm.jpg", 2376041),
(1115623, "The Last Kumite", "When Karate champion Michael Rivers wins the last tournament of his career, shady businessman Ron Hall offers him the opportunity to fight in an illegal Kumite in Bulgaria against the world's best martial artists. When Michael declines, Hall has his daughter kidnapped and, in order to rescue her, Rivers is left with no choice but to compete in the deadly tournament. Arriving in Bulgaria, he finds out that he is not the only fighter whose loved one was taken. Rivers enlists the help of trainers Master Loren, and Julie Jackson but will it be enough for him to win the tournament and save his daughter's life?", 101, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/zDkaJgsPoSqa2cMe2hW2HAfyWwO.jpg", 1069627),
(1086747, "The Watchers", "A young artist gets stranded in an extensive, immaculate forest in western Ireland, where, after finding shelter, she becomes trapped alongside three strangers, stalked by mysterious creatures each night.", 102, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/vZVEUPychdvZLrTNwWErr9xZFmu.jpg", 2957803),
(626412, "Alienoid: Return to the Future", "Ean has a critical mission to return to the future to save everyone. However, she becomes trapped in the distant past while trying to prevent the escape of alien prisoners who are locked up in the bodies of humans. Meanwhile, Muruk, who helps Ean escape various predicaments, is unnerved when he begins sensing the presence of a strange being in his body. Traveling through the centuries, they are trying to prevent the explosion of the haava.", 122, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/4RClncz0GTKPZzSAcAalHCw0h3g.jpg", 119337),
(829402, "Ultraman: Rising", "With Tokyo under attack from kaiju, Ultraman discovers his greatest challenge isn't fighting giant monsters - it's raising one.", 117, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/j886YEkIUsiImY53px5VHKD4lRa.jpg", 1453540),
(614933, "Atlas", "A brilliant counterterrorism analyst with a deep distrust of AI discovers it might be her only hope when a mission to capture a renegade robot goes awry.", 120, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/bcM2Tl5HlsvPBnL8DKP9Ie6vU4r.jpg", 132876),
(1011985, "Kung Fu Panda 4", "Po is gearing up to become the spiritual leader of his Valley of Peace, but also needs someone to take his place as Dragon Warrior. As such, he will train a new kung fu practitioner for the spot and will encounter a villain called the Chameleon who conjures villains from the past.", 94, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/kDp1vUBnMpe8ak4rjgl3cLELqjU.jpg", 64151),
(746036, "The Fall Guy", "Fresh off an almost career-ending accident, stuntman Colt Seavers has to track down a missing movie star, solve a conspiracy and try to win back the love of his life while still doing his day job.", 126, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/aBkqu7EddWK7qmY4grL4I6edx2h.jpg", 40684),
(719221, "Tarot", "When a group of friends recklessly violate the sacred rule of Tarot readings, they unknowingly unleash an unspeakable evil trapped within the cursed cards. One by one, they come face to face with fate and end up in a race against death.", 92, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/gAEUXC37vl1SnM7PXsHTF23I2vq.jpg", 1651531),
(519182, "Despicable Me 4", "Gru and Lucy and their girls — Margo, Edith and Agnes — welcome a new member to the Gru family, Gru Jr., who is intent on tormenting his dad. Gru faces a new nemesis in Maxime Le Mal and his femme fatale girlfriend Valentina, and the family is forced to go on the run.", 95, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/wWba3TaojhK7NdycRhoQpsG0FaH.jpg", 124748),
(693134, "Dune: Part Two", "Follow the mythic journey of Paul Atreides as he unites with Chani and the Fremen while on a path of revenge against the conspirators who destroyed his family. Facing a choice between the love of his life and the fate of the known universe, Paul endeavors to prevent a terrible future only he can foresee.", 167, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/1pdfLvkbY9ohJlCjQH2CZjjYVvJ.jpg", 137427),
(786892, "Furiosa: A Mad Max Saga", "As the world fell, young Furiosa is snatched from the Green Place of Many Mothers and falls into the hands of a great Biker Horde led by the Warlord Dementus. Sweeping through the Wasteland they come across the Citadel presided over by The Immortan Joe. While the two Tyrants war for dominance, Furiosa must survive many trials as she puts together the means to find her way home.", 149, "https://media.themoviedb.org/t/p/w300_and_h450_bestv2/iADOJ8Zymht2JPMoy3R7xceZprc.jpg", 20629);
INSERT INTO movies_actors (id_movie, id_actor) VALUES
(150540, 56322), (150540, 169200), (150540, 19278), (150540, 59258), (150540, 125167), (150540, 21125), (150540, 1371894), (150540, 2882), (150540, 6677), (150540, 452205), (150540, 196502), (150540, 1226294), (150540, 64181), (150540, 7908), (150540, 84496), (150540, 1237), (150540, 7907), (150540, 59784), (150540, 1531657), (150540, 80591), (150540, 24358), (150540, 19547), (150540, 1565451), (150540, 167295), (150540, 35159), (150540, 7905), (150540, 1565450), (150540, 1565452), (150540, 1565453), (150540, 1565455), (150540, 1236458), (150540, 12890), (150540, 143346), (150540, 1260745), (150540, 1565456), (150540, 1141501), (150540, 969332), (150540, 1565457), (150540, 1565458), (150540, 1565459), (150540, 1504904), (150540, 1565460), (150540, 1565461), (150540, 72754), (150540, 1443472), (150540, 87819), (150540, 214701), (150540, 1565465), (150540, 111466), (150540, 7998), (150540, 1565467), (150540, 61969), (150540, 1565470), (150540, 939345), (150540, 1406892), (150540, 86007), (150540, 1098034), (150540, 1908764), (519182, 4495), (519182, 41091), (519182, 23659), (519182, 63522), (519182, 125025), (519182, 58769), (519182, 2000658), (519182, 17743), (519182, 124750), (519182, 4505121), (519182, 124747), (519182, 4581), (519182, 124748), (519182, 41088), (519182, 4589), (519182, 34517), (573435, 2888), (573435, 78029), (573435, 67599), (573435, 23498), (573435, 544442), (573435, 58115), (573435, 65524), (573435, 2256312), (573435, 1399166), (573435, 74610), (573435, 62765), (573435, 1230868), (573435, 532), (573435, 224235), (573435, 119869), (573435, 1516729), (573435, 2522236), (573435, 2576032), (573435, 865), (573435, 1628383), (573435, 4758268), (573435, 1578220), (573435, 1763910), (573435, 64900), (573435, 1768009), (573435, 2089936), (573435, 1502198), (573435, 4199450), (573435, 80779), (573435, 4758270), (573435, 3081264), (573435, 58733), (573435, 1615594), (573435, 2721623), (573435, 2729674), (573435, 3568034), (573435, 1684351), (573435, 4646847), (573435, 2122049), (573435, 4758277), (573435, 4433125), (573435, 4758280), (573435, 4758281), (573435, 1300075), (573435, 1303873), (573435, 109422), (573435, 1813752), (573435, 4512499), (614933, 16866), (614933, 1489211), (614933, 1225953), (614933, 1970662), (614933, 1432064), (614933, 177231), (614933, 2983), (614933, 3314044), (614933, 2504388), (614933, 2071572), (614933, 3280944), (614933, 4733135), (614933, 168140), (614933, 1252492), (614933, 1956794), (614933, 2185196), (614933, 4307089), (614933, 2369527), (614933, 1558337), (614933, 4228844), (614933, 2992036), (614933, 4733161), (614933, 3914947), (614933, 1569193), (614933, 4733200), (614933, 1251570), (614933, 4733203), (614933, 4733206), (614933, 61831), (614933, 2098163), (614933, 2570548), (614933, 2747866), (614933, 4735086), (614933, 2079867), (614933, 4559101), (614933, 3867166), (614933, 1939055), (614933, 4752519), (614933, 1243341), (626412, 1530733), (626412, 1537768), (626412, 1257671), (626412, 1364528), (626412, 37939), (626412, 1566012), (626412, 1347175), (626412, 1989290), (626412, 578838), (626412, 560081), (626412, 2478780), (626412, 932821), (626412, 1330423), (626412, 2151474), (626412, 1444366), (626412, 93252), (626412, 1336804), (626412, 2663919), (626412, 2133924), (626412, 3639306), (626412, 1680316), (626412, 3305523), (626412, 2235946), (626412, 1295417), (626412, 1766435), (626412, 2878476), (626412, 4484228), (639720, 1709047), (639720, 10859), (639720, 17697), (639720, 10981), (639720, 4495), (639720, 1023483), (639720, 20959), (639720, 2476742), (639720, 59693), (639720, 452205), (639720, 2502877), (639720, 4712399), (639720, 2575303), (639720, 1667664), (639720, 164258), (639720, 4727486), (639720, 1196534), (639720, 4123321), (639720, 4727490), (639720, 4727493), (639720, 1625558), (639720, 5081), (639720, 1461), (639720, 51329), (639720, 1892), (639720, 19278), (639720, 28633), (639720, 298410), (639720, 59175), (639720, 299743), (639720, 22227), (639720, 29528), (639720, 6807), (639720, 52792), (639720, 440414), (639720, 1449075), (639720, 12219), (653346, 1586047), (653346, 2146942), (653346, 79072), (653346, 1444816), (653346, 3905), (653346, 966554), (653346, 1394427), (653346, 2435321), (653346, 136295), (653346, 3757983), (653346, 103406), (653346, 2646671), (653346, 78962), (653346, 4472548), (653346, 2632353), (653346, 94797), (653346, 2637893), (653346, 166703), (653346, 2128650), (653346, 3085693), (653346, 2309880), (653346, 4732041), (653346, 1745137), (653346, 4732042), (653346, 1445877), (653346, 581170), (653346, 4732043), (653346, 4732044), (653346, 58395), (693134, 1190668), (693134, 505710), (693134, 933238), (693134, 3810), (693134, 16851), (693134, 86654), (693134, 1373737), (693134, 543530), (693134, 4690), (693134, 121529), (693134, 1640), (693134, 44079), (693134, 2037046), (693134, 2974), (693134, 205923), (693134, 4033288), (693134, 1934576), (693134, 1780346), (693134, 1239728), (693134, 2855994), (693134, 997684), (693134, 4554406), (693134, 4554407), (693134, 4072164), (693134, 4554408), (693134, 4072167), (693134, 4554411), (693134, 59298), (693134, 3734838), (693134, 1627984), (693134, 54807), (693134, 3495288), (693134, 4554420), (693134, 4554421), (693134, 4554422), (693134, 2990052), (693134, 4554423), (693134, 4554424), (693134, 4554426), (693134, 3669713), (693134, 4554427), (693134, 63007), (693134, 1767276), (693134, 1373526), (693134, 4554430), (693134, 3012028), (693134, 3624711), (693134, 4554432), (693134, 4554433), (693134, 145536), (693134, 4554435), (693134, 2798670), (693134, 2054077), (693134, 4020310), (693134, 3237601), (693134, 1749388), (693134, 2342156), (693134, 137229), (693134, 1901394), (693134, 1935849), (693134, 2179424), (693134, 1363060), (693134, 1790182), (693134, 3899921), (693134, 199529), (693134, 4558342), (693134, 1425059), (693134, 2423284), (693134, 208460), (693134, 1364324), (693134, 1117371), (693134, 4558343), (693134, 4233589), (693134, 109167), (693134, 2069517), (693134, 2863913), (693134, 1945374), (693134, 3313934), (693134, 4072158), (693134, 4072157), (693134, 3857644), (693134, 2212128), (693134, 4558354), (693134, 2758109), (693134, 1434017), (693134, 1398632), (693134, 1882774), (693134, 4072170), (693134, 1238612), (693134, 93089), (693134, 4558357), (693134, 2158768), (693134, 3269719), (693134, 4072163), (693134, 2757115), (693134, 3314410), (693134, 3314411), (693134, 1397778), (693134, 2372075), (693134, 3529502), (719221, 2480853), (719221, 2120814), (719221, 2749024), (719221, 1649152), (719221, 1847915), (719221, 1849954), (719221, 2388831), (719221, 933272), (719221, 1541593), (719221, 121204), (719221, 2719906), (719221, 2215526), (719221, 3382280), (719221, 2093324), (719221, 1278483), (719221, 4757324), (719221, 2801110), (719221, 1051396), (719221, 4757352), (719221, 1531086), (746036, 30614), (746036, 5081), (746036, 27428), (746036, 1278487), (746036, 20374), (746036, 1381186), (746036, 1447932), (746036, 2295806), (746036, 3054747), (746036, 3430988), (746036, 1673717), (746036, 2917826), (746036, 2283795), (746036, 2380037), (746036, 4698603), (746036, 3081917), (746036, 4698604), (746036, 2632032), (746036, 4202900), (746036, 1265143), (746036, 4698607), (746036, 150030), (746036, 2458276), (746036, 4698608), (746036, 3868920), (746036, 1416897), (746036, 4522725), (746036, 4473605), (746036, 2551325), (746036, 2116647), (746036, 942259), (746036, 2634981), (746036, 2829072), (746036, 3115933), (746036, 1292825), (746036, 3770091), (746036, 2138905), (746036, 1602013), (746036, 1090945), (746036, 18589), (746036, 167393), (746036, 117642), (746036, 2881089), (746036, 4504885), (746036, 2618018), (746036, 4590935), (746036, 4590942), (746036, 4590963), (746036, 3435712), (746036, 4590970), (746036, 4590971), (746036, 4504876), (746036, 4590972), (746036, 1394451), (786892, 1397778), (786892, 74568), (786892, 52891), (786892, 2431565), (786892, 148899), (786892, 75122), (786892, 102603), (786892, 4441956), (786892, 59117), (786892, 24898), (786892, 73269), (786892, 1056053), (786892, 57795), (786892, 1551044), (786892, 150030), (786892, 61784), (786892, 4377186), (786892, 3054747), (786892, 1224391), (786892, 3055705), (786892, 1734182), (786892, 109437), (786892, 1125220), (786892, 2627443), (786892, 1513568), (786892, 3579580), (786892, 4728208), (786892, 4728209), (786892, 1445417), (786892, 4728211), (786892, 2259783), (786892, 3549271), (786892, 4274663), (786892, 208282), (786892, 56162), (786892, 2047180), (786892, 112698), (786892, 66055), (786892, 4728215), (786892, 3366121), (786892, 1734188), (786892, 1509023), (786892, 105124), (786892, 4728218), (786892, 4728219), (786892, 1734184), (786892, 4728221), (786892, 4728222), (786892, 4728224), (786892, 4728225), (786892, 4728227), (786892, 4728228), (786892, 3711093), (786892, 4728230), (786892, 2728596), (786892, 215913), (786892, 4728232), (786892, 1014587), (786892, 4201101), (786892, 3067900), (786892, 4728234), (786892, 2259333), (786892, 4589981), (786892, 1734178), (786892, 1394442), (786892, 2911018), (786892, 2220846), (786892, 1734173), (786892, 4728239), (786892, 3705641), (786892, 4728241), (786892, 1272941), (786892, 3038337), (786892, 2993591), (786892, 234548), (786892, 4589985), (786892, 1539586), (786892, 3100178), (786892, 4287863), (786892, 3585651), (786892, 1394433), (786892, 3435712), (786892, 4735305), (823464, 15556), (823464, 226366), (823464, 221018), (823464, 2948491), (823464, 60416), (823464, 123701), (823464, 15298), (823464, 2896645), (823464, 1984017), (823464, 2096500), (823464, 61782), (823464, 4623438), (823464, 1850005), (823464, 930817), (823464, 1634440), (823464, 3366146), (823464, 1202032), (823464, 4589985), (823464, 4636543), (823464, 4636546), (823464, 4193195), (823464, 4364226), (823464, 4719445), (823464, 4719447), (829402, 1646774), (829402, 16183), (829402, 3134), (829402, 91387), (829402, 4366710), (829402, 1116852), (829402, 1235818), (829402, 60851), (829402, 4775147), (829402, 1509454), (829402, 4775148), (829402, 1653905), (829402, 4416178), (829402, 150869), (829402, 86436), (829402, 1098756), (829402, 4775149), (829402, 1475833), (829402, 221611), (829402, 1775865), (829402, 109423), (829402, 80122), (829402, 4775151), (829402, 4775526), (929590, 205), (929590, 52583), (929590, 1683343), (929590, 196179), (929590, 109019), (929590, 17039), (929590, 1385813), (929590, 2001956), (929590, 1431398), (929590, 2145383), (929590, 3641129), (929590, 1944266), (929590, 1508173), (929590, 1457238), (929590, 1790012), (929590, 2756171), (929590, 1528809), (929590, 1427688), (929590, 1371546), (929590, 1502319), (929590, 1515510), (929590, 1327613), (929590, 2088446), (929590, 2135069), (929590, 3072032), (929590, 3608238), (929590, 1825888), (929590, 3641130), (929590, 1689329), (929590, 88124), (929590, 1689339), (929590, 3704161), (929590, 1874958), (929590, 1734935), (929590, 3511290), (929590, 4745961), (929590, 3305956), (929590, 3774031), (929590, 4745962), (929590, 4745963), (929590, 2643001), (929590, 4745964), (929590, 4745965), (929590, 1745104), (929590, 4173535), (929590, 570968), (929590, 3520488), (929590, 2559822), (955555, 1024395), (955555, 1254630), (955555, 111640), (955555, 86330), (955555, 573792), (955555, 2159482), (955555, 2291087), (955555, 1574622), (955555, 1199744), (955555, 2541), (955555, 1078674), (955555, 2098630), (955555, 3275193), (955555, 3821441), (955555, 2936138), (955555, 2692444), (955555, 2148104), (955555, 2709774), (955555, 3594766), (955555, 4030968), (955555, 1988030), (955555, 1420819), (955555, 2125943), (955555, 3682068), (955555, 4048524), (955555, 2985385), (955555, 4047107), (955555, 1196600), (955555, 3981140), (955555, 3035155), (955555, 4010802), (955555, 4118011), (955555, 4118013), (955555, 2895359), (955555, 1501120), (955555, 4064869), (955555, 4541002), (955555, 3957230), (1001311, 82923), (1001311, 1003260), (1001311, 1717801), (1001311, 2173699), (1001311, 1414117), (1001311, 3452589), (1001311, 54168), (1001311, 2403317), (1001311, 1355622), (1001311, 4287), (1001311, 2166824), (1001311, 1123785), (1001311, 35970), (1001311, 1366194), (1001311, 1450075), (1001311, 1370577), (1001311, 3236054), (1001311, 1764370), (1001311, 2458747), (1001311, 1363809), (1001311, 1338488), (1001311, 2518487), (1001311, 1020716), (1001311, 82317), (1001311, 4758322), (1001311, 1470534), (1001311, 4758324), (1001311, 82314), (1001311, 4758330), (1001311, 3686562), (1001311, 1963462), (1001311, 4758335), (1001311, 1633278), (1001311, 4645192), (1011985, 70851), (1011985, 1625558), (1011985, 19492), (1011985, 4483), (1011985, 17419), (1011985, 20904), (1011985, 6972), (1011985, 690), (1011985, 1319469), (1011985, 171743), (1011985, 19274), (1011985, 2282154), (1011985, 202446), (1011985, 154657), (1011985, 63235), (1011985, 109423), (1011985, 4566278), (1011985, 4582130), (1011985, 4379987), (1011985, 1453786), (1011985, 1295761), (1011985, 2357412), (1011985, 2373501), (1011985, 971877), (1011985, 2639174), (1011985, 16183), (1011985, 157865), (1011985, 18864), (1011985, 31549), (1011985, 64151), (1011985, 102693), (1011985, 3097574), (1011985, 174563), (1011985, 1502451), (1011985, 217777), (1011985, 12097), (1011985, 232499), (1022789, 56322), (1022789, 1903874), (1022789, 3020876), (1022789, 51998), (1022789, 169200), (1022789, 59258), (1022789, 25147), (1022789, 2195140), (1022789, 586757), (1022789, 1469135), (1022789, 3264370), (1022789, 4578518), (1022789, 2882), (1022789, 6677), (1022789, 1294982), (1022789, 111513), (1022789, 1260038), (1022789, 1756597), (1022789, 3602293), (1022789, 137262), (1022789, 64181), (1022789, 145446), (1022789, 7908), (1022789, 1226294), (1022789, 35515), (1022789, 12890), (1022789, 196502), (1022789, 7907), (1022789, 1224130), (1022789, 1237), (1022789, 452205), (1022789, 4578519), (1086747, 501), (1086747, 1335315), (1086747, 933272), (1086747, 2710312), (1086747, 19997), (1086747, 231666), (1086747, 4329965), (1086747, 4207481), (1086747, 3863344), (1086747, 4329963), (1086747, 3291912), (1086747, 4329966), (1086747, 3761948), (1086747, 4329967), (1086747, 1836699), (1086747, 1239710), (1086747, 140007), (1086747, 4551440), (1086747, 587778), (1086747, 3791324), (1086747, 4753648), (1086747, 4753649), (1086747, 28743), (1115623, 40716), (1115623, 74375), (1115623, 37250), (1115623, 73659), (1115623, 128191), (1115623, 222508), (1115623, 947361), (1115623, 4019755), (1115623, 64564), (1115623, 4093599), (1115623, 4019759), (1115623, 4044399), (1115623, 1452807), (1115623, 4008428), (1115623, 4047968), (1115623, 4056270), (1115623, 4149146), (1115623, 4103947), (1115623, 4056272), (1115623, 4086224), (1115623, 4086229), (1115623, 4086231), (1115623, 2553628), (1115623, 4086235), (1115623, 4086236), (1115623, 4103950), (1115623, 3539260), (1115623, 4142058), (1115623, 4142055), (1115623, 4142056), (1115623, 1697940), (1115623, 2440257), (1115623, 1343136), (1115623, 4736038);
INSERT INTO movies_genres (id_movie, id_genre) VALUES
(1022789,16), (1022789,10751), (1022789,18), (1022789,12), (1022789,35), (653346,878), (653346,12), (653346,28), (150540,16), (150540,10751), (150540,12), (150540,18), (150540,35), (573435,28), (573435,80), (573435,53), (573435,35), (1001311,53), (1001311,27), (1001311,28), (1001311,9648), (639720,35), (639720,14), (639720,10751), (823464,878), (823464,28), (823464,12), (929590,10752), (929590,28), (929590,18), (955555,28), (955555,80), (955555,35), (955555,53), (1115623,28), (1086747,27), (1086747,9648), (1086747,14), (626412,28), (626412,14), (626412,12), (829402,16), (829402,878), (829402,10751), (829402,28), (614933,878), (614933,28), (1011985,16), (1011985,28), (1011985,10751), (1011985,35), (1011985,14), (746036,28), (746036,35), (719221,27), (519182,16), (519182,10751), (519182,35), (519182,28), (693134,878), (693134,12), (786892,28), (786892,12), (786892,878);
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */
;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */
;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */
;