diff --git a/Examples/Topics/matching/similarity_by_actors_Jaccard.sql b/Examples/Topics/matching/similarity_by_actors_Jaccard.sql new file mode 100644 index 00000000..a6472f38 --- /dev/null +++ b/Examples/Topics/matching/similarity_by_actors_Jaccard.sql @@ -0,0 +1,58 @@ +drop table if exists actors_per_movie; + +create table actors_per_movie +as +select +movie_id +, count(distinct actor_id) as actors_num +from +roles +group by +movie_id; + + +ALTER TABLE actors_per_movie ADD PRIMARY KEY (movie_id); + + + +drop table if exists similarity_by_actors; + +create table +similarity_by_actors +as +select +frole.movie_id as fid +, srole.movie_id as sid +, count(distinct frole.actor_id) as common_actors_num +, group_concat(distinct frole.actor_id order by frole.actor_id) as actors +, max(fam.actors_num) as first_movie_actors_num +, max(sam.actors_num) as second_movie_actors_num +, count(distinct frole.actor_id)/(max(fam.actors_num) + max(sam.actors_num) - count(distinct frole.actor_id)) as Jaccard +from +actors_per_movie as fam +join +roles as frole +on +fam.movie_id = frole.movie_id +join +roles as srole +on +frole.actor_id = srole.actor_id +join +actors_per_movie as sam +on +srole.movie_id = sam.movie_id +where +frole.movie_id != srole.movie_id +and +frole.movie_id < 1000 # NOTE - reduce scope just for a reasonable performance in demonstration. Remove! +and +srole.movie_id < 1000 +group by +fid +, sid +having +count(distinct frole.actor_id) >= 3 +and +Jaccard > 0.25 +; \ No newline at end of file diff --git a/Examples/Topics/windows functions/sales.sql b/Examples/Topics/windows functions/sales.sql new file mode 100644 index 00000000..7958f900 --- /dev/null +++ b/Examples/Topics/windows functions/sales.sql @@ -0,0 +1,612 @@ +drop table if exists sales; + +-- 1. Create the table +CREATE TABLE sales ( + product VARCHAR(100), + category VARCHAR(100), + year INT, + month INT, + volume INT, + price DECIMAL(10,2), + PRIMARY KEY (product, year, month) +); + +INSERT INTO sales VALUES +('Laptop A','Electronics',2022,1,110,980), +('Laptop A','Electronics',2022,2,115,980), +('Laptop A','Electronics',2022,3,120,975), +('Laptop A','Electronics',2022,4,125,975), +('Laptop A','Electronics',2022,5,130,970), +('Laptop A','Electronics',2022,6,135,970), +('Laptop A','Electronics',2022,7,140,965), +('Laptop A','Electronics',2022,8,145,965), +('Laptop A','Electronics',2022,9,150,960), +('Laptop A','Electronics',2022,10,155,960), +('Laptop A','Electronics',2022,11,160,955), +('Laptop A','Electronics',2022,12,165,955), + +('Laptop A','Electronics',2023,1,120,960), +('Laptop A','Electronics',2023,2,125,960), +('Laptop A','Electronics',2023,3,130,955), +('Laptop A','Electronics',2023,4,135,955), +('Laptop A','Electronics',2023,5,140,950), +('Laptop A','Electronics',2023,6,145,950), +('Laptop A','Electronics',2023,7,150,945), +('Laptop A','Electronics',2023,8,155,945), +('Laptop A','Electronics',2023,9,160,940), +('Laptop A','Electronics',2023,10,165,940), +('Laptop A','Electronics',2023,11,170,935), +('Laptop A','Electronics',2023,12,175,935), + +('Laptop A','Electronics',2024,1,130,950), +('Laptop A','Electronics',2024,2,135,950), +('Laptop A','Electronics',2024,3,140,945), +('Laptop A','Electronics',2024,4,145,945), +('Laptop A','Electronics',2024,5,150,940), +('Laptop A','Electronics',2024,6,155,940), +('Laptop A','Electronics',2024,7,160,935), +('Laptop A','Electronics',2024,8,165,935), +('Laptop A','Electronics',2024,9,170,930), +('Laptop A','Electronics',2024,10,175,930), +('Laptop A','Electronics',2024,11,180,925), +('Laptop A','Electronics',2024,12,185,925); + +INSERT INTO sales VALUES +('Laptop B','Electronics',2022,1,70,780), +('Laptop B','Electronics',2022,2,75,780), +('Laptop B','Electronics',2022,3,80,775), +('Laptop B','Electronics',2022,4,85,775), +('Laptop B','Electronics',2022,5,90,770), +('Laptop B','Electronics',2022,6,95,770), +('Laptop B','Electronics',2022,7,100,765), +('Laptop B','Electronics',2022,8,105,765), +('Laptop B','Electronics',2022,9,110,760), +('Laptop B','Electronics',2022,10,115,760), +('Laptop B','Electronics',2022,11,120,755), +('Laptop B','Electronics',2022,12,125,755), + +('Laptop B','Electronics',2023,1,75,760), +('Laptop B','Electronics',2023,2,80,760), +('Laptop B','Electronics',2023,3,85,755), +('Laptop B','Electronics',2023,4,90,755), +('Laptop B','Electronics',2023,5,95,750), +('Laptop B','Electronics',2023,6,100,750), +('Laptop B','Electronics',2023,7,105,745), +('Laptop B','Electronics',2023,8,110,745), +('Laptop B','Electronics',2023,9,115,740), +('Laptop B','Electronics',2023,10,120,740), +('Laptop B','Electronics',2023,11,125,735), +('Laptop B','Electronics',2023,12,130,735), + +('Laptop B','Electronics',2024,1,80,750), +('Laptop B','Electronics',2024,2,85,750), +('Laptop B','Electronics',2024,3,90,745), +('Laptop B','Electronics',2024,4,95,745), +('Laptop B','Electronics',2024,5,100,740), +('Laptop B','Electronics',2024,6,105,740), +('Laptop B','Electronics',2024,7,110,735), +('Laptop B','Electronics',2024,8,115,735), +('Laptop B','Electronics',2024,9,120,730), +('Laptop B','Electronics',2024,10,125,730), +('Laptop B','Electronics',2024,11,130,725), +('Laptop B','Electronics',2024,12,135,725); + +INSERT INTO sales VALUES +('Laptop C','Electronics',2022,1,60,650), +('Laptop C','Electronics',2022,2,65,650), +('Laptop C','Electronics',2022,3,70,645), +('Laptop C','Electronics',2022,4,75,645), +('Laptop C','Electronics',2022,5,80,640), +('Laptop C','Electronics',2022,6,85,640), +('Laptop C','Electronics',2022,7,90,635), +('Laptop C','Electronics',2022,8,95,635), +('Laptop C','Electronics',2022,9,100,630), +('Laptop C','Electronics',2022,10,105,630), +('Laptop C','Electronics',2022,11,110,625), +('Laptop C','Electronics',2022,12,115,625), + +('Laptop C','Electronics',2023,1,65,640), +('Laptop C','Electronics',2023,2,70,640), +('Laptop C','Electronics',2023,3,75,635), +('Laptop C','Electronics',2023,4,80,635), +('Laptop C','Electronics',2023,5,85,630), +('Laptop C','Electronics',2023,6,90,630), +('Laptop C','Electronics',2023,7,95,625), +('Laptop C','Electronics',2023,8,100,625), +('Laptop C','Electronics',2023,9,105,620), +('Laptop C','Electronics',2023,10,110,620), +('Laptop C','Electronics',2023,11,115,615), +('Laptop C','Electronics',2023,12,120,615), + +('Laptop C','Electronics',2024,1,70,630), +('Laptop C','Electronics',2024,2,75,630), +('Laptop C','Electronics',2024,3,80,625), +('Laptop C','Electronics',2024,4,85,625), +('Laptop C','Electronics',2024,5,90,620), +('Laptop C','Electronics',2024,6,95,620), +('Laptop C','Electronics',2024,7,100,615), +('Laptop C','Electronics',2024,8,105,615), +('Laptop C','Electronics',2024,9,110,610), +('Laptop C','Electronics',2024,10,115,610), +('Laptop C','Electronics',2024,11,120,605), +('Laptop C','Electronics',2024,12,125,605); + +INSERT INTO sales VALUES +('Headphones X','Accessories',2022,1,300,120), +('Headphones X','Accessories',2022,2,310,120), +('Headphones X','Accessories',2022,3,320,118), +('Headphones X','Accessories',2022,4,330,118), +('Headphones X','Accessories',2022,5,340,117), +('Headphones X','Accessories',2022,6,350,117), +('Headphones X','Accessories',2022,7,360,116), +('Headphones X','Accessories',2022,8,370,116), +('Headphones X','Accessories',2022,9,380,115), +('Headphones X','Accessories',2022,10,390,115), +('Headphones X','Accessories',2022,11,400,114), +('Headphones X','Accessories',2022,12,410,114), + +('Headphones X','Accessories',2023,1,320,118), +('Headphones X','Accessories',2023,2,330,118), +('Headphones X','Accessories',2023,3,340,116), +('Headphones X','Accessories',2023,4,350,116), +('Headphones X','Accessories',2023,5,360,115), +('Headphones X','Accessories',2023,6,370,115), +('Headphones X','Accessories',2023,7,380,114), +('Headphones X','Accessories',2023,8,390,114), +('Headphones X','Accessories',2023,9,400,113), +('Headphones X','Accessories',2023,10,410,113), +('Headphones X','Accessories',2023,11,420,112), +('Headphones X','Accessories',2023,12,430,112), + +('Headphones X','Accessories',2024,1,340,116), +('Headphones X','Accessories',2024,2,350,116), +('Headphones X','Accessories',2024,3,360,115), +('Headphones X','Accessories',2024,4,370,115), +('Headphones X','Accessories',2024,5,380,114), +('Headphones X','Accessories',2024,6,390,114), +('Headphones X','Accessories',2024,7,400,113), +('Headphones X','Accessories',2024,8,410,113), +('Headphones X','Accessories',2024,9,420,112), +('Headphones X','Accessories',2024,10,430,112), +('Headphones X','Accessories',2024,11,440,111), +('Headphones X','Accessories',2024,12,450,111); + +INSERT INTO sales VALUES +('Headphones Y','Accessories',2022,1,250,90), +('Headphones Y','Accessories',2022,2,255,90), +('Headphones Y','Accessories',2022,3,260,89), +('Headphones Y','Accessories',2022,4,265,89), +('Headphones Y','Accessories',2022,5,270,88), +('Headphones Y','Accessories',2022,6,275,88), +('Headphones Y','Accessories',2022,7,280,87), +('Headphones Y','Accessories',2022,8,285,87), +('Headphones Y','Accessories',2022,9,290,86), +('Headphones Y','Accessories',2022,10,295,86), +('Headphones Y','Accessories',2022,11,300,85), +('Headphones Y','Accessories',2022,12,305,85), + +('Headphones Y','Accessories',2023,1,260,88), +('Headphones Y','Accessories',2023,2,265,88), +('Headphones Y','Accessories',2023,3,270,87), +('Headphones Y','Accessories',2023,4,275,87), +('Headphones Y','Accessories',2023,5,280,86), +('Headphones Y','Accessories',2023,6,285,86), +('Headphones Y','Accessories',2023,7,290,85), +('Headphones Y','Accessories',2023,8,295,85), +('Headphones Y','Accessories',2023,9,300,84), +('Headphones Y','Accessories',2023,10,305,84), +('Headphones Y','Accessories',2023,11,310,83), +('Headphones Y','Accessories',2023,12,315,83), + +('Headphones Y','Accessories',2024,1,270,87), +('Headphones Y','Accessories',2024,2,275,87), +('Headphones Y','Accessories',2024,3,280,86), +('Headphones Y','Accessories',2024,4,285,86), +('Headphones Y','Accessories',2024,5,290,85), +('Headphones Y','Accessories',2024,6,295,85), +('Headphones Y','Accessories',2024,7,300,84), +('Headphones Y','Accessories',2024,8,305,84), +('Headphones Y','Accessories',2024,9,310,83), +('Headphones Y','Accessories',2024,10,315,83), +('Headphones Y','Accessories',2024,11,320,82), +('Headphones Y','Accessories',2024,12,325,82); + +INSERT INTO sales VALUES +('Headphones Z','Accessories',2022,1,200,70), +('Headphones Z','Accessories',2022,2,205,70), +('Headphones Z','Accessories',2022,3,210,69), +('Headphones Z','Accessories',2022,4,215,69), +('Headphones Z','Accessories',2022,5,220,68), +('Headphones Z','Accessories',2022,6,225,68), +('Headphones Z','Accessories',2022,7,230,67), +('Headphones Z','Accessories',2022,8,235,67), +('Headphones Z','Accessories',2022,9,240,66), +('Headphones Z','Accessories',2022,10,245,66), +('Headphones Z','Accessories',2022,11,250,65), +('Headphones Z','Accessories',2022,12,255,65), + +('Headphones Z','Accessories',2023,1,210,69), +('Headphones Z','Accessories',2023,2,215,69), +('Headphones Z','Accessories',2023,3,220,68), +('Headphones Z','Accessories',2023,4,225,68), +('Headphones Z','Accessories',2023,5,230,67), +('Headphones Z','Accessories',2023,6,235,67), +('Headphones Z','Accessories',2023,7,240,66), +('Headphones Z','Accessories',2023,8,245,66), +('Headphones Z','Accessories',2023,9,250,65), +('Headphones Z','Accessories',2023,10,255,65), +('Headphones Z','Accessories',2023,11,260,64), +('Headphones Z','Accessories',2023,12,265,64), + +('Headphones Z','Accessories',2024,1,220,68), +('Headphones Z','Accessories',2024,2,225,68), +('Headphones Z','Accessories',2024,3,230,67), +('Headphones Z','Accessories',2024,4,235,67), +('Headphones Z','Accessories',2024,5,240,66), +('Headphones Z','Accessories',2024,6,245,66), +('Headphones Z','Accessories',2024,7,250,65), +('Headphones Z','Accessories',2024,8,255,65), +('Headphones Z','Accessories',2024,9,260,64), +('Headphones Z','Accessories',2024,10,265,64), +('Headphones Z','Accessories',2024,11,270,63), +('Headphones Z','Accessories',2024,12,275,63); + +INSERT INTO sales VALUES +('Coffee Maker 1','Home Appliances',2022,1,180,150), +('Coffee Maker 1','Home Appliances',2022,2,185,150), +('Coffee Maker 1','Home Appliances',2022,3,190,148), +('Coffee Maker 1','Home Appliances',2022,4,195,148), +('Coffee Maker 1','Home Appliances',2022,5,200,147), +('Coffee Maker 1','Home Appliances',2022,6,205,147), +('Coffee Maker 1','Home Appliances',2022,7,210,146), +('Coffee Maker 1','Home Appliances',2022,8,215,146), +('Coffee Maker 1','Home Appliances',2022,9,220,145), +('Coffee Maker 1','Home Appliances',2022,10,225,145), +('Coffee Maker 1','Home Appliances',2022,11,230,144), +('Coffee Maker 1','Home Appliances',2022,12,235,144), + +('Coffee Maker 1','Home Appliances',2023,1,190,148), +('Coffee Maker 1','Home Appliances',2023,2,195,148), +('Coffee Maker 1','Home Appliances',2023,3,200,147), +('Coffee Maker 1','Home Appliances',2023,4,205,147), +('Coffee Maker 1','Home Appliances',2023,5,210,146), +('Coffee Maker 1','Home Appliances',2023,6,215,146), +('Coffee Maker 1','Home Appliances',2023,7,220,145), +('Coffee Maker 1','Home Appliances',2023,8,225,145), +('Coffee Maker 1','Home Appliances',2023,9,230,144), +('Coffee Maker 1','Home Appliances',2023,10,235,144), +('Coffee Maker 1','Home Appliances',2023,11,240,143), +('Coffee Maker 1','Home Appliances',2023,12,245,143), + +('Coffee Maker 1','Home Appliances',2024,1,200,147), +('Coffee Maker 1','Home Appliances',2024,2,205,147), +('Coffee Maker 1','Home Appliances',2024,3,210,146), +('Coffee Maker 1','Home Appliances',2024,4,215,146), +('Coffee Maker 1','Home Appliances',2024,5,220,145), +('Coffee Maker 1','Home Appliances',2024,6,225,145), +('Coffee Maker 1','Home Appliances',2024,7,230,144), +('Coffee Maker 1','Home Appliances',2024,8,235,144), +('Coffee Maker 1','Home Appliances',2024,9,240,143), +('Coffee Maker 1','Home Appliances',2024,10,245,143), +('Coffee Maker 1','Home Appliances',2024,11,250,142), +('Coffee Maker 1','Home Appliances',2024,12,255,142); + +INSERT INTO sales VALUES +('Coffee Maker 2','Home Appliances',2022,1,160,130), +('Coffee Maker 2','Home Appliances',2022,2,165,130), +('Coffee Maker 2','Home Appliances',2022,3,170,128), +('Coffee Maker 2','Home Appliances',2022,4,175,128), +('Coffee Maker 2','Home Appliances',2022,5,180,127), +('Coffee Maker 2','Home Appliances',2022,6,185,127), +('Coffee Maker 2','Home Appliances',2022,7,190,126), +('Coffee Maker 2','Home Appliances',2022,8,195,126), +('Coffee Maker 2','Home Appliances',2022,9,200,125), +('Coffee Maker 2','Home Appliances',2022,10,205,125), +('Coffee Maker 2','Home Appliances',2022,11,210,124), +('Coffee Maker 2','Home Appliances',2022,12,215,124), + +('Coffee Maker 2','Home Appliances',2023,1,170,128), +('Coffee Maker 2','Home Appliances',2023,2,175,128), +('Coffee Maker 2','Home Appliances',2023,3,180,127), +('Coffee Maker 2','Home Appliances',2023,4,185,127), +('Coffee Maker 2','Home Appliances',2023,5,190,126), +('Coffee Maker 2','Home Appliances',2023,6,195,126), +('Coffee Maker 2','Home Appliances',2023,7,200,125), +('Coffee Maker 2','Home Appliances',2023,8,205,125), +('Coffee Maker 2','Home Appliances',2023,9,210,124), +('Coffee Maker 2','Home Appliances',2023,10,215,124), +('Coffee Maker 2','Home Appliances',2023,11,220,123), +('Coffee Maker 2','Home Appliances',2023,12,225,123), + +('Coffee Maker 2','Home Appliances',2024,1,180,127), +('Coffee Maker 2','Home Appliances',2024,2,185,127), +('Coffee Maker 2','Home Appliances',2024,3,190,126), +('Coffee Maker 2','Home Appliances',2024,4,195,126), +('Coffee Maker 2','Home Appliances',2024,5,200,125), +('Coffee Maker 2','Home Appliances',2024,6,205,125), +('Coffee Maker 2','Home Appliances',2024,7,210,124), +('Coffee Maker 2','Home Appliances',2024,8,215,124), +('Coffee Maker 2','Home Appliances',2024,9,220,123), +('Coffee Maker 2','Home Appliances',2024,10,225,123), +('Coffee Maker 2','Home Appliances',2024,11,230,122), +('Coffee Maker 2','Home Appliances',2024,12,235,122); + +INSERT INTO sales VALUES +('Blender Z','Home Appliances',2022,1,140,110), +('Blender Z','Home Appliances',2022,2,145,110), +('Blender Z','Home Appliances',2022,3,150,108), +('Blender Z','Home Appliances',2022,4,155,108), +('Blender Z','Home Appliances',2022,5,160,107), +('Blender Z','Home Appliances',2022,6,165,107), +('Blender Z','Home Appliances',2022,7,170,106), +('Blender Z','Home Appliances',2022,8,175,106), +('Blender Z','Home Appliances',2022,9,180,105), +('Blender Z','Home Appliances',2022,10,185,105), +('Blender Z','Home Appliances',2022,11,190,104), +('Blender Z','Home Appliances',2022,12,195,104), + +('Blender Z','Home Appliances',2023,1,150,108), +('Blender Z','Home Appliances',2023,2,155,108), +('Blender Z','Home Appliances',2023,3,160,107), +('Blender Z','Home Appliances',2023,4,165,107), +('Blender Z','Home Appliances',2023,5,170,106), +('Blender Z','Home Appliances',2023,6,175,106), +('Blender Z','Home Appliances',2023,7,180,105), +('Blender Z','Home Appliances',2023,8,185,105), +('Blender Z','Home Appliances',2023,9,190,104), +('Blender Z','Home Appliances',2023,10,195,104), +('Blender Z','Home Appliances',2023,11,200,103), +('Blender Z','Home Appliances',2023,12,205,103), + +('Blender Z','Home Appliances',2024,1,160,107), +('Blender Z','Home Appliances',2024,2,165,107), +('Blender Z','Home Appliances',2024,3,170,106), +('Blender Z','Home Appliances',2024,4,175,106), +('Blender Z','Home Appliances',2024,5,180,105), +('Blender Z','Home Appliances',2024,6,185,105), +('Blender Z','Home Appliances',2024,7,190,104), +('Blender Z','Home Appliances',2024,8,195,104), +('Blender Z','Home Appliances',2024,9,200,103), +('Blender Z','Home Appliances',2024,10,205,103), +('Blender Z','Home Appliances',2024,11,210,102), +('Blender Z','Home Appliances',2024,12,215,102); + +INSERT INTO sales VALUES +('Chair A','Furniture',2022,1,90,200), +('Chair A','Furniture',2022,2,92,200), +('Chair A','Furniture',2022,3,94,198), +('Chair A','Furniture',2022,4,96,198), +('Chair A','Furniture',2022,5,98,197), +('Chair A','Furniture',2022,6,100,197), +('Chair A','Furniture',2022,7,102,196), +('Chair A','Furniture',2022,8,104,196), +('Chair A','Furniture',2022,9,106,195), +('Chair A','Furniture',2022,10,108,195), +('Chair A','Furniture',2022,11,110,194), +('Chair A','Furniture',2022,12,112,194), + +('Chair A','Furniture',2023,1,94,198), +('Chair A','Furniture',2023,2,96,198), +('Chair A','Furniture',2023,3,98,197), +('Chair A','Furniture',2023,4,100,197), +('Chair A','Furniture',2023,5,102,196), +('Chair A','Furniture',2023,6,104,196), +('Chair A','Furniture',2023,7,106,195), +('Chair A','Furniture',2023,8,108,195), +('Chair A','Furniture',2023,9,110,194), +('Chair A','Furniture',2023,10,112,194), +('Chair A','Furniture',2023,11,114,193), +('Chair A','Furniture',2023,12,116,193), + +('Chair A','Furniture',2024,1,98,197), +('Chair A','Furniture',2024,2,100,197), +('Chair A','Furniture',2024,3,102,196), +('Chair A','Furniture',2024,4,104,196), +('Chair A','Furniture',2024,5,106,195), +('Chair A','Furniture',2024,6,108,195), +('Chair A','Furniture',2024,7,110,194), +('Chair A','Furniture',2024,8,112,194), +('Chair A','Furniture',2024,9,114,193), +('Chair A','Furniture',2024,10,116,193), +('Chair A','Furniture',2024,11,118,192), +('Chair A','Furniture',2024,12,120,192); + +INSERT INTO sales VALUES +('Chair B','Furniture',2022,1,70,160), +('Chair B','Furniture',2022,2,72,160), +('Chair B','Furniture',2022,3,74,158), +('Chair B','Furniture',2022,4,76,158), +('Chair B','Furniture',2022,5,78,157), +('Chair B','Furniture',2022,6,80,157), +('Chair B','Furniture',2022,7,82,156), +('Chair B','Furniture',2022,8,84,156), +('Chair B','Furniture',2022,9,86,155), +('Chair B','Furniture',2022,10,88,155), +('Chair B','Furniture',2022,11,90,154), +('Chair B','Furniture',2022,12,92,154), + +('Chair B','Furniture',2023,1,74,158), +('Chair B','Furniture',2023,2,76,158), +('Chair B','Furniture',2023,3,78,157), +('Chair B','Furniture',2023,4,80,157), +('Chair B','Furniture',2023,5,82,156), +('Chair B','Furniture',2023,6,84,156), +('Chair B','Furniture',2023,7,86,155), +('Chair B','Furniture',2023,8,88,155), +('Chair B','Furniture',2023,9,90,154), +('Chair B','Furniture',2023,10,92,154), +('Chair B','Furniture',2023,11,94,153), +('Chair B','Furniture',2023,12,96,153), + +('Chair B','Furniture',2024,1,78,157), +('Chair B','Furniture',2024,2,80,157), +('Chair B','Furniture',2024,3,82,156), +('Chair B','Furniture',2024,4,84,156), +('Chair B','Furniture',2024,5,86,155), +('Chair B','Furniture',2024,6,88,155), +('Chair B','Furniture',2024,7,90,154), +('Chair B','Furniture',2024,8,92,154), +('Chair B','Furniture',2024,9,94,153), +('Chair B','Furniture',2024,10,96,153), +('Chair B','Furniture',2024,11,98,152), +('Chair B','Furniture',2024,12,100,152); + +INSERT INTO sales VALUES +('Table X','Furniture',2022,1,50,300), +('Table X','Furniture',2022,2,52,300), +('Table X','Furniture',2022,3,54,298), +('Table X','Furniture',2022,4,56,298), +('Table X','Furniture',2022,5,58,297), +('Table X','Furniture',2022,6,60,297), +('Table X','Furniture',2022,7,62,296), +('Table X','Furniture',2022,8,64,296), +('Table X','Furniture',2022,9,66,295), +('Table X','Furniture',2022,10,68,295), +('Table X','Furniture',2022,11,70,294), +('Table X','Furniture',2022,12,72,294), + +('Table X','Furniture',2023,1,54,298), +('Table X','Furniture',2023,2,56,298), +('Table X','Furniture',2023,3,58,297), +('Table X','Furniture',2023,4,60,297), +('Table X','Furniture',2023,5,62,296), +('Table X','Furniture',2023,6,64,296), +('Table X','Furniture',2023,7,66,295), +('Table X','Furniture',2023,8,68,295), +('Table X','Furniture',2023,9,70,294), +('Table X','Furniture',2023,10,72,294), +('Table X','Furniture',2023,11,74,293), +('Table X','Furniture',2023,12,76,293), + +('Table X','Furniture',2024,1,58,297), +('Table X','Furniture',2024,2,60,297), +('Table X','Furniture',2024,3,62,296), +('Table X','Furniture',2024,4,64,296), +('Table X','Furniture',2024,5,66,295), +('Table X','Furniture',2024,6,68,295), +('Table X','Furniture',2024,7,70,294), +('Table X','Furniture',2024,8,72,294), +('Table X','Furniture',2024,9,74,293), +('Table X','Furniture',2024,10,76,293), +('Table X','Furniture',2024,11,78,292), +('Table X','Furniture',2024,12,80,292); + +INSERT INTO sales VALUES +('Treadmill A','Sports',2022,1,40,900), +('Treadmill A','Sports',2022,2,42,900), +('Treadmill A','Sports',2022,3,44,895), +('Treadmill A','Sports',2022,4,46,895), +('Treadmill A','Sports',2022,5,48,890), +('Treadmill A','Sports',2022,6,50,890), +('Treadmill A','Sports',2022,7,52,885), +('Treadmill A','Sports',2022,8,54,885), +('Treadmill A','Sports',2022,9,56,880), +('Treadmill A','Sports',2022,10,58,880), +('Treadmill A','Sports',2022,11,60,875), +('Treadmill A','Sports',2022,12,62,875), + +('Treadmill A','Sports',2023,1,44,895), +('Treadmill A','Sports',2023,2,46,895), +('Treadmill A','Sports',2023,3,48,890), +('Treadmill A','Sports',2023,4,50,890), +('Treadmill A','Sports',2023,5,52,885), +('Treadmill A','Sports',2023,6,54,885), +('Treadmill A','Sports',2023,7,56,880), +('Treadmill A','Sports',2023,8,58,880), +('Treadmill A','Sports',2023,9,60,875), +('Treadmill A','Sports',2023,10,62,875), +('Treadmill A','Sports',2023,11,64,870), +('Treadmill A','Sports',2023,12,66,870), + +('Treadmill A','Sports',2024,1,48,890), +('Treadmill A','Sports',2024,2,50,890), +('Treadmill A','Sports',2024,3,52,885), +('Treadmill A','Sports',2024,4,54,885), +('Treadmill A','Sports',2024,5,56,880), +('Treadmill A','Sports',2024,6,58,880), +('Treadmill A','Sports',2024,7,60,875), +('Treadmill A','Sports',2024,8,62,875), +('Treadmill A','Sports',2024,9,64,870), +('Treadmill A','Sports',2024,10,66,870), +('Treadmill A','Sports',2024,11,68,865), +('Treadmill A','Sports',2024,12,70,865); + +INSERT INTO sales VALUES +('Treadmill B','Sports',2022,1,30,750), +('Treadmill B','Sports',2022,2,32,750), +('Treadmill B','Sports',2022,3,34,745), +('Treadmill B','Sports',2022,4,36,745), +('Treadmill B','Sports',2022,5,38,740), +('Treadmill B','Sports',2022,6,40,740), +('Treadmill B','Sports',2022,7,42,735), +('Treadmill B','Sports',2022,8,44,735), +('Treadmill B','Sports',2022,9,46,730), +('Treadmill B','Sports',2022,10,48,730), +('Treadmill B','Sports',2022,11,50,725), +('Treadmill B','Sports',2022,12,52,725), + +('Treadmill B','Sports',2023,1,34,745), +('Treadmill B','Sports',2023,2,36,745), +('Treadmill B','Sports',2023,3,38,740), +('Treadmill B','Sports',2023,4,40,740), +('Treadmill B','Sports',2023,5,42,735), +('Treadmill B','Sports',2023,6,44,735), +('Treadmill B','Sports',2023,7,46,730), +('Treadmill B','Sports',2023,8,48,730), +('Treadmill B','Sports',2023,9,50,725), +('Treadmill B','Sports',2023,10,52,725), +('Treadmill B','Sports',2023,11,54,720), +('Treadmill B','Sports',2023,12,56,720), + +('Treadmill B','Sports',2024,1,38,740), +('Treadmill B','Sports',2024,2,40,740), +('Treadmill B','Sports',2024,3,42,735), +('Treadmill B','Sports',2024,4,44,735), +('Treadmill B','Sports',2024,5,46,730), +('Treadmill B','Sports',2024,6,48,730), +('Treadmill B','Sports',2024,7,50,725), +('Treadmill B','Sports',2024,8,52,725), +('Treadmill B','Sports',2024,9,54,720), +('Treadmill B','Sports',2024,10,56,720), +('Treadmill B','Sports',2024,11,58,715), +('Treadmill B','Sports',2024,12,60,715); + +INSERT INTO sales VALUES +('Dumbbells Set','Sports',2022,1,120,60), +('Dumbbells Set','Sports',2022,2,125,60), +('Dumbbells Set','Sports',2022,3,130,59), +('Dumbbells Set','Sports',2022,4,135,59), +('Dumbbells Set','Sports',2022,5,140,58), +('Dumbbells Set','Sports',2022,6,145,58), +('Dumbbells Set','Sports',2022,7,150,57), +('Dumbbells Set','Sports',2022,8,155,57), +('Dumbbells Set','Sports',2022,9,160,56), +('Dumbbells Set','Sports',2022,10,165,56), +('Dumbbells Set','Sports',2022,11,170,55), +('Dumbbells Set','Sports',2022,12,175,55), + +('Dumbbells Set','Sports',2023,1,130,59), +('Dumbbells Set','Sports',2023,2,135,59), +('Dumbbells Set','Sports',2023,3,140,58), +('Dumbbells Set','Sports',2023,4,145,58), +('Dumbbells Set','Sports',2023,5,150,57), +('Dumbbells Set','Sports',2023,6,155,57), +('Dumbbells Set','Sports',2023,7,160,56), +('Dumbbells Set','Sports',2023,8,165,56), +('Dumbbells Set','Sports',2023,9,170,55), +('Dumbbells Set','Sports',2023,10,175,55), +('Dumbbells Set','Sports',2023,11,180,54), +('Dumbbells Set','Sports',2023,12,185,54), + +('Dumbbells Set','Sports',2024,1,140,58), +('Dumbbells Set','Sports',2024,2,145,58), +('Dumbbells Set','Sports',2024,3,150,57), +('Dumbbells Set','Sports',2024,4,155,57), +('Dumbbells Set','Sports',2024,5,160,56), +('Dumbbells Set','Sports',2024,6,165,56), +('Dumbbells Set','Sports',2024,7,170,55), +('Dumbbells Set','Sports',2024,8,175,55), +('Dumbbells Set','Sports',2024,9,180,54), +('Dumbbells Set','Sports',2024,10,185,54), +('Dumbbells Set','Sports',2024,11,190,53), +('Dumbbells Set','Sports',2024,12,195,53); diff --git a/Examples/Topics/windows functions/windows_functions_on_sales.sql b/Examples/Topics/windows functions/windows_functions_on_sales.sql new file mode 100644 index 00000000..683a77be --- /dev/null +++ b/Examples/Topics/windows functions/windows_functions_on_sales.sql @@ -0,0 +1,149 @@ +# Lead and lag - looking before and after per product +SELECT + product, + year, + month, + volume, + LAG(volume, 1) OVER (PARTITION BY product ORDER BY year, month) AS prev_month_volume, + LEAD(volume, 1) OVER (PARTITION BY product ORDER BY year, month) AS next_month_volume +FROM sales +ORDER BY product, year, month; + + +# Reusing the window +SELECT + product, + year, + month, + volume, + LAG(volume) OVER w AS prev_month_volume, # the before/after order are in the window + LEAD(volume) OVER w AS next_month_volume # By calling the window w, we reuse it +FROM sales +WINDOW w AS (PARTITION BY product ORDER BY year, month) # Different product sales, order by time +ORDER BY product, year, month; + + +# Using last month to see if we improved +SELECT + product, + year, + month, + volume, + volume - LAG(volume) OVER w AS mom_change +FROM sales +WINDOW w AS (PARTITION BY product ORDER BY year, month) +ORDER BY product, year, month; + +# We do not have to look only one month a ago, we can look at a year ago +SELECT + product, + year, + month, + volume, + LAG(volume, 12) OVER w AS last_year_volume, + volume - LAG(volume, 12) OVER w AS yoy_change +FROM sales +WINDOW w AS (PARTITION BY product ORDER BY year, month) +ORDER BY product, year, month; + + +###################### +# Comulative and rolling metrics +###################### + +# How many items did we sell so far? +SELECT + product, + year, + month, + volume, + SUM(volume) OVER w AS cumulative_volume +FROM sales +WINDOW w AS ( + PARTITION BY product + ORDER BY year, month + ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW +) +ORDER BY product, year, month; + +SELECT product, year, month, volume, + avg(volume) OVER w AS rolling_3m_avg # Avg aggregation as the window function +FROM sales +WINDOW w AS ( # Name - the common name "w" + PARTITION BY product # Partition - only other rows of the same product + ORDER BY year, month # Order chronologically, defining before and after + ROWS BETWEEN 2 PRECEDING AND CURRENT ROW # Frame - 3 last months +) +ORDER BY product, year, month; # Order the anchor rows - First by product, later by the same timeline + + + +# Debug - looking into the window... +# MySql currently does not support group concat to get all the window items +# However, for a fixed size window we can get them one by one +SELECT product, year, month, volume, + avg(volume) OVER w AS rolling_3m_avg # Avg aggregation as the window function + , concat(product, '_', year, '_', month, '_', volume) as current_record + , count(*) over w as window_records + , NTH_VALUE(concat(product, '_', year, '_', month, '_', volume), 1) over w as w1 # Look at the first record in the window (the current one) + , NTH_VALUE(concat(product, '_', year, '_', month, '_', volume), 2) over w as w2 # The second + , NTH_VALUE(concat(product, '_', year, '_', month, '_', volume), 3) over w as w3 # The third + , NTH_VALUE(concat(product, '_', year, '_', month, '_', volume), 4) over w as w4 # No such item in window, always null +FROM sales +WINDOW w AS ( # Name - the common name "w" + PARTITION BY product # Partition - only other rows of the same product + ORDER BY year, month # Order chronologically, defining before and after + ROWS BETWEEN 2 PRECEDING AND CURRENT ROW # Frame - 3 last months +) +ORDER BY product, year, month; # Order the anchor rows - First by product, later by the same timeline + +# Ranking in category per month +SELECT + category, + product, + year, + month, + volume, + RANK() OVER w AS category_rank, + DENSE_RANK() OVER w AS category_dense_rank +FROM sales +WINDOW w AS ( + PARTITION BY category, year, month + ORDER BY volume DESC +) +ORDER BY category, year, month, volume DESC; + + +# Wow, windows and grouping! +# Sales blockbusters per year +SELECT + category, + year, + SUM(volume) AS yearly_volume, + RANK() OVER w AS yearly_rank, + DENSE_RANK() OVER w AS yearly_dense_rank +FROM sales +GROUP BY category, year +WINDOW w AS ( + PARTITION BY year + ORDER BY SUM(volume) DESC +) +ORDER BY year, yearly_volume DESC; + +# Product share in category +WITH product_totals AS ( + SELECT + product, + category, + SUM(volume) AS product_total_volume + FROM sales + GROUP BY product, category +) +SELECT + product, + category, + product_total_volume, + SUM(product_total_volume) OVER (PARTITION BY category) AS category_volume, + product_total_volume / SUM(product_total_volume) OVER (PARTITION BY category) AS product_vs_category_ratio +FROM product_totals +ORDER BY category, product; diff --git a/Examples/window_functions.sql b/Examples/window_functions.sql index 7a7b7ead..cda4cfd4 100644 --- a/Examples/window_functions.sql +++ b/Examples/window_functions.sql @@ -203,3 +203,43 @@ md.movie_id = m.id window w as (partition by director_id order by director_id, year) ) as inSql ; + +# 2026, assignment 4, question 4 +# Probability of a role in a movie and in a genere +WITH base AS ( + SELECT + r.role, + g.genre, + r.movie_id + FROM roles r + JOIN movies_genres g ON r.movie_id = g.movie_id +), +role_global AS ( + SELECT + role, + COUNT(*) AS movies_with_role, + COUNT(*) OVER () AS total_movies # Look outside our group + FROM base + GROUP BY role +), +role_genre AS ( + SELECT + role, + genre, + COUNT(*) AS movies_with_role_in_genre, + COUNT(*) OVER (PARTITION BY genre) AS total_movies_in_genre # group by two columns, look in a group by one column + FROM base + GROUP BY role, genre +) +SELECT + rg.role, + rg.genre, + rg.movies_with_role_in_genre, + rg.total_movies_in_genre, + rg.movies_with_role_in_genre / rg.total_movies_in_genre AS probability_in_genre, + rglob.movies_with_role, + rglob.total_movies, + rglob.movies_with_role / rglob.total_movies AS probability_in_all_movies +FROM role_genre rg +JOIN role_global rglob USING (role) +ORDER BY role, genre; diff --git a/Exams and assignments/Assignments/2026/Checking_guidelines/Aggregations and Grouping.pdf b/Exams and assignments/Assignments/2026/Checking_guidelines/Aggregations and Grouping.pdf new file mode 100644 index 00000000..93c7d2d1 Binary files /dev/null and b/Exams and assignments/Assignments/2026/Checking_guidelines/Aggregations and Grouping.pdf differ diff --git a/Exams and assignments/Assignments/2026/Checking guidlines - Personal ranking of movies.pdf b/Exams and assignments/Assignments/2026/Checking_guidelines/Checking guidlines - Personal ranking of movies.pdf similarity index 100% rename from Exams and assignments/Assignments/2026/Checking guidlines - Personal ranking of movies.pdf rename to Exams and assignments/Assignments/2026/Checking_guidelines/Checking guidlines - Personal ranking of movies.pdf diff --git a/Exams and assignments/Assignments/2026/Checking_guidelines/Model plan comments.pdf b/Exams and assignments/Assignments/2026/Checking_guidelines/Model plan comments.pdf new file mode 100644 index 00000000..a21ef181 Binary files /dev/null and b/Exams and assignments/Assignments/2026/Checking_guidelines/Model plan comments.pdf differ diff --git "a/Exams and assignments/Assignments/2026/DDL examples/Assignment 6 _ MEB\326\271_LEMON.pdf" "b/Exams and assignments/Assignments/2026/DDL examples/Assignment 6 _ MEB\326\271_LEMON.pdf" new file mode 100644 index 00000000..2b9b74d1 Binary files /dev/null and "b/Exams and assignments/Assignments/2026/DDL examples/Assignment 6 _ MEB\326\271_LEMON.pdf" differ diff --git a/Exams and assignments/Assignments/2026/DDL examples/Assignment_6_DDL_MEB1.pdf.pdf b/Exams and assignments/Assignments/2026/DDL examples/Assignment_6_DDL_MEB1.pdf.pdf new file mode 100644 index 00000000..f411077e Binary files /dev/null and b/Exams and assignments/Assignments/2026/DDL examples/Assignment_6_DDL_MEB1.pdf.pdf differ diff --git a/Exams and assignments/Assignments/2026/DDL examples/Car_Rental_Database_sql_6.pdf b/Exams and assignments/Assignments/2026/DDL examples/Car_Rental_Database_sql_6.pdf new file mode 100644 index 00000000..95e3192e Binary files /dev/null and b/Exams and assignments/Assignments/2026/DDL examples/Car_Rental_Database_sql_6.pdf differ diff --git a/Exams and assignments/Assignments/2026/DDL examples/Car_Rental_Database_sql_6_1.sql b/Exams and assignments/Assignments/2026/DDL examples/Car_Rental_Database_sql_6_1.sql new file mode 100644 index 00000000..1f17cfa6 --- /dev/null +++ b/Exams and assignments/Assignments/2026/DDL examples/Car_Rental_Database_sql_6_1.sql @@ -0,0 +1,57 @@ +-- Assignment 6: DDL — Car Rental Database +-- Student ID: 324943109 + +CREATE DATABASE IF NOT EXISTS car_rental; +USE car_rental; + +CREATE TABLE vehicles ( + license_num VARCHAR(20) NOT NULL, + vehicle_type VARCHAR(50), + company VARCHAR(50), + size ENUM('small','medium','large') NOT NULL, + daily_rate DECIMAL(8,2) NOT NULL, + PRIMARY KEY (license_num) +); + +CREATE TABLE customers ( + customer_id INT NOT NULL AUTO_INCREMENT, + first_name VARCHAR(50) NOT NULL, + last_name VARCHAR(50) NOT NULL, + city VARCHAR(50), + street VARCHAR(100), + phone VARCHAR(20), + email VARCHAR(100), + PRIMARY KEY (customer_id) +); + +CREATE TABLE transactions ( + transaction_id INT NOT NULL AUTO_INCREMENT, + customer_id INT NOT NULL, + vehicle_id VARCHAR(20) NOT NULL, + start_date DATE NOT NULL, + end_date DATE NOT NULL, + gross_total DECIMAL(10,2) NOT NULL, + PRIMARY KEY (transaction_id), + FOREIGN KEY (customer_id) REFERENCES customers(customer_id), + FOREIGN KEY (vehicle_id) REFERENCES vehicles(license_num) +); + +CREATE TABLE service_types ( + service_type_id INT NOT NULL AUTO_INCREMENT, + type_name VARCHAR(50) NOT NULL, + rate DECIMAL(8,2), + duration_days INT, + PRIMARY KEY (service_type_id) +); + +CREATE TABLE maintenance ( + service_id INT NOT NULL AUTO_INCREMENT, + vehicle_id VARCHAR(20) NOT NULL, + service_type_id INT NOT NULL, + start_date DATE NOT NULL, + end_date DATE, + status ENUM('completed','scheduled') NOT NULL, + PRIMARY KEY (service_id), + FOREIGN KEY (vehicle_id) REFERENCES vehicles(license_num), + FOREIGN KEY (service_type_id) REFERENCES service_types(service_type_id) +); diff --git a/Exams and assignments/Assignments/2026/DDL examples/CityPark_sql_6_DDL.pdf b/Exams and assignments/Assignments/2026/DDL examples/CityPark_sql_6_DDL.pdf new file mode 100644 index 00000000..31145a50 Binary files /dev/null and b/Exams and assignments/Assignments/2026/DDL examples/CityPark_sql_6_DDL.pdf differ diff --git a/Exams and assignments/Assignments/2026/DDL examples/CityPark_sql_6_DDL.sql b/Exams and assignments/Assignments/2026/DDL examples/CityPark_sql_6_DDL.sql new file mode 100644 index 00000000..9b4149c7 --- /dev/null +++ b/Exams and assignments/Assignments/2026/DDL examples/CityPark_sql_6_DDL.sql @@ -0,0 +1,100 @@ +DROP DATABASE IF EXISTS citypark_db; + +CREATE DATABASE IF NOT EXISTS citypark_db; +USE citypark_db; + +-- 1. Drivers Table +CREATE TABLE drivers ( + driver_id INT PRIMARY KEY AUTO_INCREMENT, + full_name VARCHAR(100) NOT NULL, + license_number VARCHAR(20) UNIQUE NOT NULL, + phone VARCHAR(20), + email VARCHAR(100) +); + +-- 2. Vehicles Table +CREATE TABLE vehicles ( + vehicle_id INT PRIMARY KEY AUTO_INCREMENT, + driver_id INT NOT NULL, + license_plate VARCHAR(15) UNIQUE NOT NULL, + make VARCHAR(50), + model VARCHAR(50), + color VARCHAR(20), + FOREIGN KEY (driver_id) REFERENCES drivers(driver_id) +); + +-- 3. Parking Zones Table +CREATE TABLE parking_zones ( + zone_id INT PRIMARY KEY AUTO_INCREMENT, + zone_name VARCHAR(100) NOT NULL, + address VARCHAR(200), + total_spots INT NOT NULL, + hourly_rate DECIMAL(10,2) NOT NULL, + zone_type VARCHAR(50) +); + +-- 4. Inspectors Table +CREATE TABLE inspectors ( + inspector_id INT PRIMARY KEY AUTO_INCREMENT, + assigned_zone_id INT, + full_name VARCHAR(100) NOT NULL, + badge_number VARCHAR(50) UNIQUE NOT NULL, + phone VARCHAR(20), + FOREIGN KEY (assigned_zone_id) REFERENCES parking_zones(zone_id) +); + +-- 5. Parking Sessions Table +CREATE TABLE parking_sessions ( + session_id INT PRIMARY KEY AUTO_INCREMENT, + vehicle_id INT NOT NULL, + zone_id INT NOT NULL, + entry_time DATETIME NOT NULL, + exit_time DATETIME, + total_fee DECIMAL(10,2), + payment_status VARCHAR(20) DEFAULT 'Pending', + FOREIGN KEY (vehicle_id) REFERENCES vehicles(vehicle_id), + FOREIGN KEY (zone_id) REFERENCES parking_zones(zone_id) +); + +-- 6. Permits Table +CREATE TABLE permits ( + permit_id INT PRIMARY KEY AUTO_INCREMENT, + vehicle_id INT NOT NULL, + zone_id INT NOT NULL, + permit_type VARCHAR(50) NOT NULL, + start_date DATE NOT NULL, + end_date DATE NOT NULL, + annual_fee DECIMAL(10,2) NOT NULL, + FOREIGN KEY (vehicle_id) REFERENCES vehicles(vehicle_id), + FOREIGN KEY (zone_id) REFERENCES parking_zones(zone_id) +); + +-- 7. Violations Table +CREATE TABLE violations ( + violation_id INT PRIMARY KEY AUTO_INCREMENT, + vehicle_id INT NOT NULL, + zone_id INT NOT NULL, + inspector_id INT NOT NULL, + violation_time DATETIME NOT NULL, + violation_type VARCHAR(100) NOT NULL, + fine_amount DECIMAL(10,2) NOT NULL, + fine_status VARCHAR(20) DEFAULT 'Unpaid', + FOREIGN KEY (vehicle_id) REFERENCES vehicles(vehicle_id), + FOREIGN KEY (zone_id) REFERENCES parking_zones(zone_id), + FOREIGN KEY (inspector_id) REFERENCES inspectors(inspector_id) +); + +-- 8. Payments Table +CREATE TABLE payments ( + payment_id INT PRIMARY KEY AUTO_INCREMENT, + session_id INT, + violation_id INT, + amount_paid DECIMAL(10,2) NOT NULL, + payment_date DATE NOT NULL, + payment_method VARCHAR(50), + CONSTRAINT chk_payment_ref CHECK ( + session_id IS NOT NULL OR violation_id IS NOT NULL + ), + FOREIGN KEY (session_id) REFERENCES parking_sessions(session_id), + FOREIGN KEY (violation_id) REFERENCES violations(violation_id) +); \ No newline at end of file diff --git a/Exams and assignments/Assignments/2026/DDL examples/DDL - Skyline Assets- sql_6..pdf b/Exams and assignments/Assignments/2026/DDL examples/DDL - Skyline Assets- sql_6..pdf new file mode 100644 index 00000000..072dffbe Binary files /dev/null and b/Exams and assignments/Assignments/2026/DDL examples/DDL - Skyline Assets- sql_6..pdf differ diff --git a/Exams and assignments/Assignments/2026/DDL examples/DDL - Skyline Assets- sql_6.docx b/Exams and assignments/Assignments/2026/DDL examples/DDL - Skyline Assets- sql_6.docx new file mode 100644 index 00000000..4176573c Binary files /dev/null and b/Exams and assignments/Assignments/2026/DDL examples/DDL - Skyline Assets- sql_6.docx differ diff --git a/Exams and assignments/Assignments/2026/DDL examples/DDL -eventpro - sql_6.docx b/Exams and assignments/Assignments/2026/DDL examples/DDL -eventpro - sql_6.docx new file mode 100644 index 00000000..024321f0 Binary files /dev/null and b/Exams and assignments/Assignments/2026/DDL examples/DDL -eventpro - sql_6.docx differ diff --git a/Exams and assignments/Assignments/2026/DDL examples/DDL -eventpro - sql_6.pdf b/Exams and assignments/Assignments/2026/DDL examples/DDL -eventpro - sql_6.pdf new file mode 100644 index 00000000..1b9e1bae Binary files /dev/null and b/Exams and assignments/Assignments/2026/DDL examples/DDL -eventpro - sql_6.pdf differ diff --git a/Exams and assignments/Assignments/2026/DDL examples/DDL- Oli_Safe_Care - sql_6.docx b/Exams and assignments/Assignments/2026/DDL examples/DDL- Oli_Safe_Care - sql_6.docx new file mode 100644 index 00000000..7e8bb0c8 Binary files /dev/null and b/Exams and assignments/Assignments/2026/DDL examples/DDL- Oli_Safe_Care - sql_6.docx differ diff --git a/Exams and assignments/Assignments/2026/DDL examples/DDL- Oli_Safe_Care - sql_6.pdf b/Exams and assignments/Assignments/2026/DDL examples/DDL- Oli_Safe_Care - sql_6.pdf new file mode 100644 index 00000000..3a56c57f Binary files /dev/null and b/Exams and assignments/Assignments/2026/DDL examples/DDL- Oli_Safe_Care - sql_6.pdf differ diff --git a/Exams and assignments/Assignments/2026/DDL examples/FastTrack_Tolls_sql_6_ddl.pdf b/Exams and assignments/Assignments/2026/DDL examples/FastTrack_Tolls_sql_6_ddl.pdf new file mode 100644 index 00000000..1f26a541 Binary files /dev/null and b/Exams and assignments/Assignments/2026/DDL examples/FastTrack_Tolls_sql_6_ddl.pdf differ diff --git a/Exams and assignments/Assignments/2026/DDL examples/FastTrack_Tolls_sql_6_ddl.sql b/Exams and assignments/Assignments/2026/DDL examples/FastTrack_Tolls_sql_6_ddl.sql new file mode 100644 index 00000000..8c4944d2 --- /dev/null +++ b/Exams and assignments/Assignments/2026/DDL examples/FastTrack_Tolls_sql_6_ddl.sql @@ -0,0 +1,112 @@ +-- ============================================================ +-- FastTrack Tolls – Toll Road Management System +-- Assignment 6 – DDL +-- ============================================================ +CREATE SCHEMA IF NOT EXISTS fasttrack_tolls; +USE fasttrack_tolls; + +-- 1. Customers +-- • email: UNIQUE business key for login and contact. +-- • customer_id: Surrogate PK prevents foreign key breakage if email/address changes. +CREATE TABLE Customers ( + customer_id INT NOT NULL AUTO_INCREMENT, + first_name VARCHAR(50) NOT NULL, + last_name VARCHAR(50) NOT NULL, + email VARCHAR(100) NOT NULL, + phone VARCHAR(20), + billing_address VARCHAR(200), + registration_date DATE NOT NULL, + CONSTRAINT pk_customers PRIMARY KEY (customer_id), + CONSTRAINT uq_customers_email UNIQUE (email) +); + +-- 2. Vehicles +-- • vehicle_type: ENUM enforces the 5 valid domain classifications. +-- • license_plate: UNIQUE to prevent legal duplicates. +-- • Separated from Customers to avoid data redundancy. +CREATE TABLE Vehicles ( + vehicle_id INT NOT NULL AUTO_INCREMENT, + license_plate VARCHAR(20) NOT NULL, + vehicle_type ENUM('motorcycle','private_car', + 'light_truck','heavy_truck','bus') NOT NULL, + make VARCHAR(50), + model VARCHAR(50), + color VARCHAR(30), + customer_id INT NOT NULL, + CONSTRAINT pk_vehicles PRIMARY KEY (vehicle_id), + CONSTRAINT uq_vehicles_lp UNIQUE (license_plate), + CONSTRAINT fk_vehicles_cust FOREIGN KEY (customer_id) + REFERENCES Customers (customer_id) +); + +-- 3. Intersections +-- • position: Constrained to 1–8 via CHECK and UNIQUE constraints. +-- • Distinct entity allows stable naming without updating thousands of Drives. +-- • No road_id FK needed as the system manages a single road. +CREATE TABLE Intersections ( + intersection_id INT NOT NULL AUTO_INCREMENT, + intersection_name VARCHAR(100) NOT NULL, + position INT NOT NULL, + CONSTRAINT pk_intersections PRIMARY KEY (intersection_id), + CONSTRAINT uq_intersect_pos UNIQUE (position), + CONSTRAINT chk_intersect_pos CHECK (position BETWEEN 1 AND 8) +); + +-- 4. Toll_Rates +-- • rate_per_section: Base price for one segment per vehicle_type. +-- • Versioning: valid_from/valid_to dates track historical rates (NULL valid_to = active). +-- • Per-section model chosen over 56 entry-exit pairs for easier auditing and maintenance. +CREATE TABLE Toll_Rates ( + rate_id INT NOT NULL AUTO_INCREMENT, + vehicle_type ENUM('motorcycle','private_car', + 'light_truck','heavy_truck','bus') NOT NULL, + rate_per_section DECIMAL(8,2) NOT NULL, + valid_from DATE NOT NULL, + valid_to DATE, -- NULL = currently active + CONSTRAINT pk_toll_rates PRIMARY KEY (rate_id) +); + +-- 5. Invoices +-- • References Customers (not Vehicles) to group all owned vehicles into one bill. +-- • total_amount: Stored snapshot of billed amount to freeze financial history, preventing drift. +CREATE TABLE Invoices ( + invoice_id INT NOT NULL AUTO_INCREMENT, + customer_id INT NOT NULL, + invoice_date DATE NOT NULL, + period_start DATE NOT NULL, + period_end DATE NOT NULL, + total_amount DECIMAL(10,2) NOT NULL, + payment_status ENUM('pending','paid','overdue','cancelled') + NOT NULL DEFAULT 'pending', + payment_date DATE, + CONSTRAINT pk_invoices PRIMARY KEY (invoice_id), + CONSTRAINT fk_invoice_cust FOREIGN KEY (customer_id) + REFERENCES Customers (customer_id) +); + +-- 6. Drives +-- • exit_intersection_id/exit_time: NULL while drive is in progress. +-- • num_sections: Denormalized (|exit - entry|) to optimize queries and handle exceptions. +-- • toll_amount: Snapshot of calculated fee at exit to freeze historical pricing. +-- • invoice_id: NULL until the monthly billing run processes the drive. +-- • References Vehicles (chargeable event), not Customers. +CREATE TABLE Drives ( + drive_id INT NOT NULL AUTO_INCREMENT, + vehicle_id INT NOT NULL, + entry_intersection_id INT NOT NULL, + exit_intersection_id INT, + entry_time DATETIME NOT NULL, + exit_time DATETIME, + num_sections TINYINT, + toll_amount DECIMAL(8,2), + invoice_id INT, + CONSTRAINT pk_drives PRIMARY KEY (drive_id), + CONSTRAINT fk_drive_vehicle FOREIGN KEY (vehicle_id) + REFERENCES Vehicles (vehicle_id), + CONSTRAINT fk_drive_entry FOREIGN KEY (entry_intersection_id) + REFERENCES Intersections (intersection_id), + CONSTRAINT fk_drive_exit FOREIGN KEY (exit_intersection_id) + REFERENCES Intersections (intersection_id), + CONSTRAINT fk_drive_invoice FOREIGN KEY (invoice_id) + REFERENCES Invoices (invoice_id) +); diff --git a/Exams and assignments/Assignments/2026/DDL examples/MEB_2.pdf.pdf b/Exams and assignments/Assignments/2026/DDL examples/MEB_2.pdf.pdf new file mode 100644 index 00000000..2aaeb3ad Binary files /dev/null and b/Exams and assignments/Assignments/2026/DDL examples/MEB_2.pdf.pdf differ diff --git a/Exams and assignments/Assignments/2026/DDL examples/eventpro_rentals - sql_6.pdf b/Exams and assignments/Assignments/2026/DDL examples/eventpro_rentals - sql_6.pdf new file mode 100644 index 00000000..ecd1eee0 Binary files /dev/null and b/Exams and assignments/Assignments/2026/DDL examples/eventpro_rentals - sql_6.pdf differ diff --git a/Exams and assignments/Assignments/2026/DDL examples/pioneers - Skyline Assets - sql_6.sql b/Exams and assignments/Assignments/2026/DDL examples/pioneers - Skyline Assets - sql_6.sql new file mode 100644 index 00000000..5b5e882a --- /dev/null +++ b/Exams and assignments/Assignments/2026/DDL examples/pioneers - Skyline Assets - sql_6.sql @@ -0,0 +1,103 @@ +-- skyline asset management database design +-- this database manages an in-house real estate portfolio . +-- the design separates properties, units, amenities, tenants, leases, financials, and maintenance. +-- Note: View for concatenated address and amenities not included in this file + +drop database if exists skyline_asset_management; +create database skyline_asset_management; +use skyline_asset_management; + +create table properties ( + property_id int auto_increment primary key, + lot_number varchar(50) unique, + street varchar(100) not null, + city varchar(50) not null, + zip_code varchar(20), + purchase_size_sqm decimal(10, 2), + purchase_price decimal(15, 2), + purchase_date date not null, + build_year int +); + +create table units ( + unit_id int auto_increment primary key, + property_id int not null, + unit_number varchar(20) not null, + foreign key (property_id) references properties(property_id) on delete cascade +); + +create table amenities ( + amenity_id int auto_increment primary key, + amenity_name varchar(50) unique not null +); + +create table unit_amenities ( + unit_id int not null, + amenity_id int not null, + primary key (unit_id, amenity_id), + foreign key (unit_id) references units(unit_id) on delete cascade, + foreign key (amenity_id) references amenities(amenity_id) on delete cascade +); + +create table tenants ( + tenant_id int auto_increment primary key, + national_id varchar(50) unique not null, + first_name varchar(50) not null, + last_name varchar(50) not null, + phone_number varchar(20) + check (phone_number regexp '^([0-9]{2,3})-[0-9]{3}-[0-9]{3}$'), + email varchar(100) +); + +create table leases ( + lease_id int auto_increment primary key, + unit_id int not null, + start_date date not null, + end_date date not null, + monthly_rent decimal(10, 2) not null check (monthly_rent >= 0), + security_deposit decimal(10, 2) not null check (security_deposit >= 0), + foreign key (unit_id) references units(unit_id) on delete cascade +); + +create table lease_tenants ( + lease_id int not null, + tenant_id int not null, + primary key (lease_id, tenant_id), + foreign key (lease_id) references leases(lease_id) on delete cascade, + foreign key (tenant_id) references tenants(tenant_id) on delete cascade +); + +create table income ( + income_id int auto_increment primary key, + lease_id int not null, + payment_date date not null, + amount decimal(10, 2) not null check (amount >= 0), + foreign key (lease_id) references leases(lease_id) on delete cascade +); + +create table liabilities ( + liability_id int auto_increment primary key, + liability_type enum('Supplier Debt', 'Salary Payable') not null, + description varchar(255), + amount decimal(10, 2) not null check (amount >= 0), + due_date date not null +); + +create table contractors ( + contractor_id int auto_increment primary key, + company_name varchar(100) not null, + phone_number varchar(20), + default_hourly_rate decimal(10, 2) check (default_hourly_rate >= 0) +); + +create table work_orders ( + work_order_id int auto_increment primary key, + unit_id int not null, + contractor_id int, + issue_description text not null, + report_date date not null, + status enum('Open', 'In Progress', 'Closed') default 'Open', + billed_amount decimal(10, 2) default 0.00 check (billed_amount >= 0), + foreign key (unit_id) references units(unit_id) on delete cascade, + foreign key (contractor_id) references contractors(contractor_id) on delete set null +); \ No newline at end of file diff --git a/Exams and assignments/Assignments/2026/DDL examples/pioneers - eventpro_rentals - sql_6.sql b/Exams and assignments/Assignments/2026/DDL examples/pioneers - eventpro_rentals - sql_6.sql new file mode 100644 index 00000000..7d0210d0 --- /dev/null +++ b/Exams and assignments/Assignments/2026/DDL examples/pioneers - eventpro_rentals - sql_6.sql @@ -0,0 +1,88 @@ +-- EventPro Rentals Database Design +-- Home Assignment 6 - DDL / Designer Part +-- This database is for a company that rents equipment for events. +-- The design separates customers, events, equipment, orders, payments, +-- delivery/pickup, and return checks. +-- DROP DATABASE IF EXISTS is used only to allow clean re-running of the script. + +DROP DATABASE IF EXISTS eventpro_rentals; +CREATE DATABASE eventpro_rentals; +USE eventpro_rentals; + +CREATE TABLE Customers ( + customer_id INT AUTO_INCREMENT PRIMARY KEY, + full_name VARCHAR(100) NOT NULL, + phone VARCHAR(20) NOT NULL, + email VARCHAR(100) +); + +CREATE TABLE Events ( + event_id INT AUTO_INCREMENT PRIMARY KEY, + customer_id INT NOT NULL, + event_type VARCHAR(50) NOT NULL, + event_date DATE NOT NULL, + event_location VARCHAR(150), + FOREIGN KEY (customer_id) REFERENCES Customers(customer_id) +); + +CREATE TABLE Equipment ( + equipment_id INT AUTO_INCREMENT PRIMARY KEY, + equipment_name VARCHAR(100) NOT NULL, + category VARCHAR(50), + total_quantity INT NOT NULL CHECK (total_quantity >= 0), + rental_price DECIMAL(10,2) NOT NULL CHECK (rental_price >= 0), + equipment_status VARCHAR(30) DEFAULT 'Available' +); + +CREATE TABLE Rental_Orders ( + order_id INT AUTO_INCREMENT PRIMARY KEY, + customer_id INT NOT NULL, + event_id INT NOT NULL, + rental_start_date DATE NOT NULL, + rental_end_date DATE NOT NULL, + order_status VARCHAR(30) DEFAULT 'Pending', + FOREIGN KEY (customer_id) REFERENCES Customers(customer_id), + FOREIGN KEY (event_id) REFERENCES Events(event_id), + CHECK (rental_end_date >= rental_start_date) +); + +CREATE TABLE Order_Items ( + order_id INT NOT NULL, + equipment_id INT NOT NULL, + quantity INT NOT NULL CHECK (quantity > 0), + item_price DECIMAL(10,2) NOT NULL CHECK (item_price >= 0), + PRIMARY KEY (order_id, equipment_id), + FOREIGN KEY (order_id) REFERENCES Rental_Orders(order_id), + FOREIGN KEY (equipment_id) REFERENCES Equipment(equipment_id) +); + +CREATE TABLE Payments ( + payment_id INT AUTO_INCREMENT PRIMARY KEY, + order_id INT NOT NULL, + payment_amount DECIMAL(10,2) NOT NULL CHECK (payment_amount >= 0), + payment_date DATE NOT NULL, + payment_method VARCHAR(30), + payment_status VARCHAR(30) DEFAULT 'Paid', + FOREIGN KEY (order_id) REFERENCES Rental_Orders(order_id) +); + +CREATE TABLE Deliveries ( + delivery_id INT AUTO_INCREMENT PRIMARY KEY, + order_id INT NOT NULL, + delivery_date DATE NOT NULL, + pickup_date DATE NOT NULL, + delivery_address VARCHAR(150) NOT NULL, + delivery_status VARCHAR(30) DEFAULT 'Scheduled', + pickup_status VARCHAR(30) DEFAULT 'Not Completed', + FOREIGN KEY (order_id) REFERENCES Rental_Orders(order_id), + CHECK (pickup_date >= delivery_date) +); + +CREATE TABLE Return_Checks ( + return_check_id INT AUTO_INCREMENT PRIMARY KEY, + order_id INT NOT NULL, + check_date DATE NOT NULL, + equipment_condition VARCHAR(100), + notes VARCHAR(255), + FOREIGN KEY (order_id) REFERENCES Rental_Orders(order_id) +); \ No newline at end of file diff --git a/Exams and assignments/Assignments/2026/DDL examples/pioneers - oli_safe_care_sql_6.sql b/Exams and assignments/Assignments/2026/DDL examples/pioneers - oli_safe_care_sql_6.sql new file mode 100644 index 00000000..fecd60ff --- /dev/null +++ b/Exams and assignments/Assignments/2026/DDL examples/pioneers - oli_safe_care_sql_6.sql @@ -0,0 +1,179 @@ +-- Oli Safe Care Database Design +-- Home Assignment 6- DDL / Designer Part +-- The schema is designed according to the customer requirements: +-- customers, products, inventory, online orders, deliveries, +-- coupons, monthly expenses, external stores. + +DROP DATABASE IF EXISTS oli_safe_care; +CREATE DATABASE oli_safe_care; +USE oli_safe_care; + +-- 1. Customers +-- Stores customer details and allows order history through the orders table. +-- City is stored as part of the customer address information. +-- A separate cities table is not needed because the business does not manage cities separately. +CREATE TABLE customers ( + customer_id INT AUTO_INCREMENT PRIMARY KEY, + customer_name VARCHAR(100) NOT NULL, + phone_number VARCHAR(20), + email VARCHAR(100), + city VARCHAR(100), + address VARCHAR(255) +); + +-- 2. Product Categories +-- Groups products into categories such as pregnancy, postpartum, baby care, and oils. +CREATE TABLE product_categories ( + category_id INT AUTO_INCREMENT PRIMARY KEY, + category_name VARCHAR(50) NOT NULL +); + +-- 3. Products +-- Stores the product catalog, selling price, product cost, and packaging cost. +-- DECIMAL(10,2) is used for monetary values in order to keep accurate financial calculations. +CREATE TABLE products ( + product_id INT AUTO_INCREMENT PRIMARY KEY, + category_id INT NOT NULL, + product_name VARCHAR(100) NOT NULL, + product_description VARCHAR(500), + selling_price DECIMAL(10,2) NOT NULL CHECK (selling_price >= 0), + product_cost DECIMAL(10,2) NOT NULL CHECK (product_cost >= 0), + packaging_cost DECIMAL(10,2) DEFAULT 8.00 CHECK (packaging_cost >= 0), #package average cost is 8 shekels + product_status VARCHAR(30) DEFAULT 'Active', + + FOREIGN KEY (category_id) REFERENCES product_categories(category_id) +); + +-- 4. Inventory Locations +-- Stores the company warehouse and future external stores such as Shilav branches. +CREATE TABLE inventory_locations ( + location_id INT AUTO_INCREMENT PRIMARY KEY, + location_name VARCHAR(100) NOT NULL, + location_type VARCHAR(50), + city VARCHAR(100), + address VARCHAR(255) +); + +-- 5. Inventory +-- Tracks how many units of each product exist in each location. +CREATE TABLE inventory ( + inventory_id INT AUTO_INCREMENT PRIMARY KEY, + product_id INT NOT NULL, + location_id INT NOT NULL, + quantity_in_stock INT NOT NULL CHECK (quantity_in_stock >= 0), + + FOREIGN KEY (product_id) REFERENCES products(product_id), + FOREIGN KEY (location_id) REFERENCES inventory_locations(location_id) +); +CREATE INDEX idx_inventory_product ON inventory(product_id); +CREATE INDEX idx_inventory_location ON inventory(location_id); + + +-- 6. Coupons +-- Stores discount coupons and influencer codes. +CREATE TABLE coupons ( + coupon_id INT AUTO_INCREMENT PRIMARY KEY, + coupon_code VARCHAR(50) NOT NULL, + discount_type VARCHAR(30), + discount_value DECIMAL(10,2) CHECK (discount_value >= 0), + coupon_source VARCHAR(50), + influencer_name VARCHAR(100), + commission_percent DECIMAL(5,2) CHECK (commission_percent >= 0), + start_date DATE, + end_date DATE +); + +-- 7. Orders +-- Stores the main customer order, including basic payment information. +CREATE TABLE orders ( + order_id INT AUTO_INCREMENT PRIMARY KEY, + customer_id INT NOT NULL, + coupon_id INT, + order_date DATE NOT NULL, + order_status VARCHAR(30) DEFAULT 'Pending', + fulfillment_method VARCHAR(30) NOT NULL, + payment_status VARCHAR(30) DEFAULT 'Pending', + payment_method VARCHAR(50), + payment_date DATE, + subtotal_amount DECIMAL(10,2) CHECK (subtotal_amount >= 0), + discount_amount DECIMAL(10,2) CHECK (discount_amount >= 0), + shipping_fee DECIMAL(10,2) CHECK (shipping_fee >= 0), + total_amount DECIMAL(10,2) CHECK (total_amount >= 0), + + FOREIGN KEY (customer_id) REFERENCES customers(customer_id), + FOREIGN KEY (coupon_id) REFERENCES coupons(coupon_id) +); +CREATE INDEX idx_orders_customer ON orders(customer_id); +CREATE INDEX idx_orders_date ON orders(order_date); + +-- 8. Order Items +-- Stores the products and quantities included in each order. +-- This table is needed because one order can include many products, +-- and one product can appear in many different orders. +CREATE TABLE order_items ( + order_item_id INT AUTO_INCREMENT PRIMARY KEY, + order_id INT NOT NULL, + product_id INT NOT NULL, + quantity_ordered INT NOT NULL CHECK (quantity_ordered > 0), + unit_price DECIMAL(10,2) NOT NULL CHECK (unit_price >= 0), + unit_product_cost DECIMAL(10,2) CHECK (unit_product_cost >= 0), + unit_packaging_cost DECIMAL(10,2) CHECK (unit_packaging_cost >= 0), + line_total DECIMAL(10,2) CHECK (line_total >= 0), + + FOREIGN KEY (order_id) REFERENCES orders(order_id), + FOREIGN KEY (product_id) REFERENCES products(product_id) +); +CREATE INDEX idx_order_items_product ON order_items(product_id); + + +-- 9. Deliveries +-- Stores delivery or self-pickup information for each order. +-- Some customers choose home delivery with a fee, and others choose free self-pickup. +CREATE TABLE deliveries ( + delivery_id INT AUTO_INCREMENT PRIMARY KEY, + order_id INT NOT NULL, + fulfillment_method VARCHAR(30) NOT NULL, + delivery_address VARCHAR(255), + pickup_location VARCHAR(255), + delivery_status VARCHAR(30), + shipment_date DATE, + delivery_date DATE, + + FOREIGN KEY (order_id) REFERENCES orders(order_id) +); + +-- 10. Monthly Expenses +-- Stores business expenses so managers can compare income and expenses by month. +CREATE TABLE monthly_expenses ( + expense_id INT AUTO_INCREMENT PRIMARY KEY, + expense_year INT NOT NULL, + expense_month INT NOT NULL, + expense_category VARCHAR(50), + expense_description VARCHAR(255), + amount DECIMAL(10,2) NOT NULL CHECK (amount >= 0) +); + +-- 11. External Store Orders +-- Supports future orders and restocking for external stores such as Shilav branches. +CREATE TABLE external_store_orders ( + external_order_id INT AUTO_INCREMENT PRIMARY KEY, + location_id INT NOT NULL, + order_date DATE NOT NULL, + order_status VARCHAR(30), + notes VARCHAR(500), + + FOREIGN KEY (location_id) REFERENCES inventory_locations(location_id) +); + +-- 12. External Store Order Items +-- Stores the products and quantities included in external store orders. +CREATE TABLE external_store_order_items ( + external_order_item_id INT AUTO_INCREMENT PRIMARY KEY, + external_order_id INT NOT NULL, + product_id INT NOT NULL, + quantity_ordered INT NOT NULL CHECK (quantity_ordered > 0), + wholesale_price DECIMAL(10,2) CHECK (wholesale_price >= 0), + + FOREIGN KEY (external_order_id) REFERENCES external_store_orders(external_order_id), + FOREIGN KEY (product_id) REFERENCES products(product_id) +); \ No newline at end of file diff --git a/Exams and assignments/Assignments/2026/Data normalization cases.pdf b/Exams and assignments/Assignments/2026/Data normalization cases.pdf new file mode 100644 index 00000000..c619f665 Binary files /dev/null and b/Exams and assignments/Assignments/2026/Data normalization cases.pdf differ diff --git a/Exams and assignments/Assignments/2026/Home assignments description_2026.pdf b/Exams and assignments/Assignments/2026/Home assignments description_2026.pdf index e51eea66..27196573 100644 Binary files a/Exams and assignments/Assignments/2026/Home assignments description_2026.pdf and b/Exams and assignments/Assignments/2026/Home assignments description_2026.pdf differ diff --git a/Exams and assignments/Assignments/2026/Plans/readme.md b/Exams and assignments/Assignments/2026/Plans/readme.md new file mode 100644 index 00000000..28bcb819 --- /dev/null +++ b/Exams and assignments/Assignments/2026/Plans/readme.md @@ -0,0 +1 @@ +# This directory contains plans for the project \ No newline at end of file diff --git a/Exams and assignments/Assignments/2026/preformance_sql_8.pdf b/Exams and assignments/Assignments/2026/preformance_sql_8.pdf new file mode 100644 index 00000000..2b896704 Binary files /dev/null and b/Exams and assignments/Assignments/2026/preformance_sql_8.pdf differ diff --git "a/Exams and assignments/Assignments/2026/\327\223\327\231\327\234\327\236\327\225\327\252 \327\221\327\231\327\231\327\246\327\225\327\222 \327\240\327\252\327\225\327\240\327\231\327\235.pdf" "b/Exams and assignments/Assignments/2026/\327\223\327\231\327\234\327\236\327\225\327\252 \327\221\327\231\327\231\327\246\327\225\327\222 \327\240\327\252\327\225\327\240\327\231\327\235.pdf" new file mode 100644 index 00000000..33aa95cf Binary files /dev/null and "b/Exams and assignments/Assignments/2026/\327\223\327\231\327\234\327\236\327\225\327\252 \327\221\327\231\327\231\327\246\327\225\327\222 \327\240\327\252\327\225\327\240\327\231\327\235.pdf" differ diff --git a/Exams and assignments/Exams/Cheatsheet/Cheat_Sheet_26.pdf b/Exams and assignments/Exams/Cheatsheet/Cheat_Sheet_26.pdf new file mode 100644 index 00000000..6ac10e08 Binary files /dev/null and b/Exams and assignments/Exams/Cheatsheet/Cheat_Sheet_26.pdf differ diff --git a/Exams and assignments/Project_2026.pdf b/Exams and assignments/Project_2026.pdf index 80816baf..28a86624 100644 Binary files a/Exams and assignments/Project_2026.pdf and b/Exams and assignments/Project_2026.pdf differ diff --git a/Exams and assignments/Questions/data representation/Data representation dilemmas.pdf b/Exams and assignments/Questions/data representation/Data representation dilemmas.pdf new file mode 100644 index 00000000..b197c41e Binary files /dev/null and b/Exams and assignments/Questions/data representation/Data representation dilemmas.pdf differ diff --git a/KnowledgeBase/README.md b/KnowledgeBase/README.md index 90e82b5a..ba5763f4 100644 --- a/KnowledgeBase/README.md +++ b/KnowledgeBase/README.md @@ -38,7 +38,7 @@ 13. [Hackerrank](https://www.hackerrank.com/domains/sql) 14. [SQL practice](https://www.sqlpractice.in/) - online practie, nice uses of window function 15. [Practice window functions](https://www.practicewindowfunctions.com/) - +16. [XP-lab: Data analysis training](https://www.xp-lab.com/) # Sql games 1. [SQL Murder Mystery](https://mystery.knightlab.com/) diff --git "a/Lecture notes/\327\222\327\231\327\220 \327\240\327\220\327\225\327\250- \327\241\327\231\327\233\327\225\327\235 \327\251\327\231\327\242\327\225\327\250 8 - flexible schemes.pdf" "b/Lecture notes/\327\222\327\231\327\220 \327\240\327\220\327\225\327\250- \327\241\327\231\327\233\327\225\327\235 \327\251\327\231\327\242\327\225\327\250 8 - flexible schemes.pdf" new file mode 100644 index 00000000..6ba66765 Binary files /dev/null and "b/Lecture notes/\327\222\327\231\327\220 \327\240\327\220\327\225\327\250- \327\241\327\231\327\233\327\225\327\235 \327\251\327\231\327\242\327\225\327\250 8 - flexible schemes.pdf" differ diff --git "a/Lecture notes/\327\241\327\231\327\233\327\225\327\235 \327\251\327\231\327\242\327\225\327\250 12.docx" "b/Lecture notes/\327\241\327\231\327\233\327\225\327\235 \327\251\327\231\327\242\327\225\327\250 12.docx" new file mode 100644 index 00000000..7e7dac72 Binary files /dev/null and "b/Lecture notes/\327\241\327\231\327\233\327\225\327\235 \327\251\327\231\327\242\327\225\327\250 12.docx" differ diff --git "a/Lecture notes/\327\241\327\231\327\233\327\225\327\235 \327\251\327\231\327\242\327\225\327\250 12.pdf" "b/Lecture notes/\327\241\327\231\327\233\327\225\327\235 \327\251\327\231\327\242\327\225\327\250 12.pdf" new file mode 100644 index 00000000..5d1b7df8 Binary files /dev/null and "b/Lecture notes/\327\241\327\231\327\233\327\225\327\235 \327\251\327\231\327\242\327\225\327\250 12.pdf" differ diff --git a/Presentations/Windows Functions.pdf b/Presentations/Windows Functions.pdf new file mode 100644 index 00000000..2fdd33b6 Binary files /dev/null and b/Presentations/Windows Functions.pdf differ diff --git a/recommendations_goldstandard/collaborative_filtering/all_personal_movies_ranking_2026.sql b/recommendations_goldstandard/collaborative_filtering/all_personal_movies_ranking_2026.sql index b0c7666c..e97611be 100644 --- a/recommendations_goldstandard/collaborative_filtering/all_personal_movies_ranking_2026.sql +++ b/recommendations_goldstandard/collaborative_filtering/all_personal_movies_ranking_2026.sql @@ -2362,206 +2362,207 @@ insert into personal_movies_ranking(movie_id, recommendation, suggested_by, just insert into personal_movies_ranking(movie_id, recommendation, suggested_by, justification, comment) values (173933, 6, 'ChenEylon', ''' Wax on, wax off. '' Cheesy but earnest sports-movie structure that a thousand imitators copied.', null); -- 173933 Karate Kid, The (1984) insert into personal_movies_ranking(movie_id, recommendation, suggested_by, justification, comment) values (127252, 7, 'ChenEylon', ''' Who you gonna call? '' The ghost-trap effects are charming even when they''re obviously not real.', null); -- 127252 Ghostbusters (1986) -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (644,10,'Noa','Funny, very romantic, one of the most rewatchable teen movies and one of my personal favorites',NULL); # 644 10 Things I Hate About You 1999 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (1038,8,'Noa','Sweet, funny, and very likable. Light romantic comedy with a nostalgic early-2000s feel',NULL); # 1038 13 Going On 30 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (151616,8,'Noa','Very funny and romantic comedy, super fun to re-watch',NULL); # 151616 How to Lose a Guy in 10 Days 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (46878,7,'Noa','Fun moments, awkward romance and love triangle drama',NULL); # 46878 Bridget Jones: The Edge of Reason 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (62460,9,'Noa','Charming, visually beautiful which I really liked and easy to love',NULL); # 62460 Chocolat 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (33492,8,'Noa','Romantic, the relationships feel realistic and loved the food and restaurant setting',NULL); # 33492 Bella Martha 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (34104,8,'Noa','Good chemistry and plenty of heart',NULL); # 34104 Benny & Joon 1993 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (31715,9,'Noa','Sweet, funny, and I loved that the friendship feels real and emotional',NULL); # 31715 Beaches 1988 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (118980,7,'Noa','The movie is slower than some of the others but has an easy charm',NULL); # 118980 Frankie and Johnny 1991 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (12744,7,'Noa','Cute and easy to watch',NULL); # 12744 Always 1989 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (66194,10,'Noa','It is funny, stylish, and still feels iconic years later. The characters are memorable and the movie is very easy to rewatch',NULL); # 66194 Clueless 1995 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (74259,7,'Noa','A little weird, musical romantic comedy with a retro style',NULL); # 74259 Cry-Baby 1990 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (59578,9,'Noa','Creative, visually beautiful, and one of the most entertaining family movies',NULL); # 59578 Charlie and the Chocolate Factory 2005 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (96593,8,'Noa','Bold sci-fi with emotional weight',NULL); # 96593 E.T. the Extra-Terrestrial 1982 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (149287,8,'Noa','Fun adventure, darker than the first movie and has more mystery, but still keeps the fun feeling',NULL); # 149287 Hook 1991 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (131885,8,'Noa','Classic adventure movie with fun characters and a lot of energy',NULL); # 131885 Goonies, The 1985 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139657,7,'Noa','Fun classical with good energy',NULL); # 139657 Harry Potter and the Sorcerer's Stone 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139650,8,'Noa','Strong franchise entry, very watchable',NULL); # 139650 Harry Potter and the Chamber of Secrets 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139655,8,'Noa','One of the strongest Harry Potter films, with a darker tone and a more mature feel',NULL); # 139655 Harry Potter and the Prisoner of Azkaban 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139652,9,'Noa','Darker tone, bigger stakes, and more action make it stand out in the series',NULL); # 139652 Harry Potter and the Goblet of Fire 2005 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30959,9,'Noa','One of the strongest Batman movies because it is darker, more serious, and has a great cast',NULL); # 30959 Batman Begins 2005 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30955,9,'Noa','Classic version of Batman with a very strong visual style',NULL); # 30955 Batman 1989 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30967,8,'Noa','Good energy very memorable, loved the characters',NULL); # 30967 Batman Returns 1992 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30976,9,'Noa','Exciting and easy to enjoy, good mystery and emotional story',NULL); # 30976 Batman: Mask of the Phantasm 1993 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30961,8,'Noa','A more futuristic Batman story that still feels emotional and exciting',NULL); # 30961 Batman Beyond: Return of the Joker (2000/I) 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (10830,9,'Noa','Very suspenseful with a strong atmosphere and great sci-fi visuals',NULL); # 10830 Alien 1979 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (10920,8,'Noa','Visually impressive, more action-focused',NULL); # 10920 Aliens 1986 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (21213,8,'Noa','Emotional sci-fi movie that feels different from most others in the genre',NULL); # 21213 Artificial Intelligence: AI 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (25192,8,'Noa','Strong performances and real emotion',NULL); # 25192 Aviator, The 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (56871,10,'Noa','It is very entertaining from start to finish and one of Leonardo DiCaprios most likable performances',NULL); # 56871 Catch Me If You Can 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (129185,9,'Noa','Strong action, emotional depth, and a story that really hits',NULL); # 129185 Gladiator 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (46169,8,'Noa','Thoughtful drama with good depth',NULL); # 46169 Braveheart 1995 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (39551,6,'Noa','Powerful scenes and solid action, though the pacing can feel uneven at times',NULL); # 39551 Black Hawk Down 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (40199,8,'Noa','Moody sci-fi with real depth',NULL); # 40199 Blade Runner 1982 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (100130,8,'Noa','Well-acted and emotionally engaging',NULL); # 100130 Empire of the Sun 1987 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (113506,8,'Noa','Serious, polished, and absorbing',NULL); # 113506 Finding Neverland 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (67395,9,'Noa','Powerful story with strong performances',NULL); # 67395 Color Purple, The 1985 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (10702,8,'Noa','Interesting, well made, and engaging',NULL); # 10702 Alice Doesn't Live Here Anymore 1974 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (8183,8,'Noa','Strong performances and real emotion',NULL); # 8183 Age of Innocence, The 1993 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (14477,8,'Noa','Thoughtful drama with good depth',NULL); # 14477 Amistad 1997 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (32707,8,'Noa','Well-acted and emotionally engaging',NULL); # 32707 Before Night Falls 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (41518,7,'Noa','Entertaining, Johnny Depp makes the movie more interesting, even if the story is a bit uneven.',NULL); # 41518 Blow 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (56304,8,'Noa','Engaging crime drama, well acted',NULL); # 56304 Casino 1995 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (131780,9,'Noa','One of the best crime movies, excellent pacing',NULL); # 131780 Goodfellas 1990 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (123849,8,'Noa','Tense story with solid performances',NULL); # 123849 Gangs of New York 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (123435,8,'Noa','Very clever. Keeps you interested because you never know what is real.',NULL); # 123435 Game, The 1997 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (69812,6,'Noa','Decent tension, but not amazing',NULL); # 69812 Conspiracy Theory 1997 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (54209,6,'Noa','Watchable thriller with some flaws',NULL); # 54209 Cape Fear 1991 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (94741,8,'Noa','Keeps the tension going well',NULL); # 94741 Duel (1971/I) 1971 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (97727,9,'Noa','Distinctive, emotional, and memorable',NULL); # 97727 Edward Scissorhands 1990 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (97360,8,'Noa','Small-scale but emotionally effective',NULL); # 97360 Ed Wood 1994 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (120506,7,'Noa','Keeps interest, even if uneven',NULL); # 120506 From Hell 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (47130,6,'Noa','Dark and unusual film with strong atmosphere, but it was not fully easy to connect with',NULL); # 47130 Bringing Out the Dead 1999 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (112290,10,'Noa','Really liked it, one of the most famous twists in film.',NULL); # 112290 Fight Club 1999 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (61751,10,'Noa','Atmospheric, smart, and unforgettable',NULL); # 61751 Children of Men, The 2005 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (70959,8,'Noa','Big-hearted and very watchable',NULL); # 70959 Corpse Bride, The 2005 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (65811,9,'Noa','Smart sci-fi with strong atmosphere',NULL); # 65811 Close Encounters of the Third Kind 1977 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (67388,7,'Noa','Decent watch, modest impact',NULL); # 67388 Color of Money, The 1986 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (85871,5,'Noa','It has some fun moments, but it is not as exciting or polished as the stronger Bond movies.',NULL); # 85871 Diamonds Are Forever 1971 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (92573,8,'Noa','Interesting because it is the first Bond movie, even if it feels old-fashioned.',NULL); # 92573 Dr. No 1962 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (120574,8,'Noa','Classic Bond fun, polished and entertaining',NULL); # 120574 From Russia with Love 1963 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (117314,7,'Noa','Solid Bond entertainment',NULL); # 117314 For Your Eyes Only 1981 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130953,7,'Noa','Stylish Bond entry with good pace',NULL); # 130953 Goldfinger 1964 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130945,8,'Noa','Classic Bond fun, polished and entertaining',NULL); # 130945 GoldenEye 1997 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (86263,6,'Noa','Classic appeal, but less exciting',NULL); # 86263 Die Another Day 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (1390,6,'Noa','Modest film, limited impact, feels too messy overall',NULL); # 1390 1941 1979 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (7842,9,'Noa','Interesting, well made, and engaging',NULL); # 7842 After Hours 1985 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30686,10,'Noa','Emotionally heavy and very well acted, it feels real and leaves a lasting impact',NULL); # 30686 Basketball Diaries, The 1995 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (15187,6,'Noa','Has an unusual thriller style and some tension, but it is not fully memorable',NULL); # 15187 Amsterdamned 1988 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (20253,7,'Noa','Creative and strange in a good way, though not always focused enough',NULL); # 20253 Arizona Dream 1993 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (28631,6,'Noa','Has a nice idea and gentle tone, but it does not fully stand out',NULL); # 28631 Balloon 1991 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (56282,7,'Noa','Interesting visual style, but the story leaves only a modest impression',NULL); # 56282 Cashback 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (65522,6,'Noa','Decent tension, but not amazing',NULL); # 65522 Clearing, The 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (69469,8,'Noa','Small-scale but emotionally effective',NULL); # 69469 Confidences trop intimes 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (80969,6,'Noa','The concept is interesting, but the movie never becomes especially memorable.',NULL); # 80969 Dear God 1996 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (22651,5,'Noa','The mystery is interesting at first and the cast is strong, but the story becomes confusing and less exciting as it goes on',NULL); # 22651 Astronaut's Wife, The 1999 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (58084,6,'Noa','Has some interesting sci-fi ideas, but the story is not engaging enough',NULL); # 58084 Cerebrium 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (116556,8,'Noa','Engaging thriller, clever and interesting',NULL); # 116556 Following 1998 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (121552,6,'Noa','Simple and watchable, but it feels too small to leave a real impact',NULL); # 121552 Full Moon Rising 1996 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (113459,7,'Noa','Interesting setup, mixed payoff',NULL); # 113459 Find Me Guilty 2005 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (14132,7,'Noa','Funny in parts and easy to watch, even if it is not as strong as the first one.',NULL); # 14132 American Pie 2 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (109421,8,'Noa','Fun action scenes and good energy',NULL); # 109421 Fast and the Furious, The 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (34077,8,'Noa','Strong performances and real emotion',NULL); # 34077 Benjamin Button 2006 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (142491,7,'Noa','It has cool visuals and an interesting main character, but it is not one of the strongest superhero movies',NULL); # 142491 Hellboy 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (46167,6,'Noa','Serious movie, but it feels slower and less engaging than some of the other dramas',NULL); # 46167 Brave, The 1997 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (121852,6,'Noa','Has a funny setup, but the humor does not stay strong throughout',NULL); # 121852 Funny Thing Happened at the Quick Mart, A 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (68065,6,'Noa','A low-key film that keeps things simple but does not leave a strong impression',NULL); # 68065 Comfort Blanket 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (116358,6,'Noa','The story is decent, but it never becomes especially emotional or memorable',NULL); # 116358 Focus 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (105851,6,'Noa','Has some entertaining parts, but the tone feels uneven and not fully convincing',NULL); # 105851 Exit to Eden 1994 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (32180,10,'Noa','Classic Disney story with beautiful music and a nostalgic feel',NULL); # 32180 Beauty and the Beast 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (849,7,'Noa','Entertaining fun family movie',NULL); # 849 101 Dalmatians II: Patch's London Adventure 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (9813,7,'Noa','Good action, a bit uneven',NULL); # 9813 Aladdin in Nasira's Revenge 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (70960,5,'Noa','The mystery idea is fine, but the movie feels too slight overall',NULL); # 70960 Corpse Came C.O.D., The 1947 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (83470,6,'Noa','Has tension, but feels slight',NULL); # 83470 Descent 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (78877,6,'Noa','Some scenes are interesting, but the movie feels inconsistent',NULL); # 78877 Dark Mist, The 1996 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (89441,6,'Noa','Interesting in concept, but the emotional side is not strong enough',NULL); # 89441 Doki-Doki 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (100241,7,'Noa','Has a very interesting direction, but it does not develop into something very memorable',NULL); # 100241 En attendant la cigogne 1997 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (101687,6,'Noa','A modest film with limited scope, so it does not leave much of an impact',NULL); # 101687 Enter Achilles 1996 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (102311,3,'Noa','Nice basic idea, but the final result feels small and forgettable',NULL); # 102311 Era outra vez 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (103755,5,'Noa','A few interesting moments, but not very memorable overall',NULL); # 103755 Espera, La 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (104484,3,'Noa','There are a few decent scenes, but never fully comes together as a complete film',NULL); # 104484 Eu Adam 1996 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (105587,6,'Noa','Interesting concept, but not enough happens to make it stand out',NULL); # 105587 Examen 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (110509,5,'Noa','Has a few engaging moments, but overall it feels easy to forget',NULL); # 110509 Feel Neil 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (113814,5,'Noa','Struggles to maintain interest despite having a few promising elements',NULL); # 113814 Fire Inside, The 1998 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (116829,4,'Noa','Becomes harder to stay invested as it goes on. It has a few good moments, but overall it feels smaller and less memorable than stronger dramas',NULL); # 116829 Foot Shooting Party, The 1994 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (122277,6,'Noa','The movie has some charm, but it does not leave a lasting impression',NULL); # 122277 Fyrsti aprl 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (126792,6,'Noa','Has several solid moments, but the story is not memorable enough',NULL); # 126792 Geudeulmanui sesang 1996 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (134680,4,'Noa','There are a few good moments, but overall it never becomes memorable enough to really stand out',NULL); # 134680 Group 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (138142,5,'Noa','Focuses on an interesting direction, but doesn’t develop it strongly enough',NULL); # 138142 Hand of Fate 1999 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (142881,5,'Noa','Even with a few emotional moments, the story feels too small to leave a strong impression overall',NULL); # 142881 Henry and Marvin 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (146758,7,'Noa','Easy and fun to watch, even if not especially memorable',NULL); # 146758 Hit the Highway, Honey 1998 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (152856,4,'Noa','Feels limited in scope, which makes the overall experience less impactful',NULL); # 152856 Hungry 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (63125,7,'Noa','Cute and light, especially for holiday romance fans',NULL); # 63125 Christmas Tree and a Wedding, A 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (65602,5,'Noa','Shows some potential, but doesn’t take it far enough to be memorable',NULL); # 65602 Click Three Times 1999 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (65762,5,'Noa','It has an unusual concept and a few funny moments, but overall it feels too small and forgettable to really stand out',NULL); # 65762 Clockwork Maury, A 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (75646,6,'Noa','Has a decent premise, but the execution feels a bit flat overall',NULL); # 75646 Custodial Code, The 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (79593,5,'Noa','There are a few entertaining moments, but the movie feels uneven and never fully pulls you in',NULL); # 79593 David Nelson Live 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (79678,6,'Noa','It is easy enough to watch, even if the story does not fully come together in the end',NULL); # 79678 Dawn of the Friend 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (82868,6,'Noa','Interesting subject, but the film does not stand out strongly enough',NULL); # 82868 Denk ich an Deutschland - Wir haben vergessen zurckzukehren 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (85117,7,'Noa','Strong atmosphere and engaging moments throughout, even if the pacing is a bit slow at times',NULL); # 85117 Devils Are Dreaming 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (86399,8,'Noa','The historical setting and subject matter make it interesting',NULL); # 86399 Dieses Jahr in Czernowitz 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (89823,5,'Noa','The atmosphere is strong, but the story feels a little distant, which makes it harder to fully connect to',NULL); # 89823 Domaine, Le 1999 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (93829,6,'Noa','The movie has an unusual style and a few interesting scenes, but it feels too strange and uneven to really connect with',NULL); # 93829 Driving Fish 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (96193,5,'Noa','There are a few good ideas and some nice atmosphere, but overall it feels too small to leave much of an impression',NULL); # 96193 Drive de l'Atlantic, La 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (99875,6,'Noa','The story has some emotional potential, but it never becomes strong enough to really stand out',NULL); # 99875 Emigranti (2002/I) 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (104266,6,'Noa','There are a few interesting scenes and a serious atmosphere, but the pacing feels too slow overall',NULL); # 104266 Etat 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (105697,6,'Noa','The movie has a serious tone and a few good moments, but it is difficult to stay fully invested in the story',NULL); # 105697 Exec, The 2006 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (113547,6,'Noa','The concept is funny and relatable, but the movie feels uneven and not as clever as it could have been',NULL); # 113547 Fine Line Between Cute and Creepy, The 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (114955,7,'Noa','It has a fun summer atmosphere and an easy charm that makes it enjoyable to watch',NULL); # 114955 Flamingo Kid, The 1984 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (123371,6,'Noa','There are a few entertaining moments, but the story feels too small and forgettable overall',NULL); # 123371 Game Day 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (129887,6,'Noa','The sports theme is fun and there are a few enjoyable moments, but it never becomes memorable enough overall',NULL); # 129887 Goal Club 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (133608,5,'Noa','The idea behind the movie is interesting, but the story feels too small and uneven to really stand out',NULL); # 133608 Great Gabble, The 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (137958,5,'Noa','There are a few scenes with good energy, but overall the movie feels too uneven to stay interesting',NULL); # 137958 Hammer and Cycle 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (143582,6,'Noa','The humor is unusual and there are some funny moments, but it is not something that stays with you afterward',NULL); # 143582 Here Comes Dr. Tran 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (146943,6,'Noa','The idea has some potential, but the movie never becomes emotional or exciting enough to really work',NULL); # 146943 Hitting Zero 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (2057,5,'Noa','There are a few emotional moments, but overall the story feels too small to leave a strong impression',NULL); # 2057 2wks, 1yr 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (2352,6,'Noa','The movie has a few good moments, but it feels too limited and forgettable overall',NULL); # 2352 36K 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (2656,5,'Noa','The western setting is interesting, but the movie never becomes exciting enough to stand out',NULL); # 2656 5 Card Stud 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (4948,6,'Noa','There are a few interesting scenes, but the movie feels too quiet and not memorable enough overall',NULL); # 4948 Able's House Is Green, The 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (5889,6,'Noa','It has a few charming moments, but overall it feels too dated to leave much of an impression',NULL); # 5889 Act Your Age 1939 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (8820,4,'Noa','Leaves a mild impression, without building toward something more meaningful',NULL); # 8820 Ai-Fak 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (16730,6,'Noa','Has a few nice moments, but overall it does not feel very distinctive',NULL); # 16730 Angel on My Shoulder 1997 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (19433,4,'Noa','Some parts are decent, but the film feels too weak to be memorable',NULL); # 19433 Aquarium, L' 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (24235,5,'Noa','The movie has an unusual tone and a few interesting character moments, but it never fully comes together',NULL); # 24235 Aunt Tiger 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (24259,6,'Noa','Decent suspense, but the payoff is not strong enough',NULL); # 24259 Aura 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (28085,5,'Noa','The movie has some dramatic potential, but it did not work well enough for me',NULL); # 28085 Bakit may kahapon pa? 1996 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (33965,6,'Noa','The movie has a classic romantic style and some charming moments, but it feels a little too old-fashioned overall',NULL); # 33965 Bendita seas 1948 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (38743,6,'Noa','The idea is promising, but the execution feels too plain',NULL); # 38743 Birthmark, The 1987 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (45377,5,'Noa','Has a few interesting elements, but overall it feels average',NULL); # 45377 Boy 1997 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (50012,6,'Noa','The family comedy style is fun in parts, but the humor feels too simple to really stay with you afterward',NULL); # 50012 Burning the Grump 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (51413,4,'Noa','The concept is fine, but the movie feels too quiet to stand out',NULL); # 51413 C'est le vent 1997 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (54879,6,'Noa','A few moments are entertaining, but the overall film is not very memorable',NULL); # 54879 Card Sharks (2001/II) 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (59656,6,'Noa','Some moments work, but the movie does not build enough impact',NULL); # 59656 Charlie the Ox 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (60408,5,'Noa','Interesting idea, but the movie feels underdeveloped',NULL); # 60408 Chek 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (70507,6,'Noa','The movie has a softer emotional side, but the pacing makes it harder to stay fully invested',NULL); # 70507 Copi, je t'aime 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (74133,6,'Noa','It has a serious tone and a few strong scenes, but the story feels a little too slow overall',NULL); # 74133 Crutch 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (78702,6,'Noa','The road-trip idea is fun, but the movie feels uneven and not as funny as it could have been',NULL); # 78702 Dari Jemapoh ke Manchestee 1998 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (96681,5,'Noa','There are a few amusing moments, but the humor is too random to really make the movie work',NULL); # 96681 Earl's Your Uncle 2004 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (99633,5,'Noa','The atmosphere is interesting, but the plot feels too confusing to fully connect with',NULL); # 99633 Elysium 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (102108,8,'Noa','Interesting topic, especially for fans of the franchise',NULL); # 102108 Epic at Sea: The Making of 'Pirates of the Caribbean: The Curse of the Black Pearl', An 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (137709,7,'Noa','Enjoyable if you already like this type of movie',NULL); # 137709 Halo 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (400853,7,'Noa','Fun cast and entertaining moments, even with flaws',NULL); # 400853 Parenthood 1990 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (406158,6,'Noa','Entertaining action, but not one of the stronger entries',NULL); # 406158 Spider-Man 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (406411,7,'Noa','It is fun to watch if you already enjoy Star Wars because it adds more action and background to the characters',NULL); # 406411 Star Wars: Clone Wars 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (121,7,'Noa','Fun and nostalgic, even if a little uneven',NULL); # 121 'High Sign', The 1921 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (263,8,'Noa','Light, romantic, and easy to watch',NULL); # 263 'Til There Was You 1997 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (370,6,'Noa','Has some charm, but does not leave a strong impression',NULL); # 370 ...continuavano a chiamarlo Trinit 1972 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (517,4,'Noa','Fine for fans of the franchise, but not essential',NULL); # 517 .hack//Quarantine 2003 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (675,6,'Noa','The story has potential, but it does not become especially memorable',NULL); # 675 100 Days 1991 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (676,6,'Noa','Has some meaningful moments, but overall it stays fairly forgettable',NULL); # 676 100 Days 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (818,6,'Noa','Some parts are pleasant, but the film does not leave a strong impression',NULL); # 818 1000 Marys 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (837,8,'Noa','Fun adventure that is easy to enjoy',NULL); # 837 1001 Nights 1998 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (870,6,'Noa','Quirky and different, but not strong enough to fully stand out',NULL); # 870 101 Reykjavk 2000 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (878,4,'Noa','Has a few decent moments, but it feels too ordinary overall',NULL); # 878 102 2001 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (952,5,'Noa','The film has some good parts, but the overall effect is limited',NULL); # 952 11:00 AM 1999 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (1018,7,'Noa','Interesting sci-fi idea, even if somewhat uneven',NULL); # 1018 12:01 1993 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (1024,7,'Noa','The concept is interesting, but the movie does not fully deliver',NULL); # 1024 13 (1999/I) 1999 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (1046,6,'Noa','Has an unusual atmosphere, but it is not very memorable overall',NULL); # 1046 13 Moons 2002 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (3634,6,'Noa','Interesting subject, but not strong enough overall',NULL); # 3634 A&E Biography: Captain Bligh - Mutiny on the Bounty 1996 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (13343,7,'Noa','Fun action scenes, even if uneven in parts',NULL); # 13343 Amazing Adventures of Spider-Man, The 1999 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (29760,5,'Noa','Simple concept, but overall pretty forgettable',NULL); # 29760 Barbie Riding Club 1998 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (34306,7,'Noa','Some scenes are enjoyable, but the movie does not feel very special',NULL); # 34306 Berlin Berlin 1998 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (45312,6,'Noa','It has an interesting outlaw story and a rough older style, but it is harder to connect to the characters than in stronger crime dramas',NULL); # 45312 Boxcar Bertha 1972 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (53921,8,'Noa','A clever and entertaining take on the film industry, with sharp humor and a fun concept',NULL); # 53921 Cannes Man 1996 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (58160,6,'Noa','Some tension, but not enough to really stand out',NULL); # 58160 Certain Fury 1985 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (73574,5,'Noa','Hard to stay interested in overall',NULL); # 73574 Critters 3 1991 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (79845,7,'Noa','The western setting is interesting and there are a few tense moments',NULL); # 79845 Day of the Evil Gun 1968 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (92323,6,'Noa','The idea is decent, but the result feels too generic',NULL); # 92323 Dozen Kliks, A 1998 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (103334,6,'Noa','Has some tension, but the movie feels limited and forgettable',NULL); # 103334 Escape to Nowhere 1961 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (134675,7,'Noa','Charming and easy to watch',NULL); # 134675 Grounds for Marriage 1951 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (379327,9,'Noa','Pleasant watch with fun adventure energy',NULL); # 379327 Adventures of Robin Hood, The 1955 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (379331,6,'Noa','Some mystery elements work, but it is not one of the stronger versions',NULL); # 379331 Adventures of Sherlock Holmes, The 1984 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (383395,7,'Noa','Interesting to see an older version of Captain America with a classic comic-book feel',NULL); # 383395 Captain America 1966 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (397121,5,'Noa','Some fun moments, but not as exciting or polished as the later Matrix movies',NULL); # 397121 Matrix 1993 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (399427,6,'Noa','The concept is interesting, but the overall result feels inconsistent',NULL); # 399427 Night Gallery 1970 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (405119,6,'Noa','Classic detective idea, but this version does not feel especially strong',NULL); # 405119 Sherlock Holmes 1951 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (391453,5,'Noa','Interesting idea, but less effective in practice',NULL); # 391453 Herndon 1983 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (108,4,'Noa','Feels very dated, with weak pacing and not much to hold interest',NULL); # 108 'G' Men 1935 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (450,5,'Noa','The setup creates some tension and the cast is solid, but the movie moves a little too slowly overall',NULL); # 450 ...tick...tick...tick... 1970 -insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (672,6,'Noa','Has a few interesting moments, but the movie does not leave a strong final impact',NULL); # 672 100 aos de perdn 1998 + +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (644,10,'NoaAkerman12','Funny, very romantic, one of the most rewatchable teen movies and one of my personal favorites',NULL); # 644 10 Things I Hate About You 1999 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (1038,8,'NoaAkerman12','Sweet, funny, and very likable. Light romantic comedy with a nostalgic early-2000s feel',NULL); # 1038 13 Going On 30 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (151616,8,'NoaAkerman12','Very funny and romantic comedy, super fun to re-watch',NULL); # 151616 How to Lose a Guy in 10 Days 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (46878,7,'NoaAkerman12','Fun moments, awkward romance and love triangle drama',NULL); # 46878 Bridget Jones: The Edge of Reason 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (62460,9,'NoaAkerman12','Charming, visually beautiful which I really liked and easy to love',NULL); # 62460 Chocolat 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (33492,8,'NoaAkerman12','Romantic, the relationships feel realistic and loved the food and restaurant setting',NULL); # 33492 Bella Martha 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (34104,8,'NoaAkerman12','Good chemistry and plenty of heart',NULL); # 34104 Benny & Joon 1993 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (31715,9,'NoaAkerman12','Sweet, funny, and I loved that the friendship feels real and emotional',NULL); # 31715 Beaches 1988 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (118980,7,'NoaAkerman12','The movie is slower than some of the others but has an easy charm',NULL); # 118980 Frankie and Johnny 1991 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (12744,7,'NoaAkerman12','Cute and easy to watch',NULL); # 12744 Always 1989 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (66194,10,'NoaAkerman12','It is funny, stylish, and still feels iconic years later. The characters are memorable and the movie is very easy to rewatch',NULL); # 66194 Clueless 1995 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (74259,7,'NoaAkerman12','A little weird, musical romantic comedy with a retro style',NULL); # 74259 Cry-Baby 1990 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (59578,9,'NoaAkerman12','Creative, visually beautiful, and one of the most entertaining family movies',NULL); # 59578 Charlie and the Chocolate Factory 2005 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (96593,8,'NoaAkerman12','Bold sci-fi with emotional weight',NULL); # 96593 E.T. the Extra-Terrestrial 1982 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (149287,8,'NoaAkerman12','Fun adventure, darker than the first movie and has more mystery, but still keeps the fun feeling',NULL); # 149287 Hook 1991 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (131885,8,'NoaAkerman12','Classic adventure movie with fun characters and a lot of energy',NULL); # 131885 Goonies, The 1985 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139657,7,'NoaAkerman12','Fun classical with good energy',NULL); # 139657 Harry Potter and the Sorcerer's Stone 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139650,8,'NoaAkerman12','Strong franchise entry, very watchable',NULL); # 139650 Harry Potter and the Chamber of Secrets 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139655,8,'NoaAkerman12','One of the strongest Harry Potter films, with a darker tone and a more mature feel',NULL); # 139655 Harry Potter and the Prisoner of Azkaban 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139652,9,'NoaAkerman12','Darker tone, bigger stakes, and more action make it stand out in the series',NULL); # 139652 Harry Potter and the Goblet of Fire 2005 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30959,9,'NoaAkerman12','One of the strongest Batman movies because it is darker, more serious, and has a great cast',NULL); # 30959 Batman Begins 2005 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30955,9,'NoaAkerman12','Classic version of Batman with a very strong visual style',NULL); # 30955 Batman 1989 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30967,8,'NoaAkerman12','Good energy very memorable, loved the characters',NULL); # 30967 Batman Returns 1992 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30976,9,'NoaAkerman12','Exciting and easy to enjoy, good mystery and emotional story',NULL); # 30976 Batman: Mask of the Phantasm 1993 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30961,8,'NoaAkerman12','A more futuristic Batman story that still feels emotional and exciting',NULL); # 30961 Batman Beyond: Return of the Joker (2000/I) 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (10830,9,'NoaAkerman12','Very suspenseful with a strong atmosphere and great sci-fi visuals',NULL); # 10830 Alien 1979 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (10920,8,'NoaAkerman12','Visually impressive, more action-focused',NULL); # 10920 Aliens 1986 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (21213,8,'NoaAkerman12','Emotional sci-fi movie that feels different from most others in the genre',NULL); # 21213 Artificial Intelligence: AI 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (25192,8,'NoaAkerman12','Strong performances and real emotion',NULL); # 25192 Aviator, The 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (56871,10,'NoaAkerman12','It is very entertaining from start to finish and one of Leonardo DiCaprios most likable performances',NULL); # 56871 Catch Me If You Can 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (129185,9,'NoaAkerman12','Strong action, emotional depth, and a story that really hits',NULL); # 129185 Gladiator 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (46169,8,'NoaAkerman12','Thoughtful drama with good depth',NULL); # 46169 Braveheart 1995 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (39551,6,'NoaAkerman12','Powerful scenes and solid action, though the pacing can feel uneven at times',NULL); # 39551 Black Hawk Down 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (40199,8,'NoaAkerman12','Moody sci-fi with real depth',NULL); # 40199 Blade Runner 1982 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (100130,8,'NoaAkerman12','Well-acted and emotionally engaging',NULL); # 100130 Empire of the Sun 1987 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (113506,8,'NoaAkerman12','Serious, polished, and absorbing',NULL); # 113506 Finding Neverland 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (67395,9,'NoaAkerman12','Powerful story with strong performances',NULL); # 67395 Color Purple, The 1985 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (10702,8,'NoaAkerman12','Interesting, well made, and engaging',NULL); # 10702 Alice Doesn't Live Here Anymore 1974 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (8183,8,'NoaAkerman12','Strong performances and real emotion',NULL); # 8183 Age of Innocence, The 1993 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (14477,8,'NoaAkerman12','Thoughtful drama with good depth',NULL); # 14477 Amistad 1997 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (32707,8,'NoaAkerman12','Well-acted and emotionally engaging',NULL); # 32707 Before Night Falls 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (41518,7,'NoaAkerman12','Entertaining, Johnny Depp makes the movie more interesting, even if the story is a bit uneven.',NULL); # 41518 Blow 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (56304,8,'NoaAkerman12','Engaging crime drama, well acted',NULL); # 56304 Casino 1995 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (131780,9,'NoaAkerman12','One of the best crime movies, excellent pacing',NULL); # 131780 Goodfellas 1990 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (123849,8,'NoaAkerman12','Tense story with solid performances',NULL); # 123849 Gangs of New York 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (123435,8,'NoaAkerman12','Very clever. Keeps you interested because you never know what is real.',NULL); # 123435 Game, The 1997 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (69812,6,'NoaAkerman12','Decent tension, but not amazing',NULL); # 69812 Conspiracy Theory 1997 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (54209,6,'NoaAkerman12','Watchable thriller with some flaws',NULL); # 54209 Cape Fear 1991 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (94741,8,'NoaAkerman12','Keeps the tension going well',NULL); # 94741 Duel (1971/I) 1971 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (97727,9,'NoaAkerman12','Distinctive, emotional, and memorable',NULL); # 97727 Edward Scissorhands 1990 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (97360,8,'NoaAkerman12','Small-scale but emotionally effective',NULL); # 97360 Ed Wood 1994 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (120506,7,'NoaAkerman12','Keeps interest, even if uneven',NULL); # 120506 From Hell 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (47130,6,'NoaAkerman12','Dark and unusual film with strong atmosphere, but it was not fully easy to connect with',NULL); # 47130 Bringing Out the Dead 1999 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (112290,10,'NoaAkerman12','Really liked it, one of the most famous twists in film.',NULL); # 112290 Fight Club 1999 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (61751,10,'NoaAkerman12','Atmospheric, smart, and unforgettable',NULL); # 61751 Children of Men, The 2005 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (70959,8,'NoaAkerman12','Big-hearted and very watchable',NULL); # 70959 Corpse Bride, The 2005 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (65811,9,'NoaAkerman12','Smart sci-fi with strong atmosphere',NULL); # 65811 Close Encounters of the Third Kind 1977 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (67388,7,'NoaAkerman12','Decent watch, modest impact',NULL); # 67388 Color of Money, The 1986 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (85871,5,'NoaAkerman12','It has some fun moments, but it is not as exciting or polished as the stronger Bond movies.',NULL); # 85871 Diamonds Are Forever 1971 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (92573,8,'NoaAkerman12','Interesting because it is the first Bond movie, even if it feels old-fashioned.',NULL); # 92573 Dr. No 1962 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (120574,8,'NoaAkerman12','Classic Bond fun, polished and entertaining',NULL); # 120574 From Russia with Love 1963 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (117314,7,'NoaAkerman12','Solid Bond entertainment',NULL); # 117314 For Your Eyes Only 1981 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130953,7,'NoaAkerman12','Stylish Bond entry with good pace',NULL); # 130953 Goldfinger 1964 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130945,8,'NoaAkerman12','Classic Bond fun, polished and entertaining',NULL); # 130945 GoldenEye 1997 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (86263,6,'NoaAkerman12','Classic appeal, but less exciting',NULL); # 86263 Die Another Day 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (1390,6,'NoaAkerman12','Modest film, limited impact, feels too messy overall',NULL); # 1390 1941 1979 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (7842,9,'NoaAkerman12','Interesting, well made, and engaging',NULL); # 7842 After Hours 1985 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30686,10,'NoaAkerman12','Emotionally heavy and very well acted, it feels real and leaves a lasting impact',NULL); # 30686 Basketball Diaries, The 1995 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (15187,6,'NoaAkerman12','Has an unusual thriller style and some tension, but it is not fully memorable',NULL); # 15187 Amsterdamned 1988 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (20253,7,'NoaAkerman12','Creative and strange in a good way, though not always focused enough',NULL); # 20253 Arizona Dream 1993 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (28631,6,'NoaAkerman12','Has a nice idea and gentle tone, but it does not fully stand out',NULL); # 28631 Balloon 1991 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (56282,7,'NoaAkerman12','Interesting visual style, but the story leaves only a modest impression',NULL); # 56282 Cashback 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (65522,6,'NoaAkerman12','Decent tension, but not amazing',NULL); # 65522 Clearing, The 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (69469,8,'NoaAkerman12','Small-scale but emotionally effective',NULL); # 69469 Confidences trop intimes 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (80969,6,'NoaAkerman12','The concept is interesting, but the movie never becomes especially memorable.',NULL); # 80969 Dear God 1996 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (22651,5,'NoaAkerman12','The mystery is interesting at first and the cast is strong, but the story becomes confusing and less exciting as it goes on',NULL); # 22651 Astronaut's Wife, The 1999 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (58084,6,'NoaAkerman12','Has some interesting sci-fi ideas, but the story is not engaging enough',NULL); # 58084 Cerebrium 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (116556,8,'NoaAkerman12','Engaging thriller, clever and interesting',NULL); # 116556 Following 1998 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (121552,6,'NoaAkerman12','Simple and watchable, but it feels too small to leave a real impact',NULL); # 121552 Full Moon Rising 1996 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (113459,7,'NoaAkerman12','Interesting setup, mixed payoff',NULL); # 113459 Find Me Guilty 2005 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (14132,7,'NoaAkerman12','Funny in parts and easy to watch, even if it is not as strong as the first one.',NULL); # 14132 American Pie 2 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (109421,8,'NoaAkerman12','Fun action scenes and good energy',NULL); # 109421 Fast and the Furious, The 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (34077,8,'NoaAkerman12','Strong performances and real emotion',NULL); # 34077 Benjamin Button 2006 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (142491,7,'NoaAkerman12','It has cool visuals and an interesting main character, but it is not one of the strongest superhero movies',NULL); # 142491 Hellboy 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (46167,6,'NoaAkerman12','Serious movie, but it feels slower and less engaging than some of the other dramas',NULL); # 46167 Brave, The 1997 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (121852,6,'NoaAkerman12','Has a funny setup, but the humor does not stay strong throughout',NULL); # 121852 Funny Thing Happened at the Quick Mart, A 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (68065,6,'NoaAkerman12','A low-key film that keeps things simple but does not leave a strong impression',NULL); # 68065 Comfort Blanket 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (116358,6,'NoaAkerman12','The story is decent, but it never becomes especially emotional or memorable',NULL); # 116358 Focus 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (105851,6,'NoaAkerman12','Has some entertaining parts, but the tone feels uneven and not fully convincing',NULL); # 105851 Exit to Eden 1994 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (32180,10,'NoaAkerman12','Classic Disney story with beautiful music and a nostalgic feel',NULL); # 32180 Beauty and the Beast 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (849,7,'NoaAkerman12','Entertaining fun family movie',NULL); # 849 101 Dalmatians II: Patch's London Adventure 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (9813,7,'NoaAkerman12','Good action, a bit uneven',NULL); # 9813 Aladdin in Nasira's Revenge 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (70960,5,'NoaAkerman12','The mystery idea is fine, but the movie feels too slight overall',NULL); # 70960 Corpse Came C.O.D., The 1947 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (83470,6,'NoaAkerman12','Has tension, but feels slight',NULL); # 83470 Descent 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (78877,6,'NoaAkerman12','Some scenes are interesting, but the movie feels inconsistent',NULL); # 78877 Dark Mist, The 1996 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (89441,6,'NoaAkerman12','Interesting in concept, but the emotional side is not strong enough',NULL); # 89441 Doki-Doki 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (100241,7,'NoaAkerman12','Has a very interesting direction, but it does not develop into something very memorable',NULL); # 100241 En attendant la cigogne 1997 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (101687,6,'NoaAkerman12','A modest film with limited scope, so it does not leave much of an impact',NULL); # 101687 Enter Achilles 1996 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (102311,3,'NoaAkerman12','Nice basic idea, but the final result feels small and forgettable',NULL); # 102311 Era outra vez 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (103755,5,'NoaAkerman12','A few interesting moments, but not very memorable overall',NULL); # 103755 Espera, La 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (104484,3,'NoaAkerman12','There are a few decent scenes, but never fully comes together as a complete film',NULL); # 104484 Eu Adam 1996 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (105587,6,'NoaAkerman12','Interesting concept, but not enough happens to make it stand out',NULL); # 105587 Examen 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (110509,5,'NoaAkerman12','Has a few engaging moments, but overall it feels easy to forget',NULL); # 110509 Feel Neil 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (113814,5,'NoaAkerman12','Struggles to maintain interest despite having a few promising elements',NULL); # 113814 Fire Inside, The 1998 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (116829,4,'NoaAkerman12','Becomes harder to stay invested as it goes on. It has a few good moments, but overall it feels smaller and less memorable than stronger dramas',NULL); # 116829 Foot Shooting Party, The 1994 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (122277,6,'NoaAkerman12','The movie has some charm, but it does not leave a lasting impression',NULL); # 122277 Fyrsti aprl 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (126792,6,'NoaAkerman12','Has several solid moments, but the story is not memorable enough',NULL); # 126792 Geudeulmanui sesang 1996 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (134680,4,'NoaAkerman12','There are a few good moments, but overall it never becomes memorable enough to really stand out',NULL); # 134680 Group 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (138142,5,'NoaAkerman12','Focuses on an interesting direction, but doesn’t develop it strongly enough',NULL); # 138142 Hand of Fate 1999 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (142881,5,'NoaAkerman12','Even with a few emotional moments, the story feels too small to leave a strong impression overall',NULL); # 142881 Henry and Marvin 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (146758,7,'NoaAkerman12','Easy and fun to watch, even if not especially memorable',NULL); # 146758 Hit the Highway, Honey 1998 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (152856,4,'NoaAkerman12','Feels limited in scope, which makes the overall experience less impactful',NULL); # 152856 Hungry 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (63125,7,'NoaAkerman12','Cute and light, especially for holiday romance fans',NULL); # 63125 Christmas Tree and a Wedding, A 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (65602,5,'NoaAkerman12','Shows some potential, but doesn’t take it far enough to be memorable',NULL); # 65602 Click Three Times 1999 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (65762,5,'NoaAkerman12','It has an unusual concept and a few funny moments, but overall it feels too small and forgettable to really stand out',NULL); # 65762 Clockwork Maury, A 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (75646,6,'NoaAkerman12','Has a decent premise, but the execution feels a bit flat overall',NULL); # 75646 Custodial Code, The 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (79593,5,'NoaAkerman12','There are a few entertaining moments, but the movie feels uneven and never fully pulls you in',NULL); # 79593 David Nelson Live 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (79678,6,'NoaAkerman12','It is easy enough to watch, even if the story does not fully come together in the end',NULL); # 79678 Dawn of the Friend 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (82868,6,'NoaAkerman12','Interesting subject, but the film does not stand out strongly enough',NULL); # 82868 Denk ich an Deutschland - Wir haben vergessen zurckzukehren 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (85117,7,'NoaAkerman12','Strong atmosphere and engaging moments throughout, even if the pacing is a bit slow at times',NULL); # 85117 Devils Are Dreaming 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (86399,8,'NoaAkerman12','The historical setting and subject matter make it interesting',NULL); # 86399 Dieses Jahr in Czernowitz 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (89823,5,'NoaAkerman12','The atmosphere is strong, but the story feels a little distant, which makes it harder to fully connect to',NULL); # 89823 Domaine, Le 1999 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (93829,6,'NoaAkerman12','The movie has an unusual style and a few interesting scenes, but it feels too strange and uneven to really connect with',NULL); # 93829 Driving Fish 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (96193,5,'NoaAkerman12','There are a few good ideas and some nice atmosphere, but overall it feels too small to leave much of an impression',NULL); # 96193 Drive de l'Atlantic, La 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (99875,6,'NoaAkerman12','The story has some emotional potential, but it never becomes strong enough to really stand out',NULL); # 99875 Emigranti (2002/I) 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (104266,6,'NoaAkerman12','There are a few interesting scenes and a serious atmosphere, but the pacing feels too slow overall',NULL); # 104266 Etat 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (105697,6,'NoaAkerman12','The movie has a serious tone and a few good moments, but it is difficult to stay fully invested in the story',NULL); # 105697 Exec, The 2006 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (113547,6,'NoaAkerman12','The concept is funny and relatable, but the movie feels uneven and not as clever as it could have been',NULL); # 113547 Fine Line Between Cute and Creepy, The 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (114955,7,'NoaAkerman12','It has a fun summer atmosphere and an easy charm that makes it enjoyable to watch',NULL); # 114955 Flamingo Kid, The 1984 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (123371,6,'NoaAkerman12','There are a few entertaining moments, but the story feels too small and forgettable overall',NULL); # 123371 Game Day 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (129887,6,'NoaAkerman12','The sports theme is fun and there are a few enjoyable moments, but it never becomes memorable enough overall',NULL); # 129887 Goal Club 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (133608,5,'NoaAkerman12','The idea behind the movie is interesting, but the story feels too small and uneven to really stand out',NULL); # 133608 Great Gabble, The 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (137958,5,'NoaAkerman12','There are a few scenes with good energy, but overall the movie feels too uneven to stay interesting',NULL); # 137958 Hammer and Cycle 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (143582,6,'NoaAkerman12','The humor is unusual and there are some funny moments, but it is not something that stays with you afterward',NULL); # 143582 Here Comes Dr. Tran 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (146943,6,'NoaAkerman12','The idea has some potential, but the movie never becomes emotional or exciting enough to really work',NULL); # 146943 Hitting Zero 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (2057,5,'NoaAkerman12','There are a few emotional moments, but overall the story feels too small to leave a strong impression',NULL); # 2057 2wks, 1yr 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (2352,6,'NoaAkerman12','The movie has a few good moments, but it feels too limited and forgettable overall',NULL); # 2352 36K 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (2656,5,'NoaAkerman12','The western setting is interesting, but the movie never becomes exciting enough to stand out',NULL); # 2656 5 Card Stud 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (4948,6,'NoaAkerman12','There are a few interesting scenes, but the movie feels too quiet and not memorable enough overall',NULL); # 4948 Able's House Is Green, The 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (5889,6,'NoaAkerman12','It has a few charming moments, but overall it feels too dated to leave much of an impression',NULL); # 5889 Act Your Age 1939 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (8820,4,'NoaAkerman12','Leaves a mild impression, without building toward something more meaningful',NULL); # 8820 Ai-Fak 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (16730,6,'NoaAkerman12','Has a few nice moments, but overall it does not feel very distinctive',NULL); # 16730 Angel on My Shoulder 1997 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (19433,4,'NoaAkerman12','Some parts are decent, but the film feels too weak to be memorable',NULL); # 19433 Aquarium, L' 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (24235,5,'NoaAkerman12','The movie has an unusual tone and a few interesting character moments, but it never fully comes together',NULL); # 24235 Aunt Tiger 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (24259,6,'NoaAkerman12','Decent suspense, but the payoff is not strong enough',NULL); # 24259 Aura 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (28085,5,'NoaAkerman12','The movie has some dramatic potential, but it did not work well enough for me',NULL); # 28085 Bakit may kahapon pa? 1996 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (33965,6,'NoaAkerman12','The movie has a classic romantic style and some charming moments, but it feels a little too old-fashioned overall',NULL); # 33965 Bendita seas 1948 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (38743,6,'NoaAkerman12','The idea is promising, but the execution feels too plain',NULL); # 38743 Birthmark, The 1987 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (45377,5,'NoaAkerman12','Has a few interesting elements, but overall it feels average',NULL); # 45377 Boy 1997 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (50012,6,'NoaAkerman12','The family comedy style is fun in parts, but the humor feels too simple to really stay with you afterward',NULL); # 50012 Burning the Grump 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (51413,4,'NoaAkerman12','The concept is fine, but the movie feels too quiet to stand out',NULL); # 51413 C'est le vent 1997 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (54879,6,'NoaAkerman12','A few moments are entertaining, but the overall film is not very memorable',NULL); # 54879 Card Sharks (2001/II) 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (59656,6,'NoaAkerman12','Some moments work, but the movie does not build enough impact',NULL); # 59656 Charlie the Ox 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (60408,5,'NoaAkerman12','Interesting idea, but the movie feels underdeveloped',NULL); # 60408 Chek 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (70507,6,'NoaAkerman12','The movie has a softer emotional side, but the pacing makes it harder to stay fully invested',NULL); # 70507 Copi, je t'aime 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (74133,6,'NoaAkerman12','It has a serious tone and a few strong scenes, but the story feels a little too slow overall',NULL); # 74133 Crutch 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (78702,6,'NoaAkerman12','The road-trip idea is fun, but the movie feels uneven and not as funny as it could have been',NULL); # 78702 Dari Jemapoh ke Manchestee 1998 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (96681,5,'NoaAkerman12','There are a few amusing moments, but the humor is too random to really make the movie work',NULL); # 96681 Earl's Your Uncle 2004 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (99633,5,'NoaAkerman12','The atmosphere is interesting, but the plot feels too confusing to fully connect with',NULL); # 99633 Elysium 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (102108,8,'NoaAkerman12','Interesting topic, especially for fans of the franchise',NULL); # 102108 Epic at Sea: The Making of 'Pirates of the Caribbean: The Curse of the Black Pearl', An 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (137709,7,'NoaAkerman12','Enjoyable if you already like this type of movie',NULL); # 137709 Halo 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (400853,7,'NoaAkerman12','Fun cast and entertaining moments, even with flaws',NULL); # 400853 Parenthood 1990 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (406158,6,'NoaAkerman12','Entertaining action, but not one of the stronger entries',NULL); # 406158 Spider-Man 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (406411,7,'NoaAkerman12','It is fun to watch if you already enjoy Star Wars because it adds more action and background to the characters',NULL); # 406411 Star Wars: Clone Wars 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (121,7,'NoaAkerman12','Fun and nostalgic, even if a little uneven',NULL); # 121 'High Sign', The 1921 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (263,8,'NoaAkerman12','Light, romantic, and easy to watch',NULL); # 263 'Til There Was You 1997 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (370,6,'NoaAkerman12','Has some charm, but does not leave a strong impression',NULL); # 370 ...continuavano a chiamarlo Trinit 1972 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (517,4,'NoaAkerman12','Fine for fans of the franchise, but not essential',NULL); # 517 .hack//Quarantine 2003 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (675,6,'NoaAkerman12','The story has potential, but it does not become especially memorable',NULL); # 675 100 Days 1991 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (676,6,'NoaAkerman12','Has some meaningful moments, but overall it stays fairly forgettable',NULL); # 676 100 Days 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (818,6,'NoaAkerman12','Some parts are pleasant, but the film does not leave a strong impression',NULL); # 818 1000 Marys 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (837,8,'NoaAkerman12','Fun adventure that is easy to enjoy',NULL); # 837 1001 Nights 1998 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (870,6,'NoaAkerman12','Quirky and different, but not strong enough to fully stand out',NULL); # 870 101 Reykjavk 2000 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (878,4,'NoaAkerman12','Has a few decent moments, but it feels too ordinary overall',NULL); # 878 102 2001 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (952,5,'NoaAkerman12','The film has some good parts, but the overall effect is limited',NULL); # 952 11:00 AM 1999 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (1018,7,'NoaAkerman12','Interesting sci-fi idea, even if somewhat uneven',NULL); # 1018 12:01 1993 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (1024,7,'NoaAkerman12','The concept is interesting, but the movie does not fully deliver',NULL); # 1024 13 (1999/I) 1999 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (1046,6,'NoaAkerman12','Has an unusual atmosphere, but it is not very memorable overall',NULL); # 1046 13 Moons 2002 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (3634,6,'NoaAkerman12','Interesting subject, but not strong enough overall',NULL); # 3634 A&E Biography: Captain Bligh - Mutiny on the Bounty 1996 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (13343,7,'NoaAkerman12','Fun action scenes, even if uneven in parts',NULL); # 13343 Amazing Adventures of Spider-Man, The 1999 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (29760,5,'NoaAkerman12','Simple concept, but overall pretty forgettable',NULL); # 29760 Barbie Riding Club 1998 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (34306,7,'NoaAkerman12','Some scenes are enjoyable, but the movie does not feel very special',NULL); # 34306 Berlin Berlin 1998 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (45312,6,'NoaAkerman12','It has an interesting outlaw story and a rough older style, but it is harder to connect to the characters than in stronger crime dramas',NULL); # 45312 Boxcar Bertha 1972 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (53921,8,'NoaAkerman12','A clever and entertaining take on the film industry, with sharp humor and a fun concept',NULL); # 53921 Cannes Man 1996 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (58160,6,'NoaAkerman12','Some tension, but not enough to really stand out',NULL); # 58160 Certain Fury 1985 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (73574,5,'NoaAkerman12','Hard to stay interested in overall',NULL); # 73574 Critters 3 1991 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (79845,7,'NoaAkerman12','The western setting is interesting and there are a few tense moments',NULL); # 79845 Day of the Evil Gun 1968 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (92323,6,'NoaAkerman12','The idea is decent, but the result feels too generic',NULL); # 92323 Dozen Kliks, A 1998 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (103334,6,'NoaAkerman12','Has some tension, but the movie feels limited and forgettable',NULL); # 103334 Escape to Nowhere 1961 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (134675,7,'NoaAkerman12','Charming and easy to watch',NULL); # 134675 Grounds for Marriage 1951 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (379327,9,'NoaAkerman12','Pleasant watch with fun adventure energy',NULL); # 379327 Adventures of Robin Hood, The 1955 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (379331,6,'NoaAkerman12','Some mystery elements work, but it is not one of the stronger versions',NULL); # 379331 Adventures of Sherlock Holmes, The 1984 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (383395,7,'NoaAkerman12','Interesting to see an older version of Captain America with a classic comic-book feel',NULL); # 383395 Captain America 1966 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (397121,5,'NoaAkerman12','Some fun moments, but not as exciting or polished as the later Matrix movies',NULL); # 397121 Matrix 1993 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (399427,6,'NoaAkerman12','The concept is interesting, but the overall result feels inconsistent',NULL); # 399427 Night Gallery 1970 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (405119,6,'NoaAkerman12','Classic detective idea, but this version does not feel especially strong',NULL); # 405119 Sherlock Holmes 1951 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (391453,5,'NoaAkerman12','Interesting idea, but less effective in practice',NULL); # 391453 Herndon 1983 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (108,4,'NoaAkerman12','Feels very dated, with weak pacing and not much to hold interest',NULL); # 108 'G' Men 1935 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (450,5,'NoaAkerman12','The setup creates some tension and the cast is solid, but the movie moves a little too slowly overall',NULL); # 450 ...tick...tick...tick... 1970 +insert into personal_movies_ranking (`movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (672,6,'NoaAkerman12','Has a few interesting moments, but the movie does not leave a strong final impact',NULL); # 672 100 aos de perdn 1998 insert into personal_movies_ranking(movie_id, recommendation, suggested_by, justification, comment) values (46878, 7, 'Lior', 'The awkward situations and Bridget’s romantic struggles are relatable, even if it is not as strong as the first movie.', null); -- Bridget Jones: The Edge of Reason 2004 insert into personal_movies_ranking(movie_id, recommendation, suggested_by, justification, comment) values (66194, 9, 'Lior', 'The light romantic storyline and Cher’s character make it fun, easy to watch, and very memorable.', null); -- Clueless 1995 diff --git a/liagolding_movie_ranking.sql b/recommendations_goldstandard/collaborative_filtering/rating/liagolding_movie_ranking.sql similarity index 100% rename from liagolding_movie_ranking.sql rename to recommendations_goldstandard/collaborative_filtering/rating/liagolding_movie_ranking.sql diff --git a/recommendations_goldstandard/collaborative_filtering/rating/yaron_personal_movies_ranking.sql b/recommendations_goldstandard/collaborative_filtering/rating/yaron_personal_movies_ranking.sql index 659f3e7d..55f54d8c 100644 --- a/recommendations_goldstandard/collaborative_filtering/rating/yaron_personal_movies_ranking.sql +++ b/recommendations_goldstandard/collaborative_filtering/rating/yaron_personal_movies_ranking.sql @@ -1,8 +1,3 @@ --- Yaron's Personal Movie Rankings --- Format: movie_id, recommendation (1-10), suggested_by, justification, comment --- Built interactively based on stated preferences --- Comment field: 'Seen' = personally watched | 'Not seen - inferred from genre preference' = scored by taste fit - insert into personal_movies_ranking(movie_id, recommendation, suggested_by, justification, comment) values (311037, 9, 'Yaron', 'Childhood-defining film and the start of a superhero journey; Green Goblin and the origin story made this a personal classic.', 'Seen'); -- Spider-Man 2002 diff --git a/recommendations_goldstandard/recommendations/LiorSheiner_movie_pairs_ranking.sql b/recommendations_goldstandard/recommendations/2026/LiorSheiner_movie_pairs_ranking.sql similarity index 100% rename from recommendations_goldstandard/recommendations/LiorSheiner_movie_pairs_ranking.sql rename to recommendations_goldstandard/recommendations/2026/LiorSheiner_movie_pairs_ranking.sql diff --git a/recommendations_goldstandard/recommendations/2026/MatanDanOn_movie_pairs_ranking.sql b/recommendations_goldstandard/recommendations/2026/MatanDanOn_movie_pairs_ranking.sql new file mode 100644 index 00000000..97a4898f --- /dev/null +++ b/recommendations_goldstandard/recommendations/2026/MatanDanOn_movie_pairs_ranking.sql @@ -0,0 +1,1999 @@ +insert into imdb_ijs.movies_recommendations +values ( + 32178, -- 32178 beauty and the beast 1991 + 191246, -- 191246 lion king, the 1994 + 10, + 'matan dan on', + 'both are disney animated musicals where memorable songs, family stakes, and a polished emotional arc make the fantasy feel complete', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 9795, -- 9795 aladdin 1992 + 143526, -- 143526 hercules 1997 + 9, + 'matan dan on', + 'both turn mythology into bright comic animation, mixing big musical numbers, sarcastic side characters, and a heroic coming-of-age story', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 192017, -- 192017 little mermaid, the 1989 + 32178, -- 32178 beauty and the beast 1991 + 9, + 'matan dan on', + 'both are renaissance-era disney fairy tales with strong songs, expressive animation, and romantic longing tied to a larger identity change', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 191246, -- 191246 lion king, the 1994 + 325098, -- 325098 tarzan 1999 + 9, + 'matan dan on', + 'both use animal-centered adventure, sweeping music, and a child growing into responsibility to make the emotional journey feel large', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 222112, -- 222112 mulan 1998 + 152724, -- 152724 hunchback of notre dame, the 1996 + 8, + 'matan dan on', + 'both are darker disney adventures with outsiders, moral pressure, and unusually dramatic action for animated family films', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 143526, -- 143526 hercules 1997 + 300229, -- 300229 shrek 2001 + 8, + 'matan dan on', + 'both remix familiar legends with modern jokes, energetic sidekicks, and a self-aware tone that still keeps a real romantic center', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 300229, -- 300229 shrek 2001 + 264146, -- 264146 princess bride, the 1987 + 10, + 'matan dan on', + 'both work as fairy-tale adventures because the jokes, romance, swordplay, and sincere friendship all support each other', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 300230, -- 300230 shrek 2 2004 + 264146, -- 264146 princess bride, the 1987 + 10, + 'matan dan on', + 'both balance parody with real heart, using quotable comedy, rescue missions, and romantic loyalty without losing momentum', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 272644, -- 272644 ratatouille 2006 + 113504, -- 113504 finding nemo 2003 + 10, + 'matan dan on', + 'both are pixar stories where a gorgeous world, a precise comic setup, and a tender family theme make the adventure feel personal', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 272644, -- 272644 ratatouille 2006 + 218415, -- 218415 monsters, inc. 2001 + 9, + 'matan dan on', + 'both build a clever workplace world around nonhuman characters, then turn the comic machinery into a warm friendship story', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 337166, -- 337166 toy story 1995 + 218415, -- 218415 monsters, inc. 2001 + 9, + 'matan dan on', + 'both take a childhood concept seriously, pairing inventive world rules with jealousy, fear, and a friendship that becomes the real hook', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 337168, -- 337168 toy story 2 1999 + 113504, -- 113504 finding nemo 2003 + 9, + 'matan dan on', + 'both expand a colorful animated world while keeping the emotional focus on separation, loyalty, and finding the way back home', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 158927, -- 158927 incredibles, the 2004 + 369458, -- 369458 x-men 2000 + 8, + 'matan dan on', + 'both make superhero spectacle work through team tension, hidden identities, and family or found-family conflict instead of action alone', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 162352, -- 162352 iron giant, the 1999 + 96593, -- 96593 e.t. the extra-terrestrial 1982 + 10, + 'matan dan on', + 'both are gentle science-fiction friendships between a lonely child and a powerful outsider, with emotion built around protection and goodbye', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 335380, -- 335380 tonari no totoro 1988 + 201302, -- 201302 majo no takkybin 1989 + 10, + 'matan dan on', + 'both are calm ghibli fantasies about young people gaining confidence, with everyday routines, flight, and comfort placed ahead of villain conflict', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 294028, -- 294028 sen to chihiro no kamikakushi 2001 + 140221, -- 140221 hauru no ugoku shiro 2004 + 10, + 'matan dan on', + 'both create dense magical worlds with anti-war feeling, strange creatures, and a heroine whose compassion matters as much as courage', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 140221, -- 140221 hauru no ugoku shiro 2004 + 201302, -- 201302 majo no takkybin 1989 + 9, + 'matan dan on', + 'both mix flight, independence, and soft magical romance while keeping the fantasy grounded in work, homes, and daily responsibility', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 201302, -- 201302 majo no takkybin 1989 + 206881, -- 206881 mary poppins 1964 + 8, + 'matan dan on', + 'both follow a magical young woman entering a household world, using songs or flight to make care work feel joyful and cinematic', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 294028, -- 294028 sen to chihiro no kamikakushi 2001 + 367073, -- 367073 wizard of oz, the 1939 + 9, + 'matan dan on', + 'both send a young girl into a surreal fantasy land where visual invention, strange helpers, and a journey home carry the emotion', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 367073, -- 367073 wizard of oz, the 1939 + 206881, -- 206881 mary poppins 1964 + 9, + 'matan dan on', + 'both are classic family musicals where fantasy enters ordinary life through iconic songs, practical wonder, and a reassuring lead presence', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 302696, -- 302696 singin' in the rain 1952 + 309634, -- 309634 sound of music, the 1965 + 9, + 'matan dan on', + 'both are large-hearted musical classics whose songs, choreography, and warm star performances make the long-form entertainment feel effortless', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 206881, -- 206881 mary poppins 1964 + 309634, -- 309634 sound of music, the 1965 + 10, + 'matan dan on', + 'both rely on julie andrews, family warmth, and disciplined musical set pieces that turn strict households into places of imagination', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 133401, -- 133401 grease 1978 + 360723, -- 360723 wedding singer, the 1998 + 8, + 'matan dan on', + 'both are nostalgic romantic musicals with catchy performances, school-or-stage energy, and comedy built around social performance', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 66194, -- 66194 clueless 1995 + 209133, -- 209133 mean girls 2004 + 10, + 'matan dan on', + 'both are sharp high-school comedies where social rules, fashion, slang, and a flawed but sympathetic heroine drive the satire', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 644, -- 644 10 things i hate about you 1999 + 209133, -- 209133 mean girls 2004 + 9, + 'matan dan on', + 'both update teen romance through fast dialogue, school politics, and characters who are funnier because they know the hierarchy around them', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 187191, -- 187191 legally blonde 2001 + 84941, -- 84941 devil wears white, the 1986 + 9, + 'matan dan on', + 'both follow underestimated women learning to win inside elite professional worlds through style, preparation, and surprising resilience', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 264158, -- 264158 princess diaries, the 2001 + 187191, -- 187191 legally blonde 2001 + 9, + 'matan dan on', + 'both are optimistic early-2000s comedies about awkward young women gaining confidence without losing their kindness or personality', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 248878, -- 248878 parent trap, the 1998 + 1038, -- 1038 13 going on 30 2004 + 8, + 'matan dan on', + 'both turn a wish-fulfillment premise into a sweet identity comedy, using family longing, female leads, and 90s-to-2000s comfort energy', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 263360, -- 263360 pretty woman 1990 + 235790, -- 235790 notting hill 1999 + 9, + 'matan dan on', + 'both are star-driven romantic comedies about class or fame barriers, with gentle humor and chemistry carrying the fairy-tale structure', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 362808, -- 362808 when harry met sally... 1989 + 372372, -- 372372 you've got mail 1998 + 9, + 'matan dan on', + 'both are nora ephron-style romances where friendship, timing, witty conversation, and new york texture matter more than plot mechanics', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 304829, -- 304829 sleepless in seattle 1993 + 372372, -- 372372 you've got mail 1998 + 8, + 'matan dan on', + 'both are warm 90s romances built around distance, letters or media, and the comfort of two people slowly recognizing the right match', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 118393, -- 118393 four weddings and a funeral 1994 + 235790, -- 235790 notting hill 1999 + 8, + 'matan dan on', + 'both use british romantic comedy timing, ensemble friends, and public-event chaos to make an unlikely relationship feel charming', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 195300, -- 195300 love actually 2003 + 118393, -- 118393 four weddings and a funeral 1994 + 8, + 'matan dan on', + 'both are british ensemble romances where weddings, friendship groups, and bittersweet missed timing create the emotional pattern', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 360723, -- 360723 wedding singer, the 1998 + 1038, -- 1038 13 going on 30 2004 + 8, + 'matan dan on', + 'both are bright nostalgia comedies with music, romantic embarrassment, and a soft belief that growing up can still be playful', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 215507, -- 215507 miss congeniality 2000 + 187191, -- 187191 legally blonde 2001 + 8, + 'matan dan on', + 'both turn underestimated women into crowd-pleasing comic heroes through makeover expectations, professional tests, and sincere confidence', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 223711, -- 223711 my best friend's wedding 1997 + 263360, -- 263360 pretty woman 1990 + 8, + 'matan dan on', + 'both lean on julia roberts charm, romantic complication, and a mainstream comic rhythm that keeps messy choices watchable', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 68232, -- 68232 coming to america 1988 + 35522, -- 35522 beverly hills cop 1984 + 9, + 'matan dan on', + 'both use eddie murphy as the engine for fish-out-of-water comedy, mixing fast talk, culture clashes, and a very quotable 80s style', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 16006, -- 16006 anchorman: the legend of ron burgundy 2004 + 375827, -- 375827 zoolander 2001 + 9, + 'matan dan on', + 'both are absurd comedies about vain professional worlds, with committed performances, ridiculous status games, and dialogue built to be quoted', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 89057, -- 89057 dodgeball: a true underdog story 2004 + 375827, -- 375827 zoolander 2001 + 8, + 'matan dan on', + 'both make a silly competition world feel funny through exaggerated villains, underdog confidence, and performers treating nonsense seriously', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 189233, -- 189233 liar liar 1997 + 207157, -- 207157 mask, the 1994 + 8, + 'matan dan on', + 'both showcase jim carrey physical comedy, but also give the chaos a clear wish-fulfillment hook and a tight moral lesson', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 207157, -- 207157 mask, the 1994 + 95078, -- 95078 dumb & dumber 1994 + 8, + 'matan dan on', + 'both are 90s comedy showcases where broad facial acting, cartoon logic, and escalating stupidity become the main entertainment', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 290378, -- 290378 school of rock, the 2003 + 221259, -- 221259 mrs. doubtfire 1993 + 8, + 'matan dan on', + 'both use a comic adult pretending or performing inside a family space, then turn the deception into genuine care for children', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 36694, -- 36694 big 1988 + 1038, -- 1038 13 going on 30 2004 + 9, + 'matan dan on', + 'both are age-swap fantasies where the joke works because the lead keeps a child''s sincerity inside an adult world', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 134672, -- 134672 groundhog day 1993 + 340901, -- 340901 truman show, the 1998 + 9, + 'matan dan on', + 'both start as clever comic premises and slowly become thoughtful stories about routine, performance, and choosing a more honest life', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 340901, -- 340901 truman show, the 1998 + 104338, -- 104338 eternal sunshine of the spotless mind 2004 + 10, + 'matan dan on', + 'both are high-concept dramas about reality and identity, using inventive structure to make romance and personal freedom feel painful', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 104338, -- 104338 eternal sunshine of the spotless mind 2004 + 210511, -- 210511 memento 2000 + 9, + 'matan dan on', + 'both use fractured memory as the story engine, turning love, grief, and self-deception into puzzles the viewer has to assemble', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 210511, -- 210511 memento 2000 + 112290, -- 112290 fight club 1999 + 9, + 'matan dan on', + 'both are twisty identity stories with unreliable narration, masculine crisis, and editing choices that make confusion part of the design', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 291698, -- 291698 se7en 1995 + 301540, -- 301540 silence of the lambs, the 1991 + 10, + 'matan dan on', + 'both are tense serial-killer investigations where atmosphere, moral pressure, and the villain''s intelligence matter as much as the crime plot', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 348944, -- 348944 usual suspects, the 1995 + 276217, -- 276217 reservoir dogs 1992 + 9, + 'matan dan on', + 'both are crime ensembles built around talk, suspicion, and shifting power, with the final shape changing how earlier scenes read', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 131780, -- 131780 goodfellas 1990 + 130128, -- 130128 godfather, the 1972 + 10, + 'matan dan on', + 'both are major mafia dramas where family loyalty, violence, and social ambition are inseparable from the characters'' moral decline', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 130128, -- 130128 godfather, the 1972 + 130129, -- 130129 godfather: part ii, the 1974 + 10, + 'matan dan on', + 'as a direct continuation, the sequel deepens the family politics, parallel histories, and tragic isolation that made the first film powerful', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 289558, -- 289558 scarface 1983 + 131780, -- 131780 goodfellas 1990 + 9, + 'matan dan on', + 'both follow criminal rise-and-fall stories through status, violence, and excess, but keep the personality of the lead dangerously magnetic', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 267038, -- 267038 pulp fiction 1994 + 276217, -- 276217 reservoir dogs 1992 + 10, + 'matan dan on', + 'both are tarantino crime films where sharp dialogue, nonlinear tension, pop-culture humor, and sudden violence all feel controlled', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 56871, -- 56871 catch me if you can 2002 + 18979, -- 18979 apollo 13 1995 + 8, + 'matan dan on', + 'both are polished fact-based crowd-pleasers where procedural detail, period texture, and tom hanks steadiness make the stakes easy to follow', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 289109, -- 289109 saving private ryan 1998 + 290070, -- 290070 schindler's list 1993 + 10, + 'matan dan on', + 'both are spielberg war films that combine technical control, moral seriousness, and devastating human cost without feeling hollow', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 139657, -- 139657 harry potter and the sorcerer's stone 2001 + 194497, -- 194497 lord of the rings: the fellowship of the ring, the 2001 + 9, + 'matan dan on', + 'both launch beloved fantasy worlds through friendship, mythic objects, danger beyond the school or village, and a strong sense of discovery', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 139652, -- 139652 harry potter and the goblet of fire 2005 + 194502, -- 194502 lord of the rings: the two towers, the 2002 + 9, + 'matan dan on', + 'both are darker middle chapters where the world grows more dangerous, parallel storylines expand, and young heroes face public consequences', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 139650, -- 139650 harry potter and the chamber of secrets 2002 + 294028, -- 294028 sen to chihiro no kamikakushi 2001 + 8, + 'matan dan on', + 'both follow children through hidden magical spaces full of rules, creatures, and mystery, with wonder balanced by real danger', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 139655, -- 139655 harry potter and the prisoner of azkaban 2004 + 140221, -- 140221 hauru no ugoku shiro 2004 + 8, + 'matan dan on', + 'both make fantasy feel more mature through shifting identities, time or transformation, and a visual style darker than the entry before it', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 297838, -- 297838 shawshank redemption, the 1994 + 134077, -- 134077 green mile, the 1999 + 10, + 'matan dan on', + 'both are emotional prison dramas adapted from stephen king, using patience, friendship, and moral endurance rather than cheap twists', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 80583, -- 80583 dead poets society 1989 + 290378, -- 290378 school of rock, the 2003 + 9, + 'matan dan on', + 'both are teacher-student stories where performance, confidence, and rebellion against rigid institutions make inspiration feel earned', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 80583, -- 80583 dead poets society 1989 + 46322, -- 46322 breakfast club, the 1985 + 9, + 'matan dan on', + 'both focus on young people under social pressure, using group dynamics and honest conversations to argue for individuality', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 46322, -- 46322 breakfast club, the 1985 + 111442, -- 111442 ferris bueller's day off 1986 + 9, + 'matan dan on', + 'both are iconic 80s teen films that understand school as a performance space, mixing rebellion, humor, and surprising emotional clarity', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 644, -- 644 10 things i hate about you 1999 + 111442, -- 111442 ferris bueller's day off 1986 + 8, + 'matan dan on', + 'both turn school-day rebellion into comedy through sharp personalities, confident pacing, and teenagers who seem smarter than the adults', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 148200, -- 148200 home alone 1990 + 221259, -- 221259 mrs. doubtfire 1993 + 8, + 'matan dan on', + 'both are 90s family comedies where domestic chaos, disguise or traps, and a warm ending keep the broad humor lovable', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 170522, -- 170522 jumanji 1995 + 131885, -- 131885 goonies, the 1985 + 9, + 'matan dan on', + 'both are kid-centered adventures where group panic, practical danger, and a magical or treasure-hunt premise create nonstop momentum', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 131885, -- 131885 goonies, the 1985 + 264146, -- 264146 princess bride, the 1987 + 8, + 'matan dan on', + 'both are 80s adventure comedies with rescue missions, quotable side characters, and a playful tone that still protects the emotional stakes', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 365906, -- 365906 willy wonka & the chocolate factory 1971 + 59578, -- 59578 charlie and the chocolate factory 2005 + 8, + 'matan dan on', + 'both visit the wonka factory through moral tests, strange production design, and childlike imagination, even though the older film has more warmth', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 207828, -- 207828 matilda 1996 + 365906, -- 365906 willy wonka & the chocolate factory 1971 + 9, + 'matan dan on', + 'both adapt roald dahl through clever children, cruel adults, dark humor, and a fantasy of justice that feels mischievous rather than mean', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 6249, -- 6249 addams family, the 1991 + 97727, -- 97727 edward scissorhands 1990 + 9, + 'matan dan on', + 'both make gothic outsiders lovable by mixing suburban satire, deadpan humor, visual weirdness, and genuine affection for misfits', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 97727, -- 97727 edward scissorhands 1990 + 37057, -- 37057 big fish 2003 + 9, + 'matan dan on', + 'both are tim burton fairy tales where stylized color, gentle outsiders, and family longing turn exaggeration into emotion', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 232425, -- 232425 nightmare before christmas, the 1993 + 70959, -- 70959 corpse bride, the 2005 + 9, + 'matan dan on', + 'both are gothic stop-motion musicals with romantic melancholy, skeletal humor, and handmade visual detail that gives the sadness charm', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 70959, -- 70959 corpse bride, the 2005 + 6249, -- 6249 addams family, the 1991 + 8, + 'matan dan on', + 'both treat macabre family worlds as affectionate comedies, using dark design, dry jokes, and romance without making the tone cruel', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 61291, -- 61291 chicken run 2000 + 48950, -- 48950 bug's life, a 1998 + 9, + 'matan dan on', + 'both are animated underdog stories about tiny communities organizing against stronger forces, with ensemble comedy and inventive world scale', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 26064, -- 26064 babe 1995 + 61291, -- 61291 chicken run 2000 + 8, + 'matan dan on', + 'both are farm-animal stories where kindness, escape, and group cooperation make the comic premise feel unexpectedly sincere', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 364161, -- 364161 who framed roger rabbit 1988 + 207157, -- 207157 mask, the 1994 + 8, + 'matan dan on', + 'both mix live action with cartoon physics, giving broad comedy a noir or superhero-ish plot that keeps the visual chaos readable', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 256632, -- 256632 pirates of the caribbean: the curse of the black pearl 2003 + 264146, -- 264146 princess bride, the 1987 + 9, + 'matan dan on', + 'both are swashbuckling adventure comedies with swordplay, romance, memorable supporting characters, and a light touch with danger', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 194497, -- 194497 lord of the rings: the fellowship of the ring, the 2001 + 313459, -- 313459 star wars 1977 + 9, + 'matan dan on', + 'both begin mythic adventure trilogies with clear world-building, loyal companions, and a simple moral battle that still feels huge', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 194502, -- 194502 lord of the rings: the two towers, the 2002 + 313478, -- 313478 star wars: episode v - the empire strikes back 1980 + 10, + 'matan dan on', + 'both are darker second chapters where heroes are separated, losses feel real, and the middle entry becomes the dramatic high point', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 194500, -- 194500 lord of the rings: the return of the king, the 2003 + 313479, -- 313479 star wars: episode vi - return of the jedi 1983 + 9, + 'matan dan on', + 'both close epic trilogies through large battles, redemption, and emotional farewells, even when the finale has many moving parts', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 271095, -- 271095 raiders of the lost ark 1981 + 159172, -- 159172 indiana jones and the last crusade 1989 + 9, + 'matan dan on', + 'both are indiana jones adventures where archaeology, family banter, practical stunts, and chase momentum make the pulp formula sing', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 271095, -- 271095 raiders of the lost ark 1981 + 256632, -- 256632 pirates of the caribbean: the curse of the black pearl 2003 + 9, + 'matan dan on', + 'both are treasure-hunting adventures driven by set pieces, humor, artifacts, and a lead whose confidence keeps danger fun', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 26844, -- 26844 back to the future 1985 + 134672, -- 134672 groundhog day 1993 + 10, + 'matan dan on', + 'both are high-concept comedies where time rules create jokes first, then reveal a sincere lesson about becoming less selfish', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 26846, -- 26846 back to the future part ii 1989 + 342384, -- 342384 twelve monkeys 1995 + 8, + 'matan dan on', + 'both use messy timelines and future consequences, rewarding viewers who enjoy paradoxes, warnings, and stories that loop back on themselves', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 328285, -- 328285 terminator, the 1984 + 207992, -- 207992 matrix, the 1999 + 10, + 'matan dan on', + 'both combine machine-threat science fiction with stylish action, paranoia about control, and a hero waking up to a hidden system', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 328277, -- 328277 terminator 2: judgment day 1991 + 10920, -- 10920 aliens 1986 + 10, + 'matan dan on', + 'both are james cameron sequels that turn lean sci-fi horror into muscular action while adding protective family bonds', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 10830, -- 10830 alien 1979 + 262645, -- 262645 predator 1987 + 9, + 'matan dan on', + 'both are survival stories about a small group hunted by a nearly unstoppable creature, using tension, body horror, and tactical fear', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 10830, -- 10830 alien 1979 + 165961, -- 165961 jaws 1975 + 9, + 'matan dan on', + 'both make an unseen predator terrifying through tight pacing, limited safe spaces, and ordinary professionals slowly realizing they are outmatched', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 10920, -- 10920 aliens 1986 + 262645, -- 262645 predator 1987 + 9, + 'matan dan on', + 'both are 80s creature-action films where armed teams, macho confidence, and hostile environments collapse under a smarter monster', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 86274, -- 86274 die hard 1988 + 310726, -- 310726 speed 1994 + 10, + 'matan dan on', + 'both are cleanly contained action thrillers where a simple physical constraint, quick decisions, and charismatic leads keep the pressure constant', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 86287, -- 86287 die hard: with a vengeance 1995 + 188507, -- 188507 lethal weapon 1987 + 8, + 'matan dan on', + 'both are buddy-action films where banter, urban danger, and personal grudges make the explosions feel attached to character chemistry', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 188507, -- 188507 lethal weapon 1987 + 35522, -- 35522 beverly hills cop 1984 + 8, + 'matan dan on', + 'both are 80s cop movies that mix action with comedy, using personality clashes, fast dialogue, and a loose soundtrack-driven rhythm', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 46169, -- 46169 braveheart 1995 + 289109, -- 289109 saving private ryan 1998 + 9, + 'matan dan on', + 'both turn war violence into stories of leadership, sacrifice, and moral purpose, with battle scenes that feel physically punishing', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 129185, -- 129185 gladiator 2000 + 194500, -- 194500 lord of the rings: the return of the king, the 2003 + 8, + 'matan dan on', + 'both deliver grand battle spectacle while tying the fighting to loyalty, sacrifice, and a leader trying to earn a better world', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 311037, -- 311037 spider-man 2002 + 319602, -- 319602 superman 1978 + 9, + 'matan dan on', + 'both are sincere superhero origins where responsibility, romance, and a fundamentally decent hero matter more than cynicism', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 311038, -- 311038 spider-man 2 2004 + 30959, -- 30959 batman begins 2005 + 9, + 'matan dan on', + 'both strengthen superhero drama by making the hero''s personal burden, city responsibility, and villain psychology feel grounded', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 369458, -- 369458 x-men 2000 + 345690, -- 345690 unbreakable 2000 + 8, + 'matan dan on', + 'both treat superpowers as identity problems, using fear, isolation, and prejudice to give the comic-book premise human weight', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 369486, -- 369486 x2 2003 + 311038, -- 311038 spider-man 2 2004 + 9, + 'matan dan on', + 'both are early-2000s superhero sequels that improve the action while making the hero''s personal cost sharper', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 210739, -- 210739 men in black 1997 + 112205, -- 112205 fifth element, the 1997 + 9, + 'matan dan on', + 'both are colorful 90s sci-fi adventures where weird alien bureaucracy, comic timing, and oddball production design keep the world playful', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 69895, -- 69895 contact 1997 + 96593, -- 96593 e.t. the extra-terrestrial 1982 + 9, + 'matan dan on', + 'both approach alien contact through wonder and human emotion, favoring curiosity, communication, and awe over simple invasion spectacle', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 300229, -- 300229 shrek 2001 + 300232, -- 300232 shrek 3 2006 + 5, + 'matan dan on', + 'though both movies are a direct series match, it is a bad recommendation since the weaker parody, thinner new characters, and recycled fairy-tale jokes make it a much less satisfying recommendation', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 300230, -- 300230 shrek 2 2004 + 300232, -- 300232 shrek 3 2006 + 5, + 'matan dan on', + 'though both movies are connected by characters and a world that continue naturally, it is a bad recommendation since the third film loses the sequel''s sharp comic timing and turns the royal story into routine franchise filler', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 130128, -- 130128 godfather, the 1972 + 130130, -- 130130 godfather: part iii, the 1990 + 5, + 'matan dan on', + 'though both movies are connected by a family legacy and mafia politics that are relevant, it is a bad recommendation since the third film''s uneven pacing and softer dramatic control fall far below the original', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 130129, -- 130129 godfather: part ii, the 1974 + 130130, -- 130130 godfather: part iii, the 1990 + 5, + 'matan dan on', + 'though both movies are extensions of michael''s tragic arc, it is a bad recommendation since the final chapter is too uneven in performance and momentum to match the ambition of part ii', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 313459, -- 313459 star wars 1977 + 313474, -- 313474 star wars: episode i - the phantom menace 1999 + 4, + 'matan dan on', + 'though both movies are connected by jedi lore, space politics, and franchise mythology, it is a bad recommendation since the stiff dialogue and trade plot make it a weak follow-up for this taste profile', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 313478, -- 313478 star wars: episode v - the empire strikes back 1980 + 313476, -- 313476 star wars: episode ii - attack of the clones 2002 + 4, + 'matan dan on', + 'though both movies are set inside the same saga and deal with anakin''s path, it is a bad recommendation since the romance writing and flat tension make attack of the clones a poor match', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 313479, -- 313479 star wars: episode vi - return of the jedi 1983 + 313474, -- 313474 star wars: episode i - the phantom menace 1999 + 4, + 'matan dan on', + 'though both movies are connected by family mythology, it is a bad recommendation since the prequel''s comic side characters and procedural politics miss the clean adventure feeling of the original trilogy', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 313477, -- 313477 star wars: episode iii - revenge of the sith 2005 + 313476, -- 313476 star wars: episode ii - attack of the clones 2002 + 5, + 'matan dan on', + 'though both movies are adjacent prequels, it is a bad recommendation since the second episode has far less tragic momentum and much more awkward romantic dialogue', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 328285, -- 328285 terminator, the 1984 + 328281, -- 328281 terminator 3: rise of the machines 2003 + 4, + 'matan dan on', + 'though both movies are connected by machines, chase structure, and a future-war premise, it is a bad recommendation since the third film feels mechanical without the dread of the original', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 328277, -- 328277 terminator 2: judgment day 1991 + 328281, -- 328281 terminator 3: rise of the machines 2003 + 4, + 'matan dan on', + 'though both movies are connected because they follow the same protector-and-terminator formula, it is a bad recommendation since the emotional stakes and action invention are much weaker than judgment day', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 10830, -- 10830 alien 1979 + 10916, -- 10916 alien: resurrection 1997 + 3, + 'matan dan on', + 'though both movies are connected by the alien lifecycle and franchise setting, it is a bad recommendation since resurrection turns tight horror into messy exaggeration and loses the original''s control', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 10920, -- 10920 aliens 1986 + 10916, -- 10916 alien: resurrection 1997 + 3, + 'matan dan on', + 'though both movies are continuations of ripley''s story with xenomorph action, it is a bad recommendation since resurrection lacks the military clarity, suspense, and emotional family stakes that made aliens work', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 30959, -- 30959 batman begins 2005 + 30952, -- 30952 batman & robin 1997 + 2, + 'matan dan on', + 'though both movies are connected by batman branding and shared villain spectacle, it is a bad recommendation since the toy-like camp, constant puns, and flat character work make it a bad recommendation', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 30955, -- 30955 batman 1989 + 30965, -- 30965 batman forever 1995 + 3, + 'matan dan on', + 'though both movies are colorful batman entries with theatrical villains, it is a bad recommendation since the neon style and shouting performances are much less coherent than burton''s gotham', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 30955, -- 30955 batman 1989 + 30952, -- 30952 batman & robin 1997 + 2, + 'matan dan on', + 'though both movies are based on famous villains and a stylized gotham, it is a bad recommendation since batman and robin pushes the camp so far that the character drama nearly disappears', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 30959, -- 30959 batman begins 2005 + 30967, -- 30967 batman returns 1992 + 4, + 'matan dan on', + 'though both movies are set in dark batman worlds, it is a bad recommendation since returns is so focused on grotesque villain spectacle that bruce wayne feels sidelined', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 311037, -- 311037 spider-man 2002 + 57064, -- 57064 catwoman 2004 + 1, + 'matan dan on', + 'though both movies are comic-book films about a masked hero balancing identity and action, it is a bad recommendation since catwoman''s plot logic and editing make the comparison collapse', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 311038, -- 311038 spider-man 2 2004 + 152426, -- 152426 hulk 2003 + 5, + 'matan dan on', + 'though both movies are early-2000s marvel films about lonely heroes, it is a bad recommendation since hulk''s slow pacing and uneven effects make it only a neutral false positive', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 369458, -- 369458 x-men 2000 + 57064, -- 57064 catwoman 2004 + 2, + 'matan dan on', + 'though both movies are connected by the superhero outsider angle, it is a bad recommendation since catwoman has none of x-men''s ensemble tension or social metaphor strength', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 319602, -- 319602 superman 1978 + 57064, -- 57064 catwoman 2004 + 2, + 'matan dan on', + 'though both movies are superhero star vehicles with transformation scenes, it is a bad recommendation since catwoman lacks the warmth, clarity, and noble center that make superman work', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 210739, -- 210739 men in black 1997 + 210741, -- 210741 men in black ii 2002 + 5, + 'matan dan on', + 'though both movies are connected by the returning agents and alien-comedy premise, it is a bad recommendation since the sequel feels smaller, less surprising, and more like a repeat than a fresh discovery', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 165961, -- 165961 jaws 1975 + 165976, -- 165976 jaws: the revenge 1987 + 1, + 'matan dan on', + 'though both movies are connected by the shark threat and franchise name, it is a bad recommendation since the revenge premise removes the suspense that made jaws effective', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 96593, -- 96593 e.t. the extra-terrestrial 1982 + 359297, -- 359297 war of the worlds 2005 + 5, + 'matan dan on', + 'though both movies are stories involving ordinary families facing aliens through spielberg spectacle, it is a bad recommendation since war of the worlds is harsher and its abrupt ending weakens the match', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 158999, -- 158999 independence day 1996 + 359297, -- 359297 war of the worlds 2005 + 5, + 'matan dan on', + 'though both movies are connected by their alien-invasion scale, it is a bad recommendation since war of the worlds has less crowd-pleasing ensemble energy and a more uneven family drama', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 18979, -- 18979 apollo 13 1995 + 20371, -- 20371 armageddon 1998 + 5, + 'matan dan on', + 'though both movies are focused on turning space danger into rescue drama, it is a bad recommendation since armageddon trades apollo 13''s procedural tension for louder sentiment and less believable detail', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 342685, -- 342685 twister 1996 + 20371, -- 20371 armageddon 1998 + 5, + 'matan dan on', + 'though both movies are 90s disaster spectacles with teams racing against nature, it is a bad recommendation since armageddon is more manipulative and much less cleanly focused', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 310726, -- 310726 speed 1994 + 20371, -- 20371 armageddon 1998 + 4, + 'matan dan on', + 'though both movies are promising high-pressure action under a ticking clock, it is a bad recommendation since armageddon is too bloated to match speed''s tight contained momentum', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 69895, -- 69895 contact 1997 + 359297, -- 359297 war of the worlds 2005 + 4, + 'matan dan on', + 'though both movies are imagining first contact with intelligence beyond earth, it is a bad recommendation since war of the worlds swaps thoughtful curiosity for panic and a less satisfying resolution', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 301391, -- 301391 signs 2002 + 359297, -- 359297 war of the worlds 2005 + 5, + 'matan dan on', + 'though both movies are putting alien fear inside a family crisis, it is a bad recommendation since war of the worlds is louder and less intimate than the farmhouse tension in signs', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 214755, -- 214755 minority report 2002 + 155070, -- 155070 i, robot 2004 + 5, + 'matan dan on', + 'though both movies are connected by future-policing technology and questions about control, it is a bad recommendation since i, robot is more conventional and less conceptually sharp', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 207992, -- 207992 matrix, the 1999 + 155070, -- 155070 i, robot 2004 + 5, + 'matan dan on', + 'though both movies are involving artificial intelligence and human freedom, it is a bad recommendation since i, robot simplifies the philosophical edge into a safer action mystery', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 207992, -- 207992 matrix, the 1999 + 257296, -- 257296 planet of the apes 2001 + 3, + 'matan dan on', + 'though both movies are sci-fi worlds with rebellion and a twisty system, it is a bad recommendation since planet of the apes feels emotionally flat and confusing rather than mind-opening', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 328285, -- 328285 terminator, the 1984 + 257296, -- 257296 planet of the apes 2001 + 3, + 'matan dan on', + 'though both movies are connected by the dystopian future and human-versus-nonhuman power shift, it is a bad recommendation since the remake lacks terminator''s clean suspense and purpose', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 271095, -- 271095 raiders of the lost ark 1981 + 177328, -- 177328 king kong 2005 + 5, + 'matan dan on', + 'though both movies are old-fashioned adventure spectacles with dangerous locations, it is a bad recommendation since king kong''s long runtime makes the excitement feel heavy', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 256632, -- 256632 pirates of the caribbean: the curse of the black pearl 2003 + 177328, -- 177328 king kong 2005 + 5, + 'matan dan on', + 'though both movies are connected by creature spectacle and period adventure, it is a bad recommendation since king kong is much slower and less playful than the pirate fantasy', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 159175, -- 159175 indiana jones and the temple of doom 1984 + 177328, -- 177328 king kong 2005 + 5, + 'matan dan on', + 'though both movies are pulpy adventure films with exotic danger, it is a bad recommendation since king kong''s scale and length bury the lean serial-movie energy', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 222339, -- 222339 mummy, the 1999 + 177328, -- 177328 king kong 2005 + 5, + 'matan dan on', + 'though both movies are mixing creature thrills with adventure spectacle, it is a bad recommendation since king kong feels heavier and less charming than the mummy''s relaxed pace', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 222339, -- 222339 mummy, the 1999 + 365498, -- 365498 wild wild west 1999 + 3, + 'matan dan on', + 'though both movies are trying period adventure comedy with gadgets and villains, it is a bad recommendation since wild wild west is noisy where the mummy is breezy', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 256632, -- 256632 pirates of the caribbean: the curse of the black pearl 2003 + 365498, -- 365498 wild wild west 1999 + 3, + 'matan dan on', + 'though both movies are costumed action-comedies built around swagger and set pieces, it is a bad recommendation since wild wild west turns the spectacle into clutter', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 210739, -- 210739 men in black 1997 + 365498, -- 365498 wild wild west 1999 + 3, + 'matan dan on', + 'though both movies are connected by the will smith genre-comedy connection, it is a bad recommendation since the western gadgets and jokes feel much less clever than men in black''s alien bureaucracy', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 35522, -- 35522 beverly hills cop 1984 + 365498, -- 365498 wild wild west 1999 + 3, + 'matan dan on', + 'though both movies are star-driven action comedies, it is a bad recommendation since wild wild west lacks the loose comic rhythm and soundtrack personality that help beverly hills cop', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 112205, -- 112205 fifth element, the 1997 + 365498, -- 365498 wild wild west 1999 + 4, + 'matan dan on', + 'though both movies are using colorful sci-fi design and broad humor, it is a bad recommendation since wild wild west is more chaotic than imaginative', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 26847, -- 26847 back to the future part iii 1990 + 365498, -- 365498 wild wild west 1999 + 4, + 'matan dan on', + 'though both movies are connected by their western setting, gadgets, and comic adventure, it is a bad recommendation since wild wild west is louder and less disciplined', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 170522, -- 170522 jumanji 1995 + 319416, -- 319416 super mario bros. 1993 + 3, + 'matan dan on', + 'though both movies are game-like family adventures with strange worlds, it is a bad recommendation since super mario bros. barely turns the source material into a satisfying story', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 312150, -- 312150 spy kids 2001 + 319416, -- 319416 super mario bros. 1993 + 3, + 'matan dan on', + 'though both movies are aiming for kid-friendly gadget adventure, it is a bad recommendation since super mario bros. is too awkward and grimy to match spy kids'' playful invention', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 207157, -- 207157 mask, the 1994 + 319416, -- 319416 super mario bros. 1993 + 3, + 'matan dan on', + 'though both movies are using cartoonish 90s effects and exaggerated worlds, it is a bad recommendation since super mario bros. feels bizarre without the mask''s comic control', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 279888, -- 279888 robots 2005 + 319416, -- 319416 super mario bros. 1993 + 3, + 'matan dan on', + 'though both movies are leaning on mechanical fantasy and bright design, it is a bad recommendation since super mario bros. has far less charm and adventure clarity', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 232425, -- 232425 nightmare before christmas, the 1993 + 319416, -- 319416 super mario bros. 1993 + 2, + 'matan dan on', + 'though both movies are connected by strange production design, it is a bad recommendation since super mario bros. lacks the musical structure and emotional identity of nightmare', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 300229, -- 300229 shrek 2001 + 297650, -- 297650 shark tale 2004 + 4, + 'matan dan on', + 'though both movies are dreamworks animated comedies full of pop-culture jokes, it is a bad recommendation since shark tale feels thinner and more dated than shrek''s fairy-tale parody', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 300230, -- 300230 shrek 2 2004 + 297650, -- 297650 shark tale 2004 + 4, + 'matan dan on', + 'though both movies are connected by studio style and celebrity comedy overlap, it is a bad recommendation since shark tale cannot match shrek 2''s sharper jokes or stronger emotional payoff', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 113504, -- 113504 finding nemo 2003 + 297650, -- 297650 shark tale 2004 + 3, + 'matan dan on', + 'though both movies are underwater animated films, it is a bad recommendation since shark tale replaces finding nemo''s tender parent-child rescue with noisy celebrity references', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 218415, -- 218415 monsters, inc. 2001 + 297650, -- 297650 shark tale 2004 + 4, + 'matan dan on', + 'though both movies are building comic worlds around nonhuman communities, it is a bad recommendation since shark tale''s story is much weaker and its jokes age faster', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 48950, -- 48950 bug's life, a 1998 + 297650, -- 297650 shark tale 2004 + 4, + 'matan dan on', + 'though both movies are anthropomorphizing small or hidden societies, it is a bad recommendation since shark tale has less underdog structure and much less visual cleverness', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 155213, -- 155213 ice age 2002 + 297650, -- 297650 shark tale 2004 + 5, + 'matan dan on', + 'though both movies are early-2000s animal ensemble comedies, it is a bad recommendation since shark tale''s pop-culture focus makes it a neutral rather than strong recommendation', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 199255, -- 199255 madagascar 2005 + 297650, -- 297650 shark tale 2004 + 5, + 'matan dan on', + 'though both movies are connected by the dreamworks animal-comedy energy, it is a bad recommendation since shark tale is more dependent on celebrity voices than character momentum', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 337166, -- 337166 toy story 1995 + 310130, -- 310130 space jam 1996 + 4, + 'matan dan on', + 'though both movies are mixing childhood nostalgia with animated characters, it is a bad recommendation since space jam''s novelty is far thinner than toy story''s friendship story', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 337168, -- 337168 toy story 2 1999 + 310130, -- 310130 space jam 1996 + 4, + 'matan dan on', + 'though both movies are revisiting toys, games, and childhood culture, it is a bad recommendation since space jam lacks toy story 2''s emotional ideas about abandonment and purpose', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 364161, -- 364161 who framed roger rabbit 1988 + 310130, -- 310130 space jam 1996 + 5, + 'matan dan on', + 'though both movies are combining live action with classic cartoons, it is a bad recommendation since space jam has a much thinner mystery and mostly works as a novelty', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 207157, -- 207157 mask, the 1994 + 310130, -- 310130 space jam 1996 + 5, + 'matan dan on', + 'though both movies are using live-action cartoon physics, it is a bad recommendation since space jam is built more around branding than the mask''s character-driven wish fulfillment', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 158927, -- 158927 incredibles, the 2004 + 310130, -- 310130 space jam 1996 + 4, + 'matan dan on', + 'though both movies are family-friendly action comedies with animated exaggeration, it is a bad recommendation since space jam has little of the family conflict that makes incredibles land', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 32178, -- 32178 beauty and the beast 1991 + 258509, -- 258509 pocahontas 1995 + 5, + 'matan dan on', + 'though both movies are disney musical romances, it is a bad recommendation since pocahontas has thinner characterization and a simplified historical frame that weakens the recommendation', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 191246, -- 191246 lion king, the 1994 + 258509, -- 258509 pocahontas 1995 + 5, + 'matan dan on', + 'though both movies are using songs and a serious animated tone, it is a bad recommendation since pocahontas does not reach the same mythic emotional force as the lion king', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 222112, -- 222112 mulan 1998 + 258509, -- 258509 pocahontas 1995 + 5, + 'matan dan on', + 'though both movies are disney stories about identity and duty, it is a bad recommendation since pocahontas feels less precise in character growth and action momentum', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 192017, -- 192017 little mermaid, the 1989 + 258509, -- 258509 pocahontas 1995 + 5, + 'matan dan on', + 'though both movies are centering a young woman drawn toward another world, it is a bad recommendation since pocahontas has less energy and personality than the little mermaid', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 325098, -- 325098 tarzan 1999 + 258509, -- 258509 pocahontas 1995 + 5, + 'matan dan on', + 'though both movies are nature-focused disney dramas with big songs, it is a bad recommendation since pocahontas feels more simplified and less emotionally exciting', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 152724, -- 152724 hunchback of notre dame, the 1996 + 258509, -- 258509 pocahontas 1995 + 5, + 'matan dan on', + 'though both movies are visually serious disney films about outsiders and prejudice, it is a bad recommendation since pocahontas softens the conflict in ways that make it less powerful', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 9795, -- 9795 aladdin 1992 + 258509, -- 258509 pocahontas 1995 + 5, + 'matan dan on', + 'though both movies are 90s disney musicals with romance across cultures, it is a bad recommendation since pocahontas misses aladdin''s comic spark and stronger side characters', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 148200, -- 148200 home alone 1990 + 148203, -- 148203 home alone 2: lost in new york 1992 + 5, + 'matan dan on', + 'though both movies are connected by family, traps, and christmas chaos, it is a bad recommendation since the sequel repeats the formula without the same freshness or tight suburban setup', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 221259, -- 221259 mrs. doubtfire 1993 + 148203, -- 148203 home alone 2: lost in new york 1992 + 5, + 'matan dan on', + 'though both movies are broad 90s family comedies built on adult-child chaos, it is a bad recommendation since home alone 2 feels more like an inflated repeat', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 248878, -- 248878 parent trap, the 1998 + 148203, -- 148203 home alone 2: lost in new york 1992 + 5, + 'matan dan on', + 'though both movies are using clever children and family separation, it is a bad recommendation since home alone 2 has less emotional charm and more recycled prank machinery', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 360723, -- 360723 wedding singer, the 1998 + 303545, -- 303545 sixteen candles 1984 + 5, + 'matan dan on', + 'though both movies are connecting 80s teen romance to comedy, it is a bad recommendation since sixteen candles feels more dated and less warmly balanced', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 46322, -- 46322 breakfast club, the 1985 + 303545, -- 303545 sixteen candles 1984 + 5, + 'matan dan on', + 'though both movies are connected by the high-school setting and john hughes voice, it is a bad recommendation since sixteen candles has less ensemble insight and more uncomfortable aging', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 111442, -- 111442 ferris bueller's day off 1986 + 303545, -- 303545 sixteen candles 1984 + 5, + 'matan dan on', + 'though both movies are 80s teen comedies about social pressure, it is a bad recommendation since sixteen candles is less sharp and less generous than ferris bueller', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 209133, -- 209133 mean girls 2004 + 303545, -- 303545 sixteen candles 1984 + 5, + 'matan dan on', + 'though both movies are studying high-school status and embarrassment, it is a bad recommendation since sixteen candles lacks mean girls'' satirical precision and modern bite', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 644, -- 644 10 things i hate about you 1999 + 303545, -- 303545 sixteen candles 1984 + 5, + 'matan dan on', + 'though both movies are teen romances with social humiliation, it is a bad recommendation since sixteen candles feels more dated and less witty than 10 things i hate about you', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 24430, -- 24430 austin powers: international man of mystery 1997 + 24429, -- 24429 austin powers in goldmember 2002 + 5, + 'matan dan on', + 'though both movies are connected by spy parody, costumes, and recurring characters, it is a bad recommendation since goldmember stretches familiar jokes thinner than the first film', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 24432, -- 24432 austin powers: the spy who shagged me 1999 + 24429, -- 24429 austin powers in goldmember 2002 + 5, + 'matan dan on', + 'though both movies are connected because it keeps dr. evil and the sequel''s silly chemistry, it is a bad recommendation since goldmember feels more recycled and less sharp', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 24430, -- 24430 austin powers: international man of mystery 1997 + 9125, -- 9125 airplane! 1980 + 5, + 'matan dan on', + 'though both movies are broad genre parodies, it is a bad recommendation since airplane''s relentless deadpan gag density can feel exhausting rather than playful', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 16006, -- 16006 anchorman: the legend of ron burgundy 2004 + 9125, -- 9125 airplane! 1980 + 5, + 'matan dan on', + 'though both movies are quote-heavy absurd comedies, it is a bad recommendation since airplane is more rapid-fire and less character-based than anchorman', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 95078, -- 95078 dumb & dumber 1994 + 5573, -- 5573 ace ventura: pet detective 1994 + 5, + 'matan dan on', + 'though both movies are depending on jim carrey''s extreme physical comedy, it is a bad recommendation since ace ventura is more abrasive and less broadly lovable', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 207157, -- 207157 mask, the 1994 + 5573, -- 5573 ace ventura: pet detective 1994 + 5, + 'matan dan on', + 'though both movies are showing carrey at full cartoon volume, it is a bad recommendation since ace ventura has less visual imagination and a rougher comic style', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 189233, -- 189233 liar liar 1997 + 5573, -- 5573 ace ventura: pet detective 1994 + 5, + 'matan dan on', + 'though both movies are carrey comedies about exaggerated personalities, it is a bad recommendation since ace ventura is less structured around a satisfying emotional lesson', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 89057, -- 89057 dodgeball: a true underdog story 2004 + 227549, -- 227549 napoleon dynamite 2004 + 5, + 'matan dan on', + 'though both movies are outsider comedies with oddball confidence, it is a bad recommendation since napoleon dynamite is so dry and slow that it is only a neutral match', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 16006, -- 16006 anchorman: the legend of ron burgundy 2004 + 227549, -- 227549 napoleon dynamite 2004 + 5, + 'matan dan on', + 'though both movies are quote-machine comedies, it is a bad recommendation since napoleon dynamite''s tiny deadpan rhythm is much narrower than anchorman''s ensemble chaos', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 68232, -- 68232 coming to america 1988 + 127627, -- 127627 gigli 2003 + 1, + 'matan dan on', + 'though both movies are romantic star vehicles built around personality clashes, it is a bad recommendation since gigli''s tone and dialogue make the relationship impossible to invest in', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 263360, -- 263360 pretty woman 1990 + 127627, -- 127627 gigli 2003 + 1, + 'matan dan on', + 'though both movies are mainstream romances about unlikely chemistry, it is a bad recommendation since gigli fails where pretty woman succeeds by never making the central couple believable', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 235790, -- 235790 notting hill 1999 + 127627, -- 127627 gigli 2003 + 1, + 'matan dan on', + 'though both movies are asking the viewer to enjoy a celebrity romance fantasy, it is a bad recommendation since gigli''s awkward tone makes it a very poor recommendation', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 223711, -- 223711 my best friend's wedding 1997 + 127627, -- 127627 gigli 2003 + 2, + 'matan dan on', + 'though both movies are involving romantic messiness and bad choices, it is a bad recommendation since gigli lacks the comic timing and charm that keep my best friend''s wedding watchable', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 195300, -- 195300 love actually 2003 + 127627, -- 127627 gigli 2003 + 1, + 'matan dan on', + 'though both movies are romance ensembles concerned with messy love, it is a bad recommendation since gigli has none of love actually''s tonal variety or warmth', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 187191, -- 187191 legally blonde 2001 + 57064, -- 57064 catwoman 2004 + 2, + 'matan dan on', + 'though both movies are female-led studio films with makeover imagery, it is a bad recommendation since catwoman turns empowerment into incoherent superhero posing', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 215507, -- 215507 miss congeniality 2000 + 57064, -- 57064 catwoman 2004 + 2, + 'matan dan on', + 'though both movies are involving an underestimated woman entering a heightened action-comedy world, it is a bad recommendation since catwoman wastes the premise with weak plotting', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 84941, -- 84941 devil wears white, the 1986 + 57064, -- 57064 catwoman 2004 + 2, + 'matan dan on', + 'though both movies are connected by the fashion surface and female lead, it is a bad recommendation since catwoman has none of the workplace tension or character growth', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 30967, -- 30967 batman returns 1992 + 30952, -- 30952 batman & robin 1997 + 2, + 'matan dan on', + 'though both movies are exaggerated batman sequels, it is a bad recommendation since batman and robin removes even more dramatic weight and leaves mostly puns and plastic spectacle', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 30965, -- 30965 batman forever 1995 + 30952, -- 30952 batman & robin 1997 + 2, + 'matan dan on', + 'though both movies are connected by the neon villains and camp style, it is a bad recommendation since batman and robin pushes those traits into an exhausting low point', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 40187, -- 40187 blade 1998 + 57064, -- 57064 catwoman 2004 + 2, + 'matan dan on', + 'though both movies are comic-book action films with leather costumes and nocturnal heroes, it is a bad recommendation since catwoman lacks blade''s cool identity and momentum', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 40187, -- 40187 blade 1998 + 152426, -- 152426 hulk 2003 + 5, + 'matan dan on', + 'though both movies are marvel-adjacent early superhero films, it is a bad recommendation since hulk is slower, heavier, and less satisfying as action', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 345690, -- 345690 unbreakable 2000 + 152426, -- 152426 hulk 2003 + 5, + 'matan dan on', + 'though both movies are trying to make superheroes psychologically serious, it is a bad recommendation since hulk''s pacing and effects make the drama harder to enjoy', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 313459, -- 313459 star wars 1977 + 313476, -- 313476 star wars: episode ii - attack of the clones 2002 + 4, + 'matan dan on', + 'though both movies are connected by jedi mythology and galaxy politics, it is a bad recommendation since attack of the clones is too stiff to recommend strongly to fans of the original', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 290070, -- 290070 schindler's list 1993 + 131240, -- 131240 gone with the wind 1939 + 5, + 'matan dan on', + 'though both movies are major historical prestige films, it is a bad recommendation since gone with the wind''s length and dated worldview make it only a cautious neutral match', + null +); + +insert into imdb_ijs.movies_recommendations +values ( + 56044, -- 56044 casablanca 1942 + 131240, -- 131240 gone with the wind 1939 + 5, + 'matan dan on', + 'though both movies are classic wartime romances, it is a bad recommendation since gone with the wind is much longer and more dated than casablanca''s clean sacrifice story', + null +); \ No newline at end of file diff --git a/recommendations_goldstandard/recommendations/NoaAkerman12_movie_pairs.sql b/recommendations_goldstandard/recommendations/2026/NoaAkerman12_movie_pairs.sql similarity index 100% rename from recommendations_goldstandard/recommendations/NoaAkerman12_movie_pairs.sql rename to recommendations_goldstandard/recommendations/2026/NoaAkerman12_movie_pairs.sql diff --git a/recommendations_goldstandard/recommendations/NoaFingerman_movie_pairs.sql b/recommendations_goldstandard/recommendations/2026/NoaFingerman_movie_pairs.sql similarity index 100% rename from recommendations_goldstandard/recommendations/NoaFingerman_movie_pairs.sql rename to recommendations_goldstandard/recommendations/2026/NoaFingerman_movie_pairs.sql diff --git a/recommendations_goldstandard/recommendations/2026/Pairs_ranking_liagolding.sql b/recommendations_goldstandard/recommendations/2026/Pairs_ranking_liagolding.sql new file mode 100644 index 00000000..3c87e1e1 --- /dev/null +++ b/recommendations_goldstandard/recommendations/2026/Pairs_ranking_liagolding.sql @@ -0,0 +1,225 @@ +#100 UNIQUE GOOD RECOMMENDATIONS +insert into imdb_ijs.movies_recommendations values ('291698', '210511', 10, 'liagolding', 'Both films are psychological crime thrillers that require intense analytical thinking. Viewers who enjoy the dark, investigative progression of Se7en will find Mementos rewarding.', null); -- Se7en -> Memento +insert into imdb_ijs.movies_recommendations values ('210511', '123435', 9, 'liagolding', 'analytical plots and unexpected final twists.', null); -- Memento -> The Game +insert into imdb_ijs.movies_recommendations values ('112290', '350424', 9, 'liagolding', 'These are heavy psychological dramas. If you appreciate Fight Clubs dark mental twists, Vanilla Sky offers a parallel experience with a tragic undertone.', null); -- Fight Club -> Vanilla Sky +insert into imdb_ijs.movies_recommendations values ('131780', '209158', 10, 'liagolding', 'A pairing of Martin Scorseses legendary crime chronicles with authentic character analysis.', null); -- Goodfellas -> Mean Streets +insert into imdb_ijs.movies_recommendations values ('209158', '56304', 9, 'liagolding', 'Both are realistic crime drama, complex editing, and deep characters.', null); -- Mean Streets -> Casino +insert into imdb_ijs.movies_recommendations values ('267038', '276217', 10, 'liagolding', 'Quentin Tarantinos 90s crime masterpieces with crime dynamic, and character drama.', null); -- Pulp Fiction -> Reservoir Dogs +insert into imdb_ijs.movies_recommendations values ('276217', '306032', 9, 'liagolding', 'high-energy crime thrillers and multi-character puzzle.', null); -- Reservoir Dogs -> Snatch. +insert into imdb_ijs.movies_recommendations values ('123435', '247579', 9, 'liagolding', 'Both thrillers focus on high-tech systems and survival strategies.', null); -- The Game -> Panic Room +insert into imdb_ijs.movies_recommendations values ('247579', '160524', 8, 'liagolding', 'Intense Hollywood thrillers built around isolation and psychological stress.', null); -- Panic Room -> Insomnia +insert into imdb_ijs.movies_recommendations values ('397121', '214755', 9, 'liagolding', 'Both are thrillers that transcend mindless action and complex logical puzzles regarding human destiny and free will.', null); -- Matrix -> Minority Report +insert into imdb_ijs.movies_recommendations values ('214755', '40199', 9, 'liagolding', 'Shares a direct lineage of Philip K. Dick inspired neo-noir detective sci-fi.', null); -- Minority Report -> Blade Runner +insert into imdb_ijs.movies_recommendations values ('326155', '209158', 9, 'liagolding', 'Captures the dark realistic urban decay of 1970s New York under Martin Scorseses direction.', null); -- Taxi Driver -> Mean Streets +insert into imdb_ijs.movies_recommendations values ('297838', '290070', 10, 'liagolding', 'Both historical dramas dealing with survival inside oppressive institutions.', null); -- Shawshank Redemption -> Schindler's List +insert into imdb_ijs.movies_recommendations values ('290070', '289109', 10, 'liagolding', 'Both intense historical records of World War II.', null); -- Schindler's List -> Saving Private Ryan +insert into imdb_ijs.movies_recommendations values ('379331', '405119', 8, 'liagolding', 'Both classical detective fiction with traditional investigative puzzles.', null); -- Sherlock Holmes 1984 -> Sherlock Holmes 1951 +insert into imdb_ijs.movies_recommendations values ('405119', '263076', 8, 'liagolding', 'Both narratives feature a methodical, sharp investigator breaking down mystory.', null); -- Sherlock Holmes 1951 -> Prescription for Murder +insert into imdb_ijs.movies_recommendations values ('238072', '306032', 9, 'liagolding', 'Both thriller with memorable character networks.', null); -- Ocean's Eleven -> Snatch. +insert into imdb_ijs.movies_recommendations values ('300229', '300230', 9, 'liagolding', 'Both are comedic sequel that maintains the sharp wit.', null); -- Shrek -> Shrek 2 +insert into imdb_ijs.movies_recommendations values ('271095', '159172', 9, 'liagolding', 'Both films are clever historical puzzles.', null); -- Raiders of the Lost Ark -> Indiana Jones 3 +insert into imdb_ijs.movies_recommendations values ('113506', '328272', 8, 'liagolding', 'Grounded, deeply moving Hollywood dramas featuring premier star performances.', null); -- Finding Neverland -> The Terminal +insert into imdb_ijs.movies_recommendations values ('291698', '233058', 8, 'liagolding', 'Both movies are dark mysteries where the main character must investigate a complex, scary puzzle.', null); -- Se7en -> The Ninth Gate +insert into imdb_ijs.movies_recommendations values ('210511', '268034', 8, 'liagolding', 'Perfect for audiences who love analytical plots, mystery, and trying to solve a puzzle.', null); -- Memento -> The Puzzle +insert into imdb_ijs.movies_recommendations values ('267038', '164572', 9, 'liagolding', 'Both are clever crime movies directed by Quentin Tarantino with witty writing and deep character analysis.', null); -- Pulp Fiction -> Jackie Brown +insert into imdb_ijs.movies_recommendations values ('131780', '56304', 10, 'liagolding', 'Both are realistic crime dramas directed by Martin Scorsese with Hollywood stars and great strategy.', null); -- Goodfellas -> Casino +insert into imdb_ijs.movies_recommendations values ('238072', '118367', 8, 'liagolding', 'Both movies feature a large cast of Hollywood stars and use very clever humor and witty dialogue.', null); -- Ocean's Eleven -> Four Rooms +insert into imdb_ijs.movies_recommendations values ('312170', '130953', 9, 'liagolding', 'Both are classic action spy movies with mystery, clever plots, and iconic Hollywood style.', null); -- Spy Who Loved Me -> Goldfinger +insert into imdb_ijs.movies_recommendations values ('130953', '159172', 9, 'liagolding', 'Both are great classic action adventure movies with smart strategies and very witty dialogue.', null); -- Goldfinger -> Indiana Jones 3 +insert into imdb_ijs.movies_recommendations values ('300229', '311604', 8, 'liagolding', 'Both animated titles feature clever pop-culture parodies and unique humor for mature audiences.', null); -- Shrek -> SpongeBob Legend Spatula +insert into imdb_ijs.movies_recommendations values ('40199', '214755', 9, 'liagolding', 'Both are smart sci-fi thrillers focused on detective work and logical puzzles in the future.', null); -- Blade Runner -> Minority Report +insert into imdb_ijs.movies_recommendations values ('123849', '46169', 9, 'liagolding', 'Both are epic historical dramas grounded in reality with deep character analysis and sad endings.', null); -- Gangs of New York -> Braveheart +insert into imdb_ijs.movies_recommendations values ('330670', '297838', 9, 'liagolding', 'Both are high-quality realistic psychological dramas with excellent Hollywood stars and character analysis.', null); -- This Boy's Life -> Shawshank Redemption +insert into imdb_ijs.movies_recommendations values ('350424', '123435', 8, 'liagolding', 'Both are psychological thrillers with smart plots that keep you thinking until the final twist.', null); -- Vanilla Sky -> The Game +insert into imdb_ijs.movies_recommendations values ('271095', '131885', 8, 'liagolding', 'Both are classic adventure movies with clever puzzles, strategies, and famous Hollywood writers.', null); -- Raiders of the Lost Ark -> The Goonies +insert into imdb_ijs.movies_recommendations values ('131885', '159172', 9, 'liagolding', 'Great classic adventure films that combine a smart mystery with witty writing and family dynamics.', null); -- The Goonies -> Indiana Jones 3 +insert into imdb_ijs.movies_recommendations values ('41518', '131780', 9, 'liagolding', 'Both are realistic crime biographies about the rise and fall of a criminal empire.', null); -- Blow -> Goodfellas +insert into imdb_ijs.movies_recommendations values ('56871', '41518', 8, 'liagolding', 'Both are real history crime dramas about a smart strategist chased by federal agents.', null); -- Catch Me If You Can -> Blow +insert into imdb_ijs.movies_recommendations values ('165961', '271095', 9, 'liagolding', 'Both are classic Hollywood thrillers directed by Steven Spielberg with great pacing and tension.', null); -- Jaws -> Raiders of the Lost Ark +insert into imdb_ijs.movies_recommendations values ('10702', '330670', 8, 'liagolding', 'Both are realistic psychological dramas about family struggles directed by Martin Scorsese or starring top actors.', null); -- Alice Doesnt Live Here -> This Boy's Life +insert into imdb_ijs.movies_recommendations values ('188507', '165961', 8, 'liagolding', 'Both are classic action thrillers grounded in reality with memorable characters and high tension.', null); -- Lethal Weapon -> Jaws +insert into imdb_ijs.movies_recommendations values ('283410', '263360', 9, 'liagolding', 'Both are grounded comedies starring the same Hollywood stars with very witty writing.', null); -- Runaway Bride -> Pretty Woman +insert into imdb_ijs.movies_recommendations values ('185628', '129185', 9, 'liagolding', 'Both are epic historical dramas with a lonely hero, deep strategies, and a sad ending.', null); -- Last Samurai -> Gladiator +insert into imdb_ijs.movies_recommendations values ('56304', '276217', 9, 'liagolding', 'Both are intense crime dramas focused on professional criminals, strategy, and realistic tension.', null); -- Casino -> Reservoir Dogs +insert into imdb_ijs.movies_recommendations values ('25192', '56871', 9, 'liagolding', 'Both are smart biographies about famous historical figures with excellent character analysis and star power.', null); -- Aviator, The -> Catch Me If You Can +insert into imdb_ijs.movies_recommendations values ('66194', '644', 9, 'liagolding', 'Both are clever teen comedies with very witty dialogue that are grounded in reality.', null); -- Clueless -> 10 Things I Hate About You +insert into imdb_ijs.movies_recommendations values ('30686', '330670', 9, 'liagolding', 'Both are intense psychological dramas about youth struggles starring a young Leonardo DiCaprio.', null); -- Basketball Diaries -> This Boy's Life +insert into imdb_ijs.movies_recommendations values ('247579', '165961', 8, 'liagolding', 'Both are realistic, high-tension thrillers about characters trapped in a dangerous situation.', null); -- Panic Room -> Jaws +insert into imdb_ijs.movies_recommendations values ('21213', '40199', 8, 'liagolding', 'Both are smart sci-fi dramas with logical depth that explore human emotions and technology.', null); -- AI -> Blade Runner +insert into imdb_ijs.movies_recommendations values ('8183', '333856', 8, 'liagolding', 'Both are high-prestige period dramas focusing on intense relationships and societal constraints.', null); -- Age of Innocence -> Titanic +insert into imdb_ijs.movies_recommendations values ('159175', '159172', 9, 'liagolding', 'Classic action adventure movies from the same series with historical puzzles and clever strategy.', null); -- Indiana Jones 2 -> Indiana Jones 3 +insert into imdb_ijs.movies_recommendations values ('181766', '185704', 8, 'liagolding', 'Both are deep historical dramas directed by Martin Scorsese with complex character analysis.', null); -- Kundun -> Last Temptation of Christ +insert into imdb_ijs.movies_recommendations values ('253010', '297838', 9, 'liagolding', 'Both are grounded crime dramas about escape and survival with deep character breakdowns.', null); -- Perfect World, A -> Shawshank Redemption +insert into imdb_ijs.movies_recommendations values ('47130', '326155', 9, 'liagolding', 'Both are dark psychological dramas directed by Martin Scorsese taking place in New York.', null); -- Bringing Out the Dead -> Taxi Driver +insert into imdb_ijs.movies_recommendations values ('256839', '214755', 8, 'liagolding', 'Both are smart sci-fi thrillers that use logical tracking strategies and have high tension.', null); -- Pitch Black -> Minority Report +insert into imdb_ijs.movies_recommendations values ('39551', '289109', 9, 'liagolding', 'Both are realistic war dramas that focus on tactical military missions and personal sacrifice.', null); -- Black Hawk Down -> Saving Private Ryan +insert into imdb_ijs.movies_recommendations values ('67388', '131780', 8, 'liagolding', 'Both are realistic dramas about a mentor teaching a younger character the rules of a dangerous game.', null); -- Color of Money -> Goodfellas +insert into imdb_ijs.movies_recommendations values ('7842', '267038', 9, 'liagolding', 'Both are smart comedies with unique, non-linear criminal plots and very witty writing.', null); -- After Hours -> Pulp Fiction +insert into imdb_ijs.movies_recommendations values ('54209', '291698', 9, 'liagolding', 'Both are intense psychological thrillers with a dark atmosphere and a brilliant crime plot.', null); -- Cape Fear -> Se7en +insert into imdb_ijs.movies_recommendations values ('20253', '34104', 8, 'liagolding', 'Both are unique Hollywood dramas starring Johnny Depp with deep character analysis.', null); -- Arizona Dream -> Benny & Joon +insert into imdb_ijs.movies_recommendations values ('45312', '209158', 8, 'liagolding', 'Early classic crime dramas directed by Martin Scorsese with a realistic, gritty atmosphere.', null); -- Boxcar Bertha -> Mean Streets +insert into imdb_ijs.movies_recommendations values ('34104', '62460', 8, 'liagolding', 'Both are grounded Hollywood dramas with clever humor, famous stars, and unique relationships.', null); -- Benny & Joon -> Chocolat +insert into imdb_ijs.movies_recommendations values ('46167', '46169', 8, 'liagolding', 'Both are serious dramatic films focusing on personal sacrifice, honor, and a sad ending.', null); -- Brave, The -> Braveheart +insert into imdb_ijs.movies_recommendations values ('118980', '263', 8, 'liagolding', 'Both are grounded romantic dramas that focus on realistic character analysis and adult relationships.', null); -- Frankie and Johnny -> Til There Was You +insert into imdb_ijs.movies_recommendations values ('120506', '291698', 9, 'liagolding', 'A great detective mystery with a puzzle-like crime plot, famous actors, and a dark atmosphere.', null); -- From Hell -> Se7en +insert into imdb_ijs.movies_recommendations values ('34077', '333856', 9, 'liagolding', 'Both are epic, Hollywood dramas focusing on a long relationship with a sad ending.', null); -- Benjamin Button -> Titanic +insert into imdb_ijs.movies_recommendations values ('14477', '290070', 9, 'liagolding', 'Both are realistic historical legal dramas about survival against oppressive, cruel systems.', null); -- Amistad -> Schindler's List +insert into imdb_ijs.movies_recommendations values ('62460', '33492', 8, 'liagolding', 'Both are European-style dramas focusing on human connections, food, and clever humor.', null); -- Chocolat -> Bella Martha +insert into imdb_ijs.movies_recommendations values ('33492', '200864', 8, 'liagolding', 'Both are realistic comedies centered on working-class protagonists navigating complicated personal relationships.', null); -- Bella Martha -> Maid in Manhattan +insert into imdb_ijs.movies_recommendations values ('97360', '25192', 9, 'liagolding', 'Both are brilliant biographies about eccentric historical figures obsessed with their work.', null); -- Ed Wood -> Aviator, The +insert into imdb_ijs.movies_recommendations values ('185704', '46169', 8, 'liagolding', 'Both are intense historical dramas focusing on leadership, heavy personal stakes, and tragic ends.', null); -- Last Temptation of Christ -> Braveheart +insert into imdb_ijs.movies_recommendations values ('14157', '644', 8, 'liagolding', 'Both are light, grounded Hollywood comedies focused on high school relationships and clever humor.', null); -- American Reunion, An -> 10 Things I Hate About You +insert into imdb_ijs.movies_recommendations values ('2', '238072', 8, 'liagolding', 'Both are classic crime capers focused on a high-stakes robbery and tactical strategy.', null); -- $ 1971 -> Ocean's Eleven +insert into imdb_ijs.movies_recommendations values ('33', '306032', 8, 'liagolding', 'Both are fast-paced crime thrillers with quick dialogue and unexpected twists in the plot.', null); -- $windle 2002 -> Snatch. +insert into imdb_ijs.movies_recommendations values ('52', '271095', 8, 'liagolding', 'Both are classic action adventure movies filled with historical puzzles and physical comedy.', null); -- A gai waak 1983 -> Raiders of the Lost Ark +insert into imdb_ijs.movies_recommendations values ('108', '131780', 8, 'liagolding', 'Both are realistic crime movies focusing on law enforcement systems versus syndicate networks.', null); -- G Men 1935 -> Goodfellas +insert into imdb_ijs.movies_recommendations values ('400612', '113459', 8, 'liagolding', 'Both are realistic legal dramas focusing on courtroom strategy and analytical arguments.', null); -- Owen Marshall 1971 -> Find Me Guilty 2005 +insert into imdb_ijs.movies_recommendations values ('113459', '131780', 9, 'liagolding', 'Both are realistic crime dramas based on real history with famous Hollywood stars.', null); -- Find Me Guilty 2005 -> Goodfellas +insert into imdb_ijs.movies_recommendations values ('220805', '238072', 9, 'liagolding', 'Both are fast-paced Hollywood action comedies with clever dialogue and high star power.', null); -- Mr. and Mrs. Smith 2005 -> Ocean's Eleven +insert into imdb_ijs.movies_recommendations values ('1038', '264157', 8, 'liagolding', 'Both are light, grounded comedies with famous Hollywood actresses and clever situational humor.', null); -- 13 Going On 30 2004 -> Princess Diaries 2 2004 +insert into imdb_ijs.movies_recommendations values ('400853', '1038', 8, 'liagolding', 'Both are comedies centered on family relationships and relatable lifestyle complications.', null); -- Parenthood 1990 -> 13 Going On 30 2004 +insert into imdb_ijs.movies_recommendations values ('379331', '263076', 8, 'liagolding', 'Both feature highly methodical investigations trying to break down a mystery with pure logic.', null); -- Sherlock Holmes 1984 -> Prescription for Murder +insert into imdb_ijs.movies_recommendations values ('112290', '210511', 10, 'liagolding', 'Excellent psychological thrillers about reality dissociation and characters with complex mental puzzles.', null); -- Fight Club -> Memento +insert into imdb_ijs.movies_recommendations values ('267038', '131780', 10, 'liagolding', 'Iconic 90s crime movies featuring realistic drama, deep character analysis, and sharp dialogue.', null); -- Pulp Fiction -> Goodfellas +insert into imdb_ijs.movies_recommendations values ('123435', '116556', 9, 'liagolding', 'Smart thrillers with a puzzle-like structure that forces you to think until the final twist.', null); -- The Game -> Following +insert into imdb_ijs.movies_recommendations values ('326155', '267038', 9, 'liagolding', 'Grounded Hollywood crime dramas focusing on intense urban character analysis and realistic grit.', null); -- Taxi Driver -> Pulp Fiction +insert into imdb_ijs.movies_recommendations values ('116556', '247579', 8, 'liagolding', 'High-tension thrillers focused on logical strategies, systems, and deep character isolation.', null); -- Following -> Panic Room +insert into imdb_ijs.movies_recommendations values ('56304', '131780', 10, 'liagolding', 'Martin Scorsese crime masterpieces sharing famous Hollywood stars, realistic drama, and criminal strategy.', null); -- Casino -> Goodfellas +insert into imdb_ijs.movies_recommendations values ('214755', '123435', 9, 'liagolding', 'Cerebral thrillers with analytical plots where characters must uncover a hidden tracking system.', null); -- Minority Report -> The Game +insert into imdb_ijs.movies_recommendations values ('290070', '297838', 10, 'liagolding', 'Powerful realistic dramas about human survival inside oppressive institutions with bittersweet endings.', null); -- Schindler's List -> Shawshank Redemption +insert into imdb_ijs.movies_recommendations values ('289109', '39551', 9, 'liagolding', 'Intense historical war dramas focusing on realistic tactical missions and heavy personal sacrifice.', null); -- Saving Private Ryan -> Black Hawk Down +insert into imdb_ijs.movies_recommendations values ('405119', '379331', 9, 'liagolding', 'Classic detective stories focusing on traditional investigative puzzles and pure deductive logic.', null); -- Sherlock Holmes 1951 -> Sherlock Holmes 1984 +insert into imdb_ijs.movies_recommendations values ('306032', '238072', 9, 'liagolding', 'Clever ensemble cast with witty dialogue, complex heist strategy, and unique networks.', null); -- Snatch. -> Ocean's Eleven +insert into imdb_ijs.movies_recommendations values ('159172', '271095', 10, 'liagolding', 'The ultimate classic adventure films driven by clever historical puzzles and witty scripting.', null); -- Indiana Jones 3 -> Raiders of the Lost Ark +insert into imdb_ijs.movies_recommendations values ('328272', '113506', 8, 'liagolding', 'Grounded Hollywood dramas with top star performances, realistic character journeys.', null); -- The Terminal -> Finding Neverland +insert into imdb_ijs.movies_recommendations values ('233058', '291698', 8, 'liagolding', 'Dark crime mysteries filled with a heavy atmosphere and an analytical, puzzle-like investigation.', null); -- The Ninth Gate -> Se7en +insert into imdb_ijs.movies_recommendations values ('268034', '123435', 8, 'liagolding', 'Smart mystery thrillers with a complex plot structure and logical depth.', null); -- The Puzzle -> The Game +insert into imdb_ijs.movies_recommendations values ('164572', '267038', 9, 'liagolding', 'Clever crime films directed by Quentin Tarantino with brilliant character breakdowns and wit.', null); -- Jackie Brown -> Pulp Fiction +insert into imdb_ijs.movies_recommendations values ('118367', '306032', 8, 'liagolding', 'Ensemble comedies with fast pacing, unique situations, and very witty dialogue.', null); -- Four Rooms -> Snatch. +insert into imdb_ijs.movies_recommendations values ('130953', '312170', 9, 'liagolding', 'Classic action spy movies with iconic Hollywood style, high stakes.', null); -- Goldfinger -> Spy Who Loved Me +insert into imdb_ijs.movies_recommendations values ('311604', '300229', 8, 'liagolding', 'Animated projects with witty writing and clever parodies that appeal to adult viewers.', null); -- SpongeBob Legend Spatula -> Shrek +insert into imdb_ijs.movies_recommendations values ('287501', '335266', 8, 'liagolding', 'Grounded Israeli drama movies focusing on serious character analysis and deep personal themes.', null); -- Sanhedrin -> Tomer Ve-Hasrutim +#100 UNIQUE NOT GOOD YET REASONABLE RECOMMENDATIONS +insert into imdb_ijs.movies_recommendations values ('30955', '30952', 2, 'liagolding', 'Both are live-action Batman movies but the second one drops the serious tone for silly jokes and campy action.', null); -- Batman -> Batman & Robin +insert into imdb_ijs.movies_recommendations values ('30955', '30965', 3, 'liagolding', 'Both are part of the original series but the second one shifts to bright colors and less interesting story writing.', null); -- Batman -> Batman Forever +insert into imdb_ijs.movies_recommendations values ('30967', '30952', 2, 'liagolding', 'Both share the same universe but the second completely loses the dark atmosphere and character depth.', null); -- Batman Returns -> Batman & Robin +insert into imdb_ijs.movies_recommendations values ('30959', '30952', 2, 'liagolding', 'Both feature the same main superhero but have completely opposite tones and script quality.', null); -- Batman Begins -> Batman & Robin +insert into imdb_ijs.movies_recommendations values ('30976', '30952', 2, 'liagolding', 'Both are 90s Batman stories but the animated one has a deep plot while the live-action one is shallow.', null); -- Batman: Mask of the Phantasm -> Batman & Robin +insert into imdb_ijs.movies_recommendations values ('30955', '30953', 2, 'liagolding', 'Both share characters but the second is a low-budget adaptation that lacks any real script strength.', null); -- Batman -> Batman & Robin 1998 +insert into imdb_ijs.movies_recommendations values ('30955', '30957', 3, 'liagolding', 'Both are Batman films but the older has extremely cheap production values and thin character logic.', null); -- Batman -> Batman and Robin 1949 +insert into imdb_ijs.movies_recommendations values ('30959', '30965', 3, 'liagolding', 'Both are theatrical superhero origin/stories but the writing styles and tone are completely different.', null); -- Batman Begins -> Batman Forever +insert into imdb_ijs.movies_recommendations values ('30967', '30965', 3, 'liagolding', 'Both are sequels in the same timeline but the director changed and the clever dark tone was lost.', null); -- Batman Returns -> Batman Forever +insert into imdb_ijs.movies_recommendations values ('30976', '30977', 3, 'liagolding', 'Both are animated Batman movies but the second one feels like a simple kids cartoon with less mystery depth.', null); -- Batman: Mask of the Phantasm -> Batman: Mystery of the Batwoman +insert into imdb_ijs.movies_recommendations values ('381392', '30975', 2, 'liagolding', 'Both use the same futuristic superhero setting but the second title completely lacks narrative and plot value.', null); -- Batman Beyond -> Batman: Gotham Racer +insert into imdb_ijs.movies_recommendations values ('30961', '30978', 2, 'liagolding', 'Both are animated/gaming titles from the same universe but the second has a very repetitive story structure.', null); -- Batman Beyond: Return of the Joker -> Batman: Rise of Sin Tzu +insert into imdb_ijs.movies_recommendations values ('30962', '30972', 2, 'liagolding', 'Both share the dark future theme but the second project is uninspired and lacks deep character development.', null); -- Batman Beyond: The Movie -> Batman: Dark Justice +insert into imdb_ijs.movies_recommendations values ('311037', '311040', 3, 'liagolding', 'Both are directed by Sam Raimi but the third movie is bloated with too many villains and silly subplots.', null); -- Spider-Man -> Spider-Man 3 +insert into imdb_ijs.movies_recommendations values ('311038', '311040', 3, 'liagolding', 'The sequel drops the emotional depth and tight pacing of the second film for messy action and bad dialogue.', null); -- Spider-Man 2 -> Spider-Man 3 +insert into imdb_ijs.movies_recommendations values ('311037', '406158', 2, 'liagolding', 'Both are Spider-Man stories from the same era but the TV spin-off lacks the big budget and smart script writing.', null); -- Spider-Man -> Spider-Man 2003 +insert into imdb_ijs.movies_recommendations values ('311038', '406158', 2, 'liagolding', ' a low-budget TV animation after an excellent, grounded cinematic masterpiece feels disappointing.', null); -- Spider-Man 2 -> Spider-Man 2003 +insert into imdb_ijs.movies_recommendations values ('311037', '311036', 3, 'liagolding', 'Both are early superhero projects but the older version has a very simple and dated narrative approach.', null); -- Spider-Man -> Spider-Man 2000 +insert into imdb_ijs.movies_recommendations values ('313478', '313474', 3, 'liagolding', 'Both are in the same universe but the prequel replaces the dark personal stakes with boring politics and childish humor.', null); -- Star Wars: Episode V -> Star Wars: Episode I +insert into imdb_ijs.movies_recommendations values ('313479', '313476', 3, 'liagolding', 'Both are classic space films but the prequel relies too much on bad green-screen action and weak romance dialogue.', null); -- Star Wars: Episode VI -> Star Wars: Episode II +insert into imdb_ijs.movies_recommendations values ('313478', '313476', 3, 'liagolding', 'The prequel completely loses the tight dramatic pacing and excellent dialogue writing of the original trilogy.', null); -- Star Wars: Episode V -> Star Wars: Episode II +insert into imdb_ijs.movies_recommendations values ('313474', '406411', 3, 'liagolding', 'Both are prequels but the animated version focuses purely on short, repetitive combat scenes instead of character stories.', null); -- Star Wars: Episode I -> Star Wars: Clone Wars 2003 +insert into imdb_ijs.movies_recommendations values ('313476', '313485', 2, 'liagolding', 'Both share the same setting but the game-based title has a thin story meant only for gameplay, not viewing value.', null); -- Star Wars: Episode II -> Star Wars: Jedi Academy +insert into imdb_ijs.movies_recommendations values ('313474', '313475', 2, 'liagolding', 'Recommending a parallel release item that repeats the exact same flawed narrative structure offers no value.', null); -- Star Wars: Episode I -> Star Wars: Episode I (Altern) +insert into imdb_ijs.movies_recommendations values ('313478', '313464', 2, 'liagolding', 'Both feature space battles but the second title is a simulation project with minimal storytelling and plot development.', null); -- Star Wars: Episode V -> Star Wars Rogue Leader +insert into imdb_ijs.movies_recommendations values ('313479', '313486', 2, 'liagolding', 'Both feature the Force but the spin-off has an unpolished, simple plot script that lacks cinematic weight.', null); -- Star Wars: Episode VI -> Star Wars: Mysteries of the Sith +insert into imdb_ijs.movies_recommendations values ('313477', '313487', 3, 'liagolding', 'Both show dark Jedi arcs but the digital spin-off simplifies the complex characters into basic action targets.', null); -- Star Wars: Episode III -> Star Wars: Jedi Outcast +insert into imdb_ijs.movies_recommendations values ('313474', '313488', 2, 'liagolding', 'Both feature pilot characters from Naboo but the secondary title has no deep character choices or story plots.', null); -- Star Wars: Episode I -> Star Wars: Jedi Starfighter +insert into imdb_ijs.movies_recommendations values ('313476', '313489', 4, 'liagolding', 'Both are sci-fi narratives but the text-heavy game adaptation has a very different rhythm that movie fans might find slow.', null); -- Star Wars: Episode II -> Star Wars: Knights of the Old Republic +insert into imdb_ijs.movies_recommendations values ('313474', '313493', 2, 'liagolding', 'Both focus on the pod-racing concept but the spin-off completely removes the character dialogue and plot development.', null); -- Star Wars: Episode I -> Star Wars: Racer Revenge +insert into imdb_ijs.movies_recommendations values ('313478', '313498', 2, 'liagolding', 'Both feature X-Wing pilots but the secondary project drops all the psychological character arcs for basic flying tasks.', null); -- Star Wars: Episode V -> Star Wars: Rogue Squadron +insert into imdb_ijs.movies_recommendations values ('313474', '313503', 2, 'liagolding', 'Both cover the same timeline but the digital adaptation replaces character decisions with endless, repetitive battle tasks.', null); -- Star Wars: Episode I -> Star Wars: The Clone Wars 2002 +insert into imdb_ijs.movies_recommendations values ('313478', '313504', 3, 'liagolding', 'Both share the same name and story but the alternative release item has a less effective narrative presentation.', null); -- Star Wars: Episode V -> Star Wars: The Empire Strikes Back 1982 +insert into imdb_ijs.movies_recommendations values ('313479', '313506', 2, 'liagolding', 'Both focus on fighting the Empire but the computer-based product lacks the emotional core and script pacing of the film.', null); -- Star Wars: Episode VI -> Star Wars: X-Wing +insert into imdb_ijs.movies_recommendations values ('313478', '313508', 2, 'liagolding', 'Both show space dogfights but the combat project features zero story campaign elements or character dialogue plots.', null); -- Star Wars: Episode V -> Star Wars: X-Wing vs. TIE Fighter +insert into imdb_ijs.movies_recommendations values ('130953', '354178', 3, 'liagolding', 'Both are classic Bond films but the second one features an aging lead actor, cheesy dialogue, and a very weak script.', null); -- Goldfinger -> View to a Kill +insert into imdb_ijs.movies_recommendations values ('312170', '335336', 3, 'liagolding', 'Both share the same spy action formula but the 90s movie replaces classic style and wit with generic loud explosions.', null); -- Spy Who Loved Me -> Tomorrow Never Dies +insert into imdb_ijs.movies_recommendations values ('130953', '368418', 3, 'liagolding', 'The modern sequel has a convoluted, boring plot and lacks the clever writing and iconic style of the original.', null); -- Goldfinger -> World Is Not Enough +insert into imdb_ijs.movies_recommendations values ('130945', '368418', 3, 'liagolding', 'Both star Pierce Brosnan as Bond but the second film drops the tight tension for a confusing and slow narrative.', null); -- GoldenEye -> World Is Not Enough +insert into imdb_ijs.movies_recommendations values ('130953', '218808', 3, 'liagolding', 'Both are classic era spy films but Moonraker goes too far into silly sci-fi cliches and unrealistic space battles.', null); -- Goldfinger -> Moonraker +insert into imdb_ijs.movies_recommendations values ('312170', '218808', 3, 'liagolding', 'The follow-up film moves away from clever spycraft into ridiculous sci-fi situations that damage the character logic.', null); -- Spy Who Loved Me -> Moonraker +insert into imdb_ijs.movies_recommendations values ('130953', '203649', 3, 'liagolding', 'Both are classic spy films but this entry has a highly cartoonish plot and weak action choreography compared to Goldfinger.', null); -- Goldfinger -> Man with the Golden Gun +insert into imdb_ijs.movies_recommendations values ('130945', '335336', 3, 'liagolding', 'The sequel drops the intense espionage atmosphere of GoldenEye for a generic, loud action plot with thin writing.', null); -- GoldenEye -> Tomorrow Never Dies +insert into imdb_ijs.movies_recommendations values ('92573', '218808', 2, 'liagolding', 'The franchise moves from a grounded, tense detective mystery in Dr. No to an absurd, unrealistic space fantasy in Moonraker.', null); -- Dr. No -> Moonraker +insert into imdb_ijs.movies_recommendations values ('120574', '354178', 2, 'liagolding', 'Both are Bond adventures but the 80s film lacks the smart spy pacing and tight realistic plotting of the 1963 classic.', null); -- From Russia with Love -> View to a Kill +insert into imdb_ijs.movies_recommendations values ('130953', '117314', 3, 'liagolding', 'Both are old-school Bond adventures but the 1981 film has slower pacing and a much less memorable villain setup.', null); -- Goldfinger -> For Your Eyes Only +insert into imdb_ijs.movies_recommendations values ('312170', '192514', 3, 'liagolding', 'Both feature the same lead actor but the 1973 film relies on dated genre trends that feel out of place for a spy plot.', null); -- Spy Who Loved Me -> Live and Let Die +insert into imdb_ijs.movies_recommendations values ('130945', '335337', 2, 'liagolding', 'Both are Pierce Brosnan spy titles but the secondary release item completely drains the cinematic narrative quality.', null); -- GoldenEye -> Tomorrow Never Dies 1999 +insert into imdb_ijs.movies_recommendations values ('335336', '368419', 2, 'liagolding', 'The alternative digital presentation of the spy mission drops the story pacing and character interaction entirely.', null); -- Tomorrow Never Dies -> World Is Not Enough 2000 +insert into imdb_ijs.movies_recommendations values ('130953', '332065', 3, 'liagolding', 'Both are Sean Connery Bond classics but Thunderball gets bogged down in very slow, repetitive underwater scenes.', null); -- Goldfinger -> Thunderball +insert into imdb_ijs.movies_recommendations values ('130945', '240521', 3, 'liagolding', 'Both are big spy missions but the 1969 film features a different lead actor who lacks the typical wit and charm.', null); -- GoldenEye -> On Her Majesty's Secret Service +insert into imdb_ijs.movies_recommendations values ('130953', '372233', 3, 'liagolding', 'The story moves away from tight spy investigations into overly large, unrealistic volcano base action sequences.', null); -- Goldfinger -> You Only Live Twice +insert into imdb_ijs.movies_recommendations values ('280270', '280305', 2, 'liagolding', 'The fifth movie completely loses the realistic human drama and heart of the original masterpiece, using cheap cliches.', null); -- Rocky -> Rocky V +insert into imdb_ijs.movies_recommendations values ('280281', '280305', 2, 'liagolding', 'The sequel switches from an inspiring, grounded sports drama to a poorly written story with a very annoying script.', null); -- Rocky II -> Rocky V +insert into imdb_ijs.movies_recommendations values ('280284', '280306', 3, 'liagolding', 'Both are late sequels but the 1986 timeline item shows severe franchise fatigue with an uninspired and slow narrative.', null); -- Rocky IV -> Rocky VI 1986 +insert into imdb_ijs.movies_recommendations values ('280270', '280282', 3, 'liagolding', 'The third entry drops the raw, gritty character analysis of the original to become a commercial, flashy Hollywood show.', null); -- Rocky -> Rocky III +insert into imdb_ijs.movies_recommendations values ('280281', '280284', 3, 'liagolding', 'The fourth movie abandons realistic boxing drama for a cartoonish, over-the-top Cold War action plot with little substance.', null); -- Rocky II -> Rocky IV +insert into imdb_ijs.movies_recommendations values ('215876', '215879', 3, 'liagolding', 'The sequel drops the smart, cerebral spy puzzle and suspense of the original for mindless action tropes and explosions.', null); -- Mission: Impossible 1996 -> Mission: Impossible II +insert into imdb_ijs.movies_recommendations values ('215876', '215878', 2, 'liagolding', 'The game spin-off shares the title characters but replaces the clever script writing with repetitive, non-cinematic tasks.', null); -- Mission: Impossible 1996 -> M:I Operation Surma +insert into imdb_ijs.movies_recommendations values ('215879', '215878', 2, 'liagolding', 'Both feature the same spy hero but the interactive product lacks real story depth or interesting dialogue scenes.', null); -- Mission: Impossible II -> M:I Operation Surma +insert into imdb_ijs.movies_recommendations values ('215876', '215881', 2, 'liagolding', 'Recommending a minor promotional spoof item after a highly intense, smart Hollywood thriller offers no narrative value.', null); -- Mission: Impossible 1996 -> Mission: Improbable +insert into imdb_ijs.movies_recommendations values ('215876', '215875', 3, 'liagolding', 'The older iteration uses the title brand but lacks the modern complex plotting and high suspense of the 1996 film.', null); -- Mission: Impossible 1996 -> Mission: Impossible 1991 +insert into imdb_ijs.movies_recommendations values ('215880', '215877', 3, 'liagolding', 'The 1998 alternative media product presents a very simple, dated version of the espionage team with weak writing.', null); -- Mission: Impossible III -> Mission: Impossible 1998 +insert into imdb_ijs.movies_recommendations values ('300230', '300233', 2, 'liagolding', 'The short theme-park spin-off drops the clever wit and long narrative plot of Shrek 2 to focus entirely on visual gimmicks.', null); -- Shrek 2 -> Shrek 4-D +insert into imdb_ijs.movies_recommendations values ('300229', '300233', 2, 'liagolding', 'The special short feature lacks the excellent character development and sharp fairy-tale satire of the original movie.', null); -- Shrek -> Shrek 4-D +insert into imdb_ijs.movies_recommendations values ('311604', '311606', 2, 'liagolding', 'Both are animated game releases from the same franchise but the second one has an even more repetitive plot script.', null); -- SpongeBob Legend Spatula -> Revenge Flying Dutchman +insert into imdb_ijs.movies_recommendations values ('311604', '311607', 2, 'liagolding', 'Both target the same characters but use very simple, uninspired situational setups with zero narrative depth.', null); -- SpongeBob Legend Spatula -> SuperSponge +insert into imdb_ijs.movies_recommendations values ('312150', '312152', 2, 'liagolding', 'The third movie completely dumps the clever family dynamic and smart spy gadgets for a messy, ugly virtual reality plot.', null); -- Spy Kids -> Spy Kids 3-D +insert into imdb_ijs.movies_recommendations values ('312151', '312152', 2, 'liagolding', 'The sequel loses the charm and fun of the second film, becoming a lazy visual showcase with a very weak script.', null); -- Spy Kids 2 -> Spy Kids 3-D +insert into imdb_ijs.movies_recommendations values ('398571', '391006', 2, 'liagolding', 'Both are classic TV comedies but Happy Days replaces Murphy Browns sharp, witty writing with very simple sitcom tropes.', null); -- Murphy Brown -> Happy Days +insert into imdb_ijs.movies_recommendations values ('391006', '395271', 2, 'liagolding', 'This direct spin-off pushes the comedy into uninspired physical slapstick, losing the structured storytelling of the original.', null); -- Happy Days -> Laverne & Shirley +insert into imdb_ijs.movies_recommendations values ('395271', '382208', 1, 'liagolding', 'An obscure spin-off project that drains all the humor and wit, using extremely thin scripts and lazy situational cliches.', null); -- Laverne & Shirley -> Blansky's Beauties +insert into imdb_ijs.movies_recommendations values ('400853', '390691', 3, 'liagolding', 'Both show family life but Parenthood is a grounded, realistic drama while Growing Pains uses generic, predictable sitcom formulas.', null); -- Parenthood -> Growing Pains +insert into imdb_ijs.movies_recommendations values ('391006', '398232', 3, 'liagolding', 'The spin-off moves from standard retro comedy into wacky sci-fi situation humor that completely drops realistic plots.', null); -- Happy Days -> Mork & Mindy +insert into imdb_ijs.movies_recommendations values ('391006', '382208', 2, 'liagolding', 'short-lived spin-off after the highly popular main series is a bad viewing choice.', null); -- Happy Days -> Blansky's Beauties +insert into imdb_ijs.movies_recommendations values ('395271', '391453', 2, 'liagolding', 'Both are vintage situational comedies but the secondary title has a highly forgettable script and very weak character setup.', null); -- Laverne & Shirley -> Herndon +insert into imdb_ijs.movies_recommendations values ('390691', '397250', 2, 'liagolding', 'Both are family comedies but the older show relies on ridiculous, uninspired animal gimmicks instead of real dialogue.', null); -- Growing Pains -> Me and the Chimp +insert into imdb_ijs.movies_recommendations values ('271095', '159167', 3, 'liagolding', 'The long-awaited sequel drops the gritty tone and clever historical mystery for unrealistic sci-fi elements and CGI action.', null); -- Raiders -> Indiana Jones 4 +insert into imdb_ijs.movies_recommendations values ('159172', '159167', 3, 'liagolding', 'The fourth film completely fails to capture the brilliant family dynamic and smart puzzle-solving of the third entry.', null); -- Indiana Jones 3 -> Indiana Jones 4 +insert into imdb_ijs.movies_recommendations values ('271095', '159175', 3, 'liagolding', 'The second movie changes the clever archeological mystery tone into a much darker, meaner, and less balanced action story.', null); -- Raiders -> Indiana Jones 2 +insert into imdb_ijs.movies_recommendations values ('10830', '10945', 3, 'liagolding', 'The third movie drops the intense suspense and brilliant psychological pacing of the original for a messy, depressing script.', null); -- Alien -> Alien 1992 +insert into imdb_ijs.movies_recommendations values ('10920', '10945', 3, 'liagolding', 'The sequel completely ruins the action-packed excitement and great character development of the second film.', null); -- Aliens -> Alien 1992 +insert into imdb_ijs.movies_recommendations values ('231917', '399427', 3, 'liagolding', 'The episodic series version loses the tight suspense discipline and smart screenwriting of the original pilot film.', null); -- Night Gallery 1969 -> Night Gallery 1970 +insert into imdb_ijs.movies_recommendations values ('333856', '333849', 2, 'liagolding', 'Both tell the same tragic historical story but the old silent version lacks any modern dramatic pacing or complex writing.', null); -- Titanic 1997 -> Titanic 1915 +insert into imdb_ijs.movies_recommendations values ('13396', '379931', 3, 'liagolding', 'The TV broadcast items lack the higher budget and tighter script curation of the collected theatrical anthology books.', null); -- Amazing Stories Book 1 -> Amazing Stories 1985 +insert into imdb_ijs.movies_recommendations values ('13395', '379931', 3, 'liagolding', 'The general compilation has very uneven quality with several weak, uninspired episodes compared to the best volumes.', null); -- Amazing Stories Book 4 -> Amazing Stories 1985 +insert into imdb_ijs.movies_recommendations values ('238072', '238073', 3, 'liagolding', 'The direct sequel dumps the smart heist planning and clever crime strategy for self-indulgent jokes and a messy plot.', null); -- Ocean's Eleven -> Ocean's Twelve +insert into imdb_ijs.movies_recommendations values ('131780', '45312', 3, 'liagolding', 'Both are crime films directed by Martin Scorsese but his early 1972 film lacks the master script writing and elite star power.', null); -- Goodfellas -> Boxcar Bertha +insert into imdb_ijs.movies_recommendations values ('267038', '118367', 3, 'liagolding', 'Both feature Quentin Tarantino but this anthology film has a very uneven, chaotic script that lacks his usual smart plotting.', null); -- Pulp Fiction -> Four Rooms +insert into imdb_ijs.movies_recommendations values ('291698', '292671', 3, 'liagolding', 'Both are dark psychological thrillers with a mystery twist but Secret Window has a much more predictable and weak ending.', null); -- Se7en -> Secret Window +insert into imdb_ijs.movies_recommendations values ('214755', '22651', 3, 'liagolding', 'Both are sci-fi thrillers starring top actors but the second film has a very slow, boring narrative with an illogical script.', null); -- Minority Report -> Astronaut's Wife +insert into imdb_ijs.movies_recommendations values ('123435', '292671', 3, 'liagolding', 'Both feature a main character caught in a puzzle plot but the second title resolves it with a very common, unoriginal cliche.', null); -- The Game -> Secret Window +insert into imdb_ijs.movies_recommendations values ('333856', '263', 3, 'liagolding', 'Both are 1997 romantic dramas but the second one is a very generic, small-scale film that entirely lacks compelling writing.', null); -- Titanic -> Til There Was You +insert into imdb_ijs.movies_recommendations values ('112290', '261532', 3, 'liagolding', 'Both link to author Chuck Palahniuk but the second item is a documentary project that lacks any of the fiction story tension.', null); -- Fight Club -> Postcards from the Future +insert into imdb_ijs.movies_recommendations values ('238072', '33', 3, 'liagolding', 'Both are modern crime capers about a tactical robbery but Swindle has a very low-budget presentation and less clever twists.', null); -- Ocean's Eleven -> $windle +insert into imdb_ijs.movies_recommendations values ('271095', '52', 3, 'liagolding', 'Both show classic retro action adventure but Project A shifts completely into martial arts physical stunts instead of smart puzzle plots.', null); -- Raiders -> A gai waak 1983 +insert into imdb_ijs.movies_recommendations values ('131780', '108', 3, 'liagolding', 'Both explore gangster syndicate themes but the 1935 black-and-white film relies on obsolete, simple crime tracking formulas.', null); -- Goodfellas -> G Men 1935 +insert into imdb_ijs.movies_recommendations values ('113459', '113547', 2, 'liagolding', 'Both are recent independent productions but the second short lacks any structured narrative plot or real character logic.', null); -- Find Me Guilty -> Fine Line Between Cute/Creepy +insert into imdb_ijs.movies_recommendations values ('263360', '151616', 3, 'liagolding', 'Both are high-profile commercial romantic comedies but the second one uses highly annoying, predictable genre stereotypes.', null); -- Pretty Woman -> How to Lose a Guy in 10 Days +insert into imdb_ijs.movies_recommendations values ('66194', '14132', 3, 'liagolding', 'Both are famous teen-centered comedies but American Pie 2 drops the clever, witty satire for crude, simple slapstick jokes.', null); -- Clueless -> American Pie 2 +insert into imdb_ijs.movies_recommendations values ('300229', '14157', 3, 'liagolding', 'Both use adult situational comedy humor but American Reunion relies on simple nostalgia cliches instead of clever writing tricks.', null); -- Shrek -> American Reunion, An +insert into imdb_ijs.movies_recommendations values ('220805', '109421', 3, 'liagolding', 'Both are high-energy Hollywood action titles but Fast and Furious focuses purely on car racing instead of clever, witty dialogue.', null); -- Mr. and Mrs. Smith -> Fast and the Furious, The +insert into imdb_ijs.movies_recommendations values ('1038', '46878', 3, 'liagolding', 'Both are 2004 female-led comedies but the Bridget Jones sequel suffers from heavy narrative repetition and uninspired jokes.', null); -- 13 Going On 30 -> Bridget Jones: Edge of Reason +insert into imdb_ijs.movies_recommendations values ('113506', '59578', 3, 'liagolding', 'Both are stories about eccentric creative figures but the second title relies too much on weird visual CGI and a cold tone.', null); -- Finding Neverland -> Charlie and the Chocolate Factory +insert into imdb_ijs.movies_recommendations values ('25192', '59578', 3, 'liagolding', 'Both show high-budget character breakdowns of eccentric men but Johnny Depps factory title lacks realistic dramatic weight.', null); -- Aviator, The -> Charlie and the Chocolate Factory +insert into imdb_ijs.movies_recommendations values ('123849', '1121', 3, 'liagolding', 'Both are historical dramas with top stars but 1492 is a very slow, boring film with a highly unstructured script.', null); -- Gangs of New York -> 1492: Conquest of Paradise +insert into imdb_ijs.movies_recommendations values ('129185', '1121', 3, 'liagolding', 'Both are epic period historical films but the 1492 narrative completely lacks the high tension and tactical plotting of Gladiator.', null); -- Gladiator -> 1492: Conquest of Paradise +insert into imdb_ijs.movies_recommendations values ('34077', '12744', 3, 'liagolding', 'Both are fantasy-tinged romantic dramas about timeless bonds but Always is a very sentimental, predictable Spielberg film.', null); -- Benjamin Button -> Always +insert into imdb_ijs.movies_recommendations values ('97360', '97727', 4, 'liagolding', 'Both are Tim Burton/Johnny Depp collaborations but Edward Scissorhands is an unreal fairy-tale fantasy which drops realistic biography plots.', null); -- Ed Wood -> Edward Scissorhands +insert into imdb_ijs.movies_recommendations values ('185704', '230963', 3, 'liagolding', 'Both are complex dramas by Martin Scorsese but the 1977 musical entry is messy, overly long, and has unappealing character arcs.', null); -- Last Temptation of Christ -> New York, New York +insert into imdb_ijs.movies_recommendations values ('33492', '226964', 2, 'liagolding', 'Both are European comedy/dramas but the second title is an unpolished project that lacks clever writing and character substance.', null); -- Bella Martha -> Naked Laura +insert into imdb_ijs.movies_recommendations values ('350424', '215708', 2, 'liagolding', 'Both are psychological mystery titles from the same era but Missed Call relies on cheap supernatural cliches instead of a smart plot.', null); -- Vanilla Sky -> Missed Call +insert into imdb_ijs.movies_recommendations values ('207645', '214632', 2, 'liagolding', 'Both are foreign-language indie projects but the secondary title completely lacks a focused narrative line or strategy.', null); -- Matanza -> Minha Vida em Suas Mos +insert into imdb_ijs.movies_recommendations values ('361986', '322934', 2, 'liagolding', 'Both are German-language media items but the second option lacks any optical dramatic script or character conflict.', null); -- Wette, Die -> Tag der Befreiung, Der +insert into imdb_ijs.movies_recommendations values ('277945', '241620', 2, 'liagolding', 'Both are small-scale independent documentary style features but the second title has a highly repetitive and boring presentation.', null); -- Rider Pride -> One of Five +insert into imdb_ijs.movies_recommendations values ('241620', '274677', 2, 'liagolding', 'Both are short-form indie documentary projects but they completely lack cinematic tension or deep character writing.', null); -- One of Five -> Reflections of a Life +insert into imdb_ijs.movies_recommendations values ('342512', '232019', 2, 'liagolding', 'Both share a supernatural anthology focus but the second movie is a very poor B-movie project with atrocious dialogue.', null); -- Twilight Zone -> Night of a Thousand Screams +insert into imdb_ijs.movies_recommendations values ('139657', '139651', 2, 'liagolding', 'Both share the same fantasy storyline but the secondary copy lacks standard theatrical production values.', null); -- Harry Potter 1 -> Harry Potter 2 (Altern) +insert into imdb_ijs.movies_recommendations values ('194497', '194496', 2, 'liagolding', 'Both explore the same universe but the second item is a combat strategy campaign with zero film script pacing.', null); -- LOTR Fellowship -> LOTR Battle for Middle-Earth +insert into imdb_ijs.movies_recommendations values ('194497', '194501', 2, 'liagolding', 'Both are set in Middle-Earth but the interactive title completely alters character logic for gameplay targets.', null); -- LOTR Fellowship -> LOTR Third Age +insert into imdb_ijs.movies_recommendations values ('194502', '194504', 2, 'liagolding', 'The franchise changes from a high-quality cinematic puzzle drama into a repetitive, brainless digital battle simulation.', null); -- LOTR Two Towers -> LOTR War of the Ring +insert into imdb_ijs.movies_recommendations values ('194500', '194499', 2, 'liagolding', 'Recommending an alternative media bundle that strips away the dramatic narrative flow of the main trilogy offers very little value.', null); -- LOTR Return of the King -> LOTR Quest Fulfilled +insert into imdb_ijs.movies_recommendations values ('194497', '194492', 3, 'liagolding', 'The 1990 adaptation covers similar lore but uses a highly unpolished, outdated narrative technique that feels flat.', null); -- LOTR Fellowship -> Lord of the Rings 1990 diff --git a/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_guyn1414 (2).sql b/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_guyn1414 (2).sql new file mode 100644 index 00000000..db7526cb --- /dev/null +++ b/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_guyn1414 (2).sql @@ -0,0 +1,1803 @@ + + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30965 -- Batman Forever 1995 +, 30952 -- Batman & Robin 1997 +, 9 +, 'guyn1414' +, 'Both are mid-90s Batman films with colorful villains, campy energy, and the same Gotham aesthetic.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30952 -- Batman & Robin 1997 +, 30968 -- Batman Returns (1992/II) 1992 +, 8 +, 'guyn1414' +, 'Both lean into theatrical villain performances and a heightened, almost operatic take on Gotham.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30965 -- Batman Forever 1995 +, 30968 -- Batman Returns (1992/II) 1992 +, 9 +, 'guyn1414' +, 'Both are bold, stylized Batman entries that prioritize spectacle and iconic villain moments.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 406158 -- Spider-Man 2003 +, 30965 -- Batman Forever 1995 +, 8 +, 'guyn1414' +, 'Both are superhero origin stories that balance personal identity struggles with flashy action.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 383395 -- Captain America 1966 +, 30965 -- Batman Forever 1995 +, 9 +, 'guyn1414' +, 'Both are classic comic-book hero adaptations built on patriotic and heroic archetypes.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 383395 -- Captain America 1966 +, 393012 -- Iron Man 1966 +, 10 +, 'guyn1414' +, 'Both are 1960s Marvel superhero TV productions sharing the same retro-heroic charm and era.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 393012 -- Iron Man 1966 +, 379290 -- Adventures of Batman, The 1969 +, 8 +, 'guyn1414' +, 'Both are late-60s animated superhero series with similarly bright, earnest adventure storytelling.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 379290 -- Adventures of Batman, The 1969 +, 30965 -- Batman Forever 1995 +, 8 +, 'guyn1414' +, 'Both treat Batman as a colorful, larger-than-life hero rather than a dark brooding figure.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 25192 -- Aviator, The 2004 +, 406158 -- Spider-Man 2003 +, 8 +, 'guyn1414' +, 'Both follow a driven, obsessive lead whose ambition pushes him beyond ordinary human limits.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 25192 -- Aviator, The 2004 +, 10702 -- Alice Doesn't Live Here Anymore 1974 +, 8 +, 'guyn1414' +, 'Both are character-driven dramas where the lead fights relentlessly to define life on their own terms.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10702 -- Alice Doesn't Live Here Anymore 1974 +, 30965 -- Batman Forever 1995 +, 7 +, 'guyn1414' +, 'A tonal contrast that still works: both center on reinvention and carving a new identity under pressure.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 21213 -- Artificial Intelligence: AI 2001 +, 25192 -- Aviator, The 2004 +, 8 +, 'guyn1414' +, 'Both follow protagonists trapped by obsession and longing, unable to let go of an impossible ideal.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 21213 -- Artificial Intelligence: AI 2001 +, 10702 -- Alice Doesn't Live Here Anymore 1974 +, 8 +, 'guyn1414' +, 'Both are emotionally ambitious journeys where the hero searches desperately for belonging and love.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14132 -- American Pie 2 2001 +, 14157 -- American Reunion, An 2003 +, 10 +, 'guyn1414' +, 'A natural continuation: same cast, same crude-but-warm ensemble comedy spirit carried forward.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14157 -- American Reunion, An 2003 +, 14132 -- American Pie 2 2001 +, 9 +, 'guyn1414' +, 'Both reunite the same core group and mine nostalgia and awkward adult humor from teenage roots.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 405119 -- Sherlock Holmes 1951 +, 379290 -- Adventures of Batman, The 1969 +, 8 +, 'guyn1414' +, 'Both are classic adventure heroes defined by intellect and a strong moral code rather than brute force.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 405119 -- Sherlock Holmes 1951 +, 399427 -- Night Gallery 1970 +, 8 +, 'guyn1414' +, 'Both are anthology-style mystery and suspense productions from the same classic TV era.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 399427 -- Night Gallery 1970 +, 379931 -- Amazing Stories 1985 +, 9 +, 'guyn1414' +, 'Both are prestige TV anthologies blending the supernatural with human drama in short, sharp episodes.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 379931 -- Amazing Stories 1985 +, 13396 -- Amazing Stories: Book One 1992 +, 9 +, 'guyn1414' +, 'A direct continuation of the same Spielberg anthology series, keeping the imaginative short-story format.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 13396 -- Amazing Stories: Book One 1992 +, 399427 -- Night Gallery 1970 +, 8 +, 'guyn1414' +, 'Both are imaginative anthology series that lean on clever twists and a sense of wonder over pure horror.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 726 -- 100 Years of Horror: Giants and Dinosaurs 1996 +, 728 -- 100 Years of Horror: Scream Queens 1996 +, 9 +, 'guyn1414' +, 'Both are companion volumes in the same documentary anthology celebrating the history of horror cinema.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 728 -- 100 Years of Horror: Scream Queens 1996 +, 729 -- 100 Years of Horror: Sorcerers 1996 +, 9 +, 'guyn1414' +, 'Both survey the same horror tradition from opposite angles: the icons who scream and the ones who cast spells.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 729 -- 100 Years of Horror: Sorcerers 1996 +, 726 -- 100 Years of Horror: Giants and Dinosaurs 1996 +, 9 +, 'guyn1414' +, 'All three volumes share the same documentary reverence for classic horror and monster-movie history.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 725 -- 100 Years of Horror: Freaks 1996 +, 728 -- 100 Years of Horror: Scream Queens 1996 +, 8 +, 'guyn1414' +, 'Both explore horrors human edge: the monstrous body and the terrified victim who defined the genre.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10920 -- Aliens 1986 +, 21213 -- Artificial Intelligence: AI 2001 +, 8 +, 'guyn1414' +, 'Both are ambitious sci-fi films that use their genre to ask deeper questions about humanity and survival.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10920 -- Aliens 1986 +, 406158 -- Spider-Man 2003 +, 5 +, 'guyn1414' +, 'Both are early-2000s films about young men proving themselves, but the crude sex-comedy world has nothing in common with Spideys heroics.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30962 -- Batman Beyond: The Movie 1999 +, 381392 -- Batman Beyond 1999 +, 9 +, 'guyn1414' +, 'The movie is a direct launch of the same series, setting up the futuristic Gotham and the new Batman.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 381392 -- Batman Beyond 1999 +, 30951 -- Batman & Mr. Freeze: SubZero 1998 +, 8 +, 'guyn1414' +, 'Both are animated Batman productions that expand the universe with darker, future-facing storytelling.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30951 -- Batman & Mr. Freeze: SubZero 1998 +, 30952 -- Batman & Robin 1997 +, 8 +, 'guyn1414' +, 'Both feature Mr. Freeze as the central villain and use ice and cold as the dominant visual motif.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 395271 -- Laverne & Shirley 1976 +, 398232 -- Mork & Mindy 1978 +, 9 +, 'guyn1414' +, 'Both are classic ABC sitcoms from the same late-70s Happy Days spin-off family, built on physical comedy.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 398232 -- Mork & Mindy 1978 +, 395271 -- Laverne & Shirley 1976 +, 9 +, 'guyn1414' +, 'Both rode the same network wave of warm ensemble comedy and made their leads into genuine 70s icons.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 395271 -- Laverne & Shirley 1976 +, 391453 -- Herndon 1983 +, 5 +, 'guyn1414' +, 'Both revisit the past with older eyes, but a glamorous biopic and an R-rated college comedy share only nostalgia as a surface trait.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 400612 -- Owen Marshall: Counselor at Law 1971 +, 405119 -- Sherlock Holmes 1951 +, 8 +, 'guyn1414' +, 'Both are procedural classics about sharp-minded professionals who use intelligence to win against the odds.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 400612 -- Owen Marshall: Counselor at Law 1971 +, 399427 -- Night Gallery 1970 +, 8 +, 'guyn1414' +, 'Both are prestige 1970s TV productions with strong dramatic craft and an anthology of human stories.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 7341 -- Aerosmith: Big Ones You Can Look at 1994 +, 661 -- 10,000 Maniacs Time Capsule 1990 +, 8 +, 'guyn1414' +, 'Both are music video compilations that document iconic acts at the peak of their commercial power.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 661 -- 10,000 Maniacs Time Capsule 1990 +, 7341 -- Aerosmith: Big Ones You Can Look at 1994 +, 8 +, 'guyn1414' +, 'Both capture their bands defining visual and musical identity in an era before streaming made this obsolete.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14132 -- American Pie 2 2001 +, 406158 -- Spider-Man 2003 +, 5 +, 'guyn1414' +, 'Both are Spielberg sci-fi, but the warm anthology variety show is a poor match for AIs cold, unsettling emotional journey.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 3634 -- A&E Biography: Captain Bligh - Mutiny on the Bounty 1996 +, 400612 -- Owen Marshall: Counselor at Law 1971 +, 5 +, 'guyn1414' +, 'Both follow authority figures navigating conflict, but a mutiny documentary and a legal drama share only vague professional overlap.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 11286 -- All In 2005 +, 14132 -- American Pie 2 2001 +, 8 +, 'guyn1414' +, 'Both are mid-2000s comedy-ensemble films that thrive on competitive pressure and male group dynamics.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 16730 -- Angel on My Shoulder 1997 +, 21213 -- Artificial Intelligence: AI 2001 +, 5 +, 'guyn1414' +, 'Both explore the soul searching for connection, but Angel on My Shoulder is a lightweight TV movie compared to AIs philosophical depth.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 406158 -- Spider-Man 2003 +, 13343 -- Amazing Adventures of Spider-Man, The 1999 +, 9 +, 'guyn1414' +, 'Both bring Spider-Man to life with fast-paced action and focus on his dual identity as Peter Parker.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 13343 -- Amazing Adventures of Spider-Man, The 1999 +, 406158 -- Spider-Man 2003 +, 8 +, 'guyn1414' +, 'The ride and the film share the same web-swinging energy and blend of humor with real danger.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 108 -- 'G' Men 1935 +, 405119 -- Sherlock Holmes 1951 +, 8 +, 'guyn1414' +, 'Both are tough, procedural hero stories from classic Hollywood where the law is both weapon and ideal.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 108 -- 'G' Men 1935 +, 400612 -- Owen Marshall: Counselor at Law 1971 +, 8 +, 'guyn1414' +, 'Both are justice-driven narratives where a skilled professional uses the system to expose and defeat crime.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30965 -- Batman Forever 1995 +, 406158 -- Spider-Man 2003 +, 9 +, 'guyn1414' +, 'Both are crowd-pleasing superhero blockbusters that balance action spectacle with a sympathetic hero arc.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 21213 -- Artificial Intelligence: AI 2001 +, 406158 -- Spider-Man 2003 +, 5 +, 'guyn1414' +, 'Both are warmly made 1970s TV series, but the switch from girls-at-work sitcom to serious legal drama will confuse fans of either.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10702 -- Alice Doesn't Live Here Anymore 1974 +, 395271 -- Laverne & Shirley 1976 +, 8 +, 'guyn1414' +, 'Both follow working-class women in the 1970s finding resilience and humor while chasing independence.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14157 -- American Reunion, An 2003 +, 11286 -- All In 2005 +, 8 +, 'guyn1414' +, 'Both are ensemble comedies about a group of friends reuniting and rediscovering who they are together.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30962 -- Batman Beyond: The Movie 1999 +, 30965 -- Batman Forever 1995 +, 5 +, 'guyn1414' +, 'Both feature a young Batman finding his footing, but the futuristic sci-fi setting of Beyond feels like a different franchise entirely.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 406158 -- Spider-Man 2003 +, 393012 -- Iron Man 1966 +, 8 +, 'guyn1414' +, 'Both follow Marvel heroes whose cleverness and gadgetry are just as important as their physical abilities.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 399427 -- Night Gallery 1970 +, 726 -- 100 Years of Horror: Giants and Dinosaurs 1996 +, 8 +, 'guyn1414' +, 'Both celebrate the craft and legacy of horror and the uncanny, one through original stories, one through history.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 25192 -- Aviator, The 2004 +, 14157 -- American Reunion, An 2003 +, 5 +, 'guyn1414' +, 'Both are 70s dramas about resilient Americans, but the tonal gap between a sitcom road movie and a courtroom procedural is too wide.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30968 -- Batman Returns (1992/II) 1992 +, 30951 -- Batman & Mr. Freeze: SubZero 1998 +, 8 +, 'guyn1414' +, 'Both give a tragic dimension to the villain that makes Batmans conflict feel genuinely emotional.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 395271 -- Laverne & Shirley 1976 +, 400612 -- Owen Marshall: Counselor at Law 1971 +, 7 +, 'guyn1414' +, 'Both are warm, character-rich 1970s TV productions that hold up as portraits of American working life.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10920 -- Aliens 1986 +, 25192 -- Aviator, The 2004 +, 5 +, 'guyn1414' +, 'Both follow obsessive overachievers, but Aliens fans expecting creature action will find Aviators boardroom anxiety deeply unrewarding.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30965 -- Batman Forever 1995 +, 30962 -- Batman Beyond: The Movie 1999 +, 8 +, 'guyn1414' +, 'Both treat Batman as a legacy and explore what it means to pass on the cowl to the next generation.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 379931 -- Amazing Stories 1985 +, 21213 -- Artificial Intelligence: AI 2001 +, 5 +, 'guyn1414' +, 'Both are about men who gamble big, but the poker-comedy world of All In has none of Aviators scope, tragedy, or visual ambition.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 383395 -- Captain America 1966 +, 406158 -- Spider-Man 2003 +, 8 +, 'guyn1414' +, 'Both are Marvel adaptations that put a righteous, relatable hero at the center of a dangerous world.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 400612 -- Owen Marshall: Counselor at Law 1971 +, 108 -- 'G' Men 1935 +, 8 +, 'guyn1414' +, 'Both are classic American dramas about moral authority and the personal cost of defending justice.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14132 -- American Pie 2 2001 +, 10702 -- Alice Doesn't Live Here Anymore 1974 +, 5 +, 'guyn1414' +, 'Both involve characters on the road to independence, but a 1974 feminist drama and a raunchy teen sex comedy have nothing to say to each other.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 11286 -- All In 2005 +, 25192 -- Aviator, The 2004 +, 7 +, 'guyn1414' +, 'Both are about men who bet everything on their own abilities and have to live with the consequences.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 406158 -- Spider-Man 2003 +, 381392 -- Batman Beyond 1999 +, 8 +, 'guyn1414' +, 'Both feature teenage heroes learning to carry the weight of a double life in a dangerous city.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30951 -- Batman & Mr. Freeze: SubZero 1998 +, 379290 -- Adventures of Batman, The 1969 +, 8 +, 'guyn1414' +, 'Both are animated Batman stories that find the humanity inside the hero beneath the cape and cowl.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 399427 -- Night Gallery 1970 +, 13396 -- Amazing Stories: Book One 1992 +, 9 +, 'guyn1414' +, 'Both anthologies use the supernatural to deliver moral fables with memorable twist endings.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10702 -- Alice Doesn't Live Here Anymore 1974 +, 400612 -- Owen Marshall: Counselor at Law 1971 +, 7 +, 'guyn1414' +, 'Both are 1970s dramas about resilient, self-determined Americans navigating a changing society.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30952 -- Batman & Robin 1997 +, 30965 -- Batman Forever 1995 +, 9 +, 'guyn1414' +, 'Both films embrace the theatrical, colorful excess of the Schumacher Batman era as a feature, not a flaw.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 393012 -- Iron Man 1966 +, 383395 -- Captain America 1966 +, 10 +, 'guyn1414' +, 'Two halves of the same 1966 Marvel animated slate, sharing the same retro heroic optimism.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 21213 -- Artificial Intelligence: AI 2001 +, 379931 -- Amazing Stories 1985 +, 7 +, 'guyn1414' +, 'Both blend wonder and melancholy in speculative fiction stories with a strong Spielberg sensibility.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14157 -- American Reunion, An 2003 +, 10702 -- Alice Doesn't Live Here Anymore 1974 +, 7 +, 'guyn1414' +, 'Both examine what happens when a person returns to their roots and has to reckon with their younger self.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30965 -- Batman Forever 1995 +, 383395 -- Captain America 1966 +, 8 +, 'guyn1414' +, 'Both are exuberant, crowd-pleasing superhero films that celebrate their hero with zero ironic distance.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 405119 -- Sherlock Holmes 1951 +, 108 -- 'G' Men 1935 +, 9 +, 'guyn1414' +, 'Both are classic-era detective and law enforcement stories built on wit, deduction, and moral certainty.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 7341 -- Aerosmith: Big Ones You Can Look at 1994 +, 395271 -- Laverne & Shirley 1976 +, 7 +, 'guyn1414' +, 'Both are crowd-pleasing, high-energy American entertainment that defined their respective eras.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10920 -- Aliens 1986 +, 10702 -- Alice Doesn't Live Here Anymore 1974 +, 7 +, 'guyn1414' +, 'Both follow a woman in an impossible situation who refuses to break and fights her way to survival.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30968 -- Batman Returns (1992/II) 1992 +, 30965 -- Batman Forever 1995 +, 8 +, 'guyn1414' +, 'Both are stylish, villain-centric Batman films where the bad guys are almost more compelling than the hero.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 25192 -- Aviator, The 2004 +, 21213 -- Artificial Intelligence: AI 2001 +, 8 +, 'guyn1414' +, 'Both are about brilliant minds consumed by an impossible dream they can never fully reach.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 13343 -- Amazing Adventures of Spider-Man, The 1999 +, 381392 -- Batman Beyond 1999 +, 8 +, 'guyn1414' +, 'Both are 1999 theme-park and animated superhero productions that pushed immersive hero storytelling forward.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 383395 -- Captain America 1966 +, 30951 -- Batman & Mr. Freeze: SubZero 1998 +, 7 +, 'guyn1414' +, 'Both are animated superhero productions where the heros moral clarity is the emotional anchor.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 11147 -- All American Hero 1999 +, 383395 -- Captain America 1966 +, 8 +, 'guyn1414' +, 'Both celebrate the patriotic American hero archetype and the ideal of service over self-interest.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 3634 -- A&E Biography: Captain Bligh - Mutiny on the Bounty 1996 +, 399427 -- Night Gallery 1970 +, 7 +, 'guyn1414' +, 'Both are documentary-style TV productions that dig into dark, morally complex human stories.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 11147 -- All American Hero 1999 +, 406158 -- Spider-Man 2003 +, 7 +, 'guyn1414' +, 'Both center on the tension between personal sacrifice and public heroism in an American setting.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10920 -- Aliens 1986 +, 399427 -- Night Gallery 1970 +, 7 +, 'guyn1414' +, 'Both lean into dread and the unknown, using atmosphere as a tool before resorting to explicit horror.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30962 -- Batman Beyond: The Movie 1999 +, 406158 -- Spider-Man 2003 +, 8 +, 'guyn1414' +, 'Both follow a young man stepping into a superhero legacy while navigating high school pressures.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 379290 -- Adventures of Batman, The 1969 +, 393012 -- Iron Man 1966 +, 8 +, 'guyn1414' +, 'Both are beloved 1960s animated hero shows that gave kids their first real taste of comic-book storytelling.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 395271 -- Laverne & Shirley 1976 +, 14132 -- American Pie 2 2001 +, 5 +, 'guyn1414' +, 'Both are ensemble comedies, but the crude college humor of Pie is a jarring mismatch for fans of the warm workplace sitcom.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14132 -- American Pie 2 2001 +, 11286 -- All In 2005 +, 8 +, 'guyn1414' +, 'Both are ensemble comedies where male bonding rituals are the source of both laughs and genuine feeling.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 405119 -- Sherlock Holmes 1951 +, 400612 -- Owen Marshall: Counselor at Law 1971 +, 8 +, 'guyn1414' +, 'Both are smart procedural dramas built on a single brilliant mind dismantling deception piece by piece.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 726 -- 100 Years of Horror: Giants and Dinosaurs 1996 +, 399427 -- Night Gallery 1970 +, 8 +, 'guyn1414' +, 'Both celebrate the legacy of horror and the macabre, one as documentary, one as original anthology.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30952 -- Batman & Robin 1997 +, 406158 -- Spider-Man 2003 +, 7 +, 'guyn1414' +, 'Both feature team-ups between heroes and use colorful action set-pieces to keep the energy high.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10702 -- Alice Doesn't Live Here Anymore 1974 +, 14132 -- American Pie 2 2001 +, 7 +, 'guyn1414' +, 'Both are about characters on the move, trying to rebuild their lives in a new city with only their instincts.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 11286 -- All In 2005 +, 406158 -- Spider-Man 2003 +, 7 +, 'guyn1414' +, 'Both are about young men who go all-in on a risky bet and discover who they really are under pressure.' +, NULL +); + + + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30965 -- Batman Forever 1995 +, 30957 -- Batman and Robin 1949 +, 2 +, 'guyn1414' +, 'Both feature the Dynamic Duo, but the 1949 serial is a slow, low-budget cliffhanger that kills all the fun.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30965 -- Batman Forever 1995 +, 30961 -- Batman Beyond: Return of the Joker (2000/I) 2000 +, 2 +, 'guyn1414' +, 'Both are Batman productions, but this dark direct-to-video film strips away everything that made the films fun.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30952 -- Batman & Robin 1997 +, 30957 -- Batman and Robin 1949 +, 3 +, 'guyn1414' +, 'Both have the exact same title and hero duo, but the serials plodding pacing will disappoint fans of the 90s film.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10920 -- Aliens 1986 +, 10830 -- Alien 1979 +, 4 +, 'guyn1414' +, 'Both follow Ripley against the same creature, but the original is a slow haunted-house film fans of the action sequel will find frustrating.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10920 -- Aliens 1986 +, 10945 -- Alien 1992 +, 3 +, 'guyn1414' +, 'Both are Alien sequels, but this bleak prison entry ditches the action formula entirely and kills beloved characters early.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 406158 -- Spider-Man 2003 +, 30961 -- Batman Beyond: Return of the Joker (2000/I) 2000 +, 3 +, 'guyn1414' +, 'Both are superhero films aimed at fans of animated heroes, but this one is surprisingly dark and traumatic for the same audience.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 383395 -- Captain America 1966 +, 379331 -- Adventures of Sherlock Holmes, The 1984 +, 3 +, 'guyn1414' +, 'Both are classic adventure heroes in long-running adaptations, but the 1984 Holmes series is slow and procedurally dry.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 405119 -- Sherlock Holmes 1951 +, 379331 -- Adventures of Sherlock Holmes, The 1984 +, 4 +, 'guyn1414' +, 'Both star the same iconic detective, but the 1984 series is a stiff, over-literal adaptation that lacks the 1951 versions spark.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 399427 -- Night Gallery 1970 +, 13395 -- Amazing Stories: Book Four 1992 +, 2 +, 'guyn1414' +, 'Both are TV anthology collections, but Book Four scraped the weakest episodes and lacks the Gallerys consistent craft.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 379931 -- Amazing Stories 1985 +, 13395 -- Amazing Stories: Book Four 1992 +, 2 +, 'guyn1414' +, 'The original series was sharp and inventive; Book Four is the leftovers, with the weakest episodes dumped into one release.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14132 -- American Pie 2 2001 +, 1038 -- 13 Going On 30 2004 +, 2 +, 'guyn1414' +, 'Both are early-2000s coming-of-age comedies, but the squeaky-clean body-swap romance has nothing in common with Pies crude humor.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 25192 -- Aviator, The 2004 +, 30686 -- Basketball Diaries, The 1995 +, 3 +, 'guyn1414' +, 'Both are DiCaprio biopics about obsession and self-destruction, but Diaries is a grim, unglamorous addiction story with none of Aviators scope.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 25192 -- Aviator, The 2004 +, 8183 -- Age of Innocence, The 1993 +, 3 +, 'guyn1414' +, 'Both are lavish period dramas about men trapped by their own obsessions, but Age of Innocence moves at a glacial, suffocating pace.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 21213 -- Artificial Intelligence: AI 2001 +, 22651 -- Astronaut's Wife, The 1999 +, 3 +, 'guyn1414' +, 'Both are sci-fi films about humanity blurring with the alien, but Astronauts Wife replaces wonder with cheap paranoia thriller beats.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 21213 -- Artificial Intelligence: AI 2001 +, 9813 -- Aladdin in Nasira's Revenge 2001 +, 2 +, 'guyn1414' +, 'Both are 2001 animated stories about a young outsider searching for belonging, but this video-game adaptation is forgettable noise.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10702 -- Alice Doesn't Live Here Anymore 1974 +, 12744 -- Always 1989 +, 4 +, 'guyn1414' +, 'Both are sentimental dramas about love and moving on, but Always is a soft-focus fantasy that lacks any of Alices grit and honesty.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 395271 -- Laverne & Shirley 1976 +, 382208 -- Blansky's Beauties 1977 +, 2 +, 'guyn1414' +, 'Both are Happy Days spin-offs from the same network era, but Blanskys lasted one season because it never found a reason to exist.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 395271 -- Laverne & Shirley 1976 +, 391006 -- Happy Days 1974 +, 4 +, 'guyn1414' +, 'Laverne came from Happy Days, but the spin-off is far sharper; returning to the source feels slow and toothless by comparison.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 398232 -- Mork & Mindy 1978 +, 382208 -- Blansky's Beauties 1977 +, 2 +, 'guyn1414' +, 'Both are late-70s ABC sitcoms from the Happy Days orbit, but Blanskys is a cynical cash-grab that lacks Morks genuine charm.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 398232 -- Mork & Mindy 1978 +, 397250 -- Me and the Chimp 1972 +, 3 +, 'guyn1414' +, 'Both are fish-out-of-water TV comedies about an unusual companion disrupting domestic life, but the chimp gimmick wore thin in episode one.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 400612 -- Owen Marshall: Counselor at Law 1971 +, 391006 -- Happy Days 1974 +, 3 +, 'guyn1414' +, 'Both are Universal TV series from the early 70s, but Marshall is a serious legal drama that has nothing to offer the Happy Days crowd.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 405119 -- Sherlock Holmes 1951 +, 406759 -- Strokes of Genius 1984 +, 2 +, 'guyn1414' +, 'Both are British productions from different eras, but a tennis documentary has no narrative connection to Victorian detective fiction.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30965 -- Batman Forever 1995 +, 30955 -- Batman 1989 +, 4 +, 'guyn1414' +, 'Both are Bat-films, but Schumacher replaced Burtons gothic menace with neon and camp, alienating fans of the original dark tone.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30968 -- Batman Returns (1992/II) 1992 +, 30955 -- Batman 1989 +, 4 +, 'guyn1414' +, 'The user rated the 1989 original low; both share Burtons visual excess, so the sequel will feel like more of the same problem.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30952 -- Batman & Robin 1997 +, 30959 -- Batman Begins 2005 +, 3 +, 'guyn1414' +, 'Both are Batman blockbusters, but Nolans grounded realism is the exact opposite of what made Batman and Robin enjoyable.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 406158 -- Spider-Man 2003 +, 22651 -- Astronaut's Wife, The 1999 +, 3 +, 'guyn1414' +, 'Both star Johnny Depp or feature supernatural forces invading ordinary life, but the thriller drags with no heroic release.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14132 -- American Pie 2 2001 +, 15187 -- Amsterdamned 1988 +, 3 +, 'guyn1414' +, 'Both are sequels to cult favorites, but this Dutch horror-thriller has none of the warmth or humor American Pie fans expect.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14132 -- American Pie 2 2001 +, 8183 -- Age of Innocence, The 1993 +, 2 +, 'guyn1414' +, 'Both are coming-of-age stories in a sense, but Scorseses stifling period romance is the antithesis of Pies liberated energy.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10920 -- Aliens 1986 +, 15187 -- Amsterdamned 1988 +, 4 +, 'guyn1414' +, 'Both are late-80s action-horror films with a lone cop or soldier hunting a deadly creature, but Amsterdamned is far duller.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10920 -- Aliens 1986 +, 22651 -- Astronaut's Wife, The 1999 +, 3 +, 'guyn1414' +, 'Both are sci-fi films about alien contamination threatening humans, but Wife replaces Aliens propulsive action with sluggish dread.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 25192 -- Aviator, The 2004 +, 1121 -- 1492: Conquest of Paradise 1992 +, 3 +, 'guyn1414' +, 'Both are sprawling biopics about driven men conquering new frontiers, but 1492 is a punishing, slow-burn epic with no emotional payoff.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 21213 -- Artificial Intelligence: AI 2001 +, 20253 -- Arizona Dream 1993 +, 4 +, 'guyn1414' +, 'Both are dreamlike films about a young man searching for meaning in a surreal world, but Arizona Dream meanders with no real destination.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 399427 -- Night Gallery 1970 +, 724 -- 100 Years of Horror 1996 +, 2 +, 'guyn1414' +, 'Both deal in horror history, but the generic overview lacks the Night Gallerys craft and is little more than a bland clip show.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 399427 -- Night Gallery 1970 +, 735 -- 100 Years of Horror: The Monster Makers 1996 +, 4 +, 'guyn1414' +, 'Both explore horror craft, but Monster Makers focuses on behind-the-scenes dryness that loses the storytelling magic of Night Gallery.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 726 -- 100 Years of Horror: Giants and Dinosaurs 1996 +, 724 -- 100 Years of Horror 1996 +, 3 +, 'guyn1414' +, 'Same series, but the general overview is a weak entry compared to the sharply focused Giants and Dinosaurs installment.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 728 -- 100 Years of Horror: Scream Queens 1996 +, 735 -- 100 Years of Horror: The Monster Makers 1996 +, 4 +, 'guyn1414' +, 'Both are volumes of the same series, but Monster Makers is the least inspired entry, lacking the personality of Scream Queens.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 13396 -- Amazing Stories: Book One 1992 +, 13395 -- Amazing Stories: Book Four 1992 +, 2 +, 'guyn1414' +, 'Same show, different quality: Book One has the best episodes while Book Four is the discarded remainder.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30965 -- Batman Forever 1995 +, 30686 -- Basketball Diaries, The 1995 +, 3 +, 'guyn1414' +, 'Both are 1995 films with a charismatic lead fighting a threatening world, but the heroin nightmare of Diaries has nothing for Batman fans.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 383395 -- Captain America 1966 +, 30961 -- Batman Beyond: Return of the Joker (2000/I) 2000 +, 2 +, 'guyn1414' +, 'Both are animated superhero productions, but this Joker film is traumatically dark compared to the breezy 60s Marvel series.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10702 -- Alice Doesn't Live Here Anymore 1974 +, 8183 -- Age of Innocence, The 1993 +, 4 +, 'guyn1414' +, 'Both are character studies of a woman trapped by social expectation, but Scorseses version is cold and suffocating rather than warm.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 395271 -- Laverne & Shirley 1976 +, 397250 -- Me and the Chimp 1972 +, 3 +, 'guyn1414' +, 'Both are working-class ABC sitcoms about an odd-couple dynamic, but the chimp sitcom is painfully one-note by comparison.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14157 -- American Reunion, An 2003 +, 1038 -- 13 Going On 30 2004 +, 2 +, 'guyn1414' +, 'Both are nostalgia-driven comedies about recapturing youth, but 13 Going On 30 sanitizes everything that made Reunion relatable.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 7341 -- Aerosmith: Big Ones You Can Look at 1994 +, 179 -- 'N Sync: Live From Madison Square Garden 2000 +, 4 +, 'guyn1414' +, 'Both are live concert films by major pop acts, but the synthetic pop production is a jarring mismatch for rock fans.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 661 -- 10,000 Maniacs Time Capsule 1990 +, 179 -- 'N Sync: Live From Madison Square Garden 2000 +, 3 +, 'guyn1414' +, 'Both are music video and concert collections, but Time Capsule has artistic depth while Madison Square Garden is pure pop spectacle.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10920 -- Aliens 1986 +, 28631 -- Balloon 1991 +, 3 +, 'guyn1414' +, 'Both involve a group attempting a desperate escape from a threatening environment, but Balloon is a slow historical drama with no genre thrills.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30962 -- Batman Beyond: The Movie 1999 +, 30961 -- Batman Beyond: Return of the Joker (2000/I) 2000 +, 2 +, 'guyn1414' +, 'Same series, but Jokers Return is a relentlessly grim film that betrays the fun adventure tone of the original movie.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 381392 -- Batman Beyond 1999 +, 30961 -- Batman Beyond: Return of the Joker (2000/I) 2000 +, 2 +, 'guyn1414' +, 'Fans of the series will expect more of the same, but this film goes shockingly dark in ways the show never prepared you for.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 405119 -- Sherlock Holmes 1951 +, 30686 -- Basketball Diaries, The 1995 +, 2 +, 'guyn1414' +, 'Both follow a brilliant young man as the world closes in, but grim heroin addiction is the opposite of elegant Victorian detective work.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 406158 -- Spider-Man 2003 +, 13395 -- Amazing Stories: Book Four 1992 +, 2 +, 'guyn1414' +, 'Both involve fantastical stories for younger audiences, but a collection of leftover TV anthology episodes has none of Spideys energy.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 21213 -- Artificial Intelligence: AI 2001 +, 12744 -- Always 1989 +, 4 +, 'guyn1414' +, 'Both are Spielberg films about love that transcends physical boundaries, but Always is schmaltzy and lightweight compared to AIs ambition.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30952 -- Batman & Robin 1997 +, 30955 -- Batman 1989 +, 4 +, 'guyn1414' +, 'Both are studio Batman films, but the user rated the original low, and the campy neon sequel doubles down on everything that did not work.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14132 -- American Pie 2 2001 +, 30686 -- Basketball Diaries, The 1995 +, 3 +, 'guyn1414' +, 'Both follow young men bonding and testing limits, but Diaries swaps summer laughs for a harrowing descent into heroin addiction.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 25192 -- Aviator, The 2004 +, 20253 -- Arizona Dream 1993 +, 3 +, 'guyn1414' +, 'Both involve aviation as a metaphor for impossible dreams, but Arizona Dream is a surreal, plotless reverie compared to Aviators propulsive biopic.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10702 -- Alice Doesn't Live Here Anymore 1974 +, 30686 -- Basketball Diaries, The 1995 +, 3 +, 'guyn1414' +, 'Both follow a protagonist losing everything and rebuilding from zero, but Diaries is far darker and more nihilistic than Alices warmth.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 399427 -- Night Gallery 1970 +, 9813 -- Aladdin in Nasira's Revenge 2001 +, 2 +, 'guyn1414' +, 'Both are fantasy storytelling products, but a licensed video-game tie-in cartoon has nothing in common with Serlings craft.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 395271 -- Laverne & Shirley 1976 +, 398571 -- Murphy Brown 1988 +, 2 +, 'guyn1414' +, 'Both are network TV sitcoms about strong women in professional environments, but Murphy Brown is a cold, preachy newsroom comedy.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 400612 -- Owen Marshall: Counselor at Law 1971 +, 398571 -- Murphy Brown 1988 +, 2 +, 'guyn1414' +, 'Both are network TV dramas set around professionals, but Murphy Brown is a cynical comedy that shares no tone with Marshalls earnest legal drama.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30965 -- Batman Forever 1995 +, 30959 -- Batman Begins 2005 +, 4 +, 'guyn1414' +, 'Both are Batman origin-adjacent films, but Nolans brutalist realism is the deliberate death of everything Schumacher celebrated.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 393012 -- Iron Man 1966 +, 30961 -- Batman Beyond: Return of the Joker (2000/I) 2000 +, 2 +, 'guyn1414' +, 'Both are animated superhero productions, but this 2000 film is far too dark and violent for fans of the cheerful 1966 Marvel cartoon.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 379290 -- Adventures of Batman, The 1969 +, 30957 -- Batman and Robin 1949 +, 3 +, 'guyn1414' +, 'Both are early Batman adaptations that predate the modern franchise, but the 1949 serial is far too slow and cheap even by those standards.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 405119 -- Sherlock Holmes 1951 +, 398571 -- Murphy Brown 1988 +, 2 +, 'guyn1414' +, 'Both feature a sharp-minded professional who dominates every room, but the cynical 80s newsroom has nothing in common with Baker Street.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14157 -- American Reunion, An 2003 +, 15187 -- Amsterdamned 1988 +, 3 +, 'guyn1414' +, 'Both are follow-ups to cult genre films, but Amsterdamned is a dour Dutch slasher that will baffle anyone expecting more of the Pie gang.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 7341 -- Aerosmith: Big Ones You Can Look at 1994 +, 178 -- 'N Sync: 'Ntimate Holiday Special 2000 +, 4 +, 'guyn1414' +, 'Both are music video and performance packages, but the holiday special is pure manufactured pop, miles away from Aerosmiths energy.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10920 -- Aliens 1986 +, 9813 -- Aladdin in Nasira's Revenge 2001 +, 2 +, 'guyn1414' +, 'Both are action-adventure stories with a young person fighting back against an evil force, but the comparison ends there entirely.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30968 -- Batman Returns (1992/II) 1992 +, 30957 -- Batman and Robin 1949 +, 3 +, 'guyn1414' +, 'Both feature Batman battling multiple enemies, but the 1949 serial lacks any of the visual flair and dark poetry of Returns.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 11286 -- All In 2005 +, 28631 -- Balloon 1991 +, 3 +, 'guyn1414' +, 'Both involve high-stakes escapes with everything on the line, but Balloon is a slow historical drama that trades tension for authenticity.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 383395 -- Captain America 1966 +, 30957 -- Batman and Robin 1949 +, 3 +, 'guyn1414' +, 'Both are low-budget costumed hero productions from earlier decades, but even by those standards the 1949 serial drags badly.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 21213 -- Artificial Intelligence: AI 2001 +, 1121 -- 1492: Conquest of Paradise 1992 +, 3 +, 'guyn1414' +, 'Both explore the human drive to venture into the unknown, but 1492 buries its ambition under three hours of ponderous spectacle.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14132 -- American Pie 2 2001 +, 397250 -- Me and the Chimp 1972 +, 2 +, 'guyn1414' +, 'Both are ensemble comedies built on a strange relationship, but the chimp premise is exactly as thin as it sounds.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 25192 -- Aviator, The 2004 +, 406759 -- Strokes of Genius 1984 +, 3 +, 'guyn1414' +, 'Both are about an obsessive pursuit of greatness in a competitive field, but a tennis documentary cannot match the cinematic scope of Aviator.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30962 -- Batman Beyond: The Movie 1999 +, 30955 -- Batman 1989 +, 4 +, 'guyn1414' +, 'Both launch a new Batman into action, but fans of Beyonds futuristic teen hero will find the gothic 1989 original a very different beast.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 406158 -- Spider-Man 2003 +, 30957 -- Batman and Robin 1949 +, 2 +, 'guyn1414' +, 'Both are costumed-hero serials in a broad sense, but the 1949 cheapie has none of the wit, action, or emotion of modern Spider-Man.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10702 -- Alice Doesn't Live Here Anymore 1974 +, 397250 -- Me and the Chimp 1972 +, 2 +, 'guyn1414' +, 'Both are character comedies about a woman finding herself in an unusual living situation, but the chimp show never rises above its premise.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 399427 -- Night Gallery 1970 +, 846 -- 101 Biggest Celebrity Oops 2004 +, 2 +, 'guyn1414' +, 'Both are anthology-style TV productions, but a celebrity blooper reel is as far from Rod Serlings craft as television gets.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10702 -- Alice Doesn't Live Here Anymore 1974 +, 7842 -- After Hours 1985 +, 7 +, 'guyn1414' +, 'Both follow a determined New Yorker pushed to the edge in a city that refuses to cooperate, with Scorsese directing both with intimate urgency.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 395271 -- Laverne & Shirley 1976 +, 406759 -- Strokes of Genius 1984 +, 2 +, 'guyn1414' +, 'Both are 1980s TV productions, but a BBC tennis documentary could not be further from the fizzy ensemble comedy of Laverne and Shirley.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 379931 -- Amazing Stories 1985 +, 9813 -- Aladdin in Nasira's Revenge 2001 +, 2 +, 'guyn1414' +, 'Both are fantasy adventure stories, but a cheap licensed video-game cartoon has none of the invention of Spielbergs anthology.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 11286 -- All In 2005 +, 33 -- $windle 2002 +, 4 +, 'guyn1414' +, 'Both revolve around financial schemes and the world of gambling, but Swindle lacks the comedic energy and character work of All In.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14157 -- American Reunion, An 2003 +, 8183 -- Age of Innocence, The 1993 +, 2 +, 'guyn1414' +, 'Both look back on formative years from an adult perspective, but Age of Innocence is a suffocating Scorsese study with zero laughs.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10920 -- Aliens 1986 +, 1121 -- 1492: Conquest of Paradise 1992 +, 3 +, 'guyn1414' +, 'Both follow determined humans pushing into hostile, uncharted territory, but 1492 is a sluggish epic that buries its tension in ceremony.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30952 -- Batman & Robin 1997 +, 30961 -- Batman Beyond: Return of the Joker (2000/I) 2000 +, 2 +, 'guyn1414' +, 'Both take the Batman franchise in a new direction, but Jokers Return goes full dark tragedy where Batman and Robin went full party.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 661 -- 10,000 Maniacs Time Capsule 1990 +, 178 -- 'N Sync: 'Ntimate Holiday Special 2000 +, 3 +, 'guyn1414' +, 'Both are music package releases, but the sincerity of 10,000 Maniacs is worlds away from this manufactured holiday pop product.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 400612 -- Owen Marshall: Counselor at Law 1971 +, 382208 -- Blansky's Beauties 1977 +, 2 +, 'guyn1414' +, 'Both are Universal TV productions from the same era, but Blanskys Beauties is a frivolous flop that insults Marshalls dramatic craft.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 21213 -- Artificial Intelligence: AI 2001 +, 15187 -- Amsterdamned 1988 +, 3 +, 'guyn1414' +, 'Both follow a protagonist desperately pursuing an impossible goal through a hostile urban environment, but the Dutch thriller is joyless.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 25192 -- Aviator, The 2004 +, 22651 -- Astronaut's Wife, The 1999 +, 3 +, 'guyn1414' +, 'Both are about a brilliant man whose ambitions in the sky drive him to the edge of sanity, but Astronauts Wife is a cheap knock-off thriller.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 11147 -- All American Hero 1999 +, 30957 -- Batman and Robin 1949 +, 3 +, 'guyn1414' +, 'Both celebrate American heroism on a low budget, but the 1949 serials static staging will bore anyone expecting real heroics.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30968 -- Batman Returns (1992/II) 1992 +, 30961 -- Batman Beyond: Return of the Joker (2000/I) 2000 +, 2 +, 'guyn1414' +, 'Both push Batman into very dark psychological territory, but Jokers Return is nihilistically grim in ways even Returns avoids.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 383395 -- Captain America 1966 +, 398571 -- Murphy Brown 1988 +, 2 +, 'guyn1414' +, 'Both are broadcast TV productions, but a cynical 80s newsroom sitcom and a 60s patriotic superhero cartoon share absolutely nothing.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 405119 -- Sherlock Holmes 1951 +, 391006 -- Happy Days 1974 +, 2 +, 'guyn1414' +, 'Both are long-running TV series built on a beloved lead character, but Happy Days nostalgia has no crossover with Victorian detective craft.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30965 -- Batman Forever 1995 +, 11147 -- All American Hero 1999 +, 8 +, 'guyn1414' +, 'Both celebrate American heroism with optimism and spectacle, putting the ideal of the hero above all else.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 406158 -- Spider-Man 2003 +, 11286 -- All In 2005 +, 7 +, 'guyn1414' +, 'Both are about someone with everything to lose who goes all-in on a high-risk gamble with their own identity.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10702 -- Alice Doesn't Live Here Anymore 1974 +, 3634 -- A&E Biography: Captain Bligh - Mutiny on the Bounty 1996 +, 7 +, 'guyn1414' +, 'Both center on a strong-willed person who refuses to let a hostile environment break their sense of self.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30951 -- Batman & Mr. Freeze: SubZero 1998 +, 30965 -- Batman Forever 1995 +, 8 +, 'guyn1414' +, 'Both are high-quality Batman productions from the same decade that treat the villain with genuine sympathy.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30968 -- Batman Returns (1992/II) 1992 +, 30952 -- Batman & Robin 1997 +, 7 +, 'guyn1414' +, 'Both are villain showcase Batman films where the heroes are almost upstaged by their own antagonists.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 21213 -- Artificial Intelligence: AI 2001 +, 16730 -- Angel on My Shoulder 1997 +, 7 +, 'guyn1414' +, 'Both follow a being who is not quite human desperately trying to understand love and what it means to belong.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 108 -- 'G' Men 1935 +, 30965 -- Batman Forever 1995 +, 7 +, 'guyn1414' +, 'Both are crime-fighting hero stories that tap into the excitement of law and order as pure entertainment.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14132 -- American Pie 2 2001 +, 395271 -- Laverne & Shirley 1976 +, 7 +, 'guyn1414' +, 'Both are ensemble comedies about friends navigating work, romance, and the gap between who they are and who they want to be.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 381392 -- Batman Beyond 1999 +, 406158 -- Spider-Man 2003 +, 8 +, 'guyn1414' +, 'Both are beloved superhero adaptations that center on a teenager discovering his powers in a dangerous world.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 25192 -- Aviator, The 2004 +, 108 -- 'G' Men 1935 +, 7 +, 'guyn1414' +, 'Both celebrate American ambition and the idea that one driven individual can reshape the world around them.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 726 -- 100 Years of Horror: Giants and Dinosaurs 1996 +, 725 -- 100 Years of Horror: Freaks 1996 +, 9 +, 'guyn1414' +, 'Both are richly researched volumes from the same series, each spotlighting a distinct strand of horror history.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 729 -- 100 Years of Horror: Sorcerers 1996 +, 725 -- 100 Years of Horror: Freaks 1996 +, 8 +, 'guyn1414' +, 'Both volumes cover the same classic horror era and complement each other perfectly as a double feature.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30965 -- Batman Forever 1995 +, 379931 -- Amazing Stories 1985 +, 8 +, 'guyn1414' +, 'Both are Spielberg-adjacent blockbuster entertainment from the 80s and 90s that blend spectacle with a genuine love of storytelling.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 398232 -- Mork & Mindy 1978 +, 400612 -- Owen Marshall: Counselor at Law 1971 +, 7 +, 'guyn1414' +, 'Both are well-crafted American TV dramas of the 1970s where a strong lead anchors every episode.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10702 -- Alice Doesn't Live Here Anymore 1974 +, 21213 -- Artificial Intelligence: AI 2001 +, 7 +, 'guyn1414' +, 'Both follow a protagonist who defies the worlds expectations and pushes toward a future on their own terms.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30965 -- Batman Forever 1995 +, 393012 -- Iron Man 1966 +, 7 +, 'guyn1414' +, 'Both are superhero productions that celebrate the fun, larger-than-life side of comic-book heroism.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 14157 -- American Reunion, An 2003 +, 406158 -- Spider-Man 2003 +, 7 +, 'guyn1414' +, 'Both are 2003 crowd-pleasers about groups of people pulling together when everything seems to be falling apart.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 10920 -- Aliens 1986 +, 30965 -- Batman Forever 1995 +, 7 +, 'guyn1414' +, 'Both are mid-budget blockbusters that turned their sequels into definitive action spectacles of their decade.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 395271 -- Laverne & Shirley 1976 +, 10702 -- Alice Doesn't Live Here Anymore 1974 +, 8 +, 'guyn1414' +, 'Both are 1970s stories about working-class women refusing to be defined by the men around them.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 30952 -- Batman & Robin 1997 +, 381392 -- Batman Beyond 1999 +, 7 +, 'guyn1414' +, 'Both end one Batman era and begin another, asking what the legacy of the Dark Knight means for the next generation.' +, NULL +); + +INSERT INTO imdb_ijs.movies_recommendations VALUES +( 406158 -- Spider-Man 2003 +, 30951 -- Batman & Mr. Freeze: SubZero 1998 +, 7 +, 'guyn1414' +, 'Both are superhero stories where the emotional core is the hero trying to protect the people he loves.' +, NULL +); diff --git a/recommendations_goldstandard/recommendations/movie_pairs_ranking_logic_nevo-a.sql b/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_logic_nevo-a.sql similarity index 100% rename from recommendations_goldstandard/recommendations/movie_pairs_ranking_logic_nevo-a.sql rename to recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_logic_nevo-a.sql diff --git a/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_msdevlab.sql b/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_msdevlab.sql new file mode 100644 index 00000000..0596d6f0 --- /dev/null +++ b/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_msdevlab.sql @@ -0,0 +1,2249 @@ +-- Movie Pairs Ranking +-- Suggested by: msdevlab + +-- GOOD RECOMMENDATIONS + +-- Harry Potter pairs +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139655, -- Harry Potter and the Prisoner of Azkaban 2004 + 139652, -- Harry Potter and the Goblet of Fire 2005 + 10, + 'msdevlab', + 'Prisoner of Azkaban and Goblet of Fire are both high-point Harry Potter entries that raise the stakes, sharpen the tone, and deliver the most emotionally involving chapters of the series.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139652, -- Harry Potter and the Goblet of Fire 2005 + 139654, -- Harry Potter and the Order of the Phoenix 2007 + 10, + 'msdevlab', + 'Goblet of Fire and Order of the Phoenix both deepen Voldemort''s return while giving Harry personal emotional stakes beyond a typical school adventure.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139650, -- Harry Potter and the Chamber of Secrets 2002 + 139655, -- Harry Potter and the Prisoner of Azkaban 2004 + 10, + 'msdevlab', + 'Chamber of Secrets and Prisoner of Azkaban both work as Hogwarts mysteries, moving from the Chamber threat to the Sirius Black reveal while keeping Harry''s friendships central.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139650, -- Harry Potter and the Chamber of Secrets 2002 + 139657, -- Harry Potter and the Sorcerer's Stone 2001 + 10, + 'msdevlab', + 'Chamber of Secrets is a strong follow-up to Sorcerer''s Stone because both keep the magical-school wonder, the trio''s teamwork, and a mystery hidden inside Hogwarts.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139654, -- Harry Potter and the Order of the Phoenix 2007 + 139653, -- Harry Potter and the Half-Blood Prince 2008 + 10, + 'msdevlab', + 'Order of the Phoenix and Half-Blood Prince both focus on Harry carrying heavier emotional pressure while Hogwarts becomes darker, more political, and less safe.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139654, -- Harry Potter and the Order of the Phoenix 2007 + 139655, -- Harry Potter and the Prisoner of Azkaban 2004 + 9, + 'msdevlab', + 'Order of the Phoenix and Prisoner of Azkaban both focus on Harry''s emotional frustration and feature the most compelling adult characters in the series.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, -- Harry Potter and the Sorcerer's Stone 2001 + 139655, -- Harry Potter and the Prisoner of Azkaban 2004 + 9, + 'msdevlab', + 'Sorcerer''s Stone introduces the world that Prisoner of Azkaban expands brilliantly, making it the natural next recommendation for fans of the magical school setting.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139650, -- Harry Potter and the Chamber of Secrets 2002 + 139652, -- Harry Potter and the Goblet of Fire 2005 + 9, + 'msdevlab', + 'Chamber of Secrets fans who enjoy magical mysteries will find Goblet of Fire elevates the excitement with the Triwizard Tournament and Voldemort''s dramatic return.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139653, -- Harry Potter and the Half-Blood Prince 2008 + 139655, -- Harry Potter and the Prisoner of Azkaban 2004 + 9, + 'msdevlab', + 'Half-Blood Prince and Prisoner of Azkaban both build mystery around hidden truths about characters Harry trusted, linking them thematically.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, -- Harry Potter and the Sorcerer's Stone 2001 + 139654, -- Harry Potter and the Order of the Phoenix 2007 + 9, + 'msdevlab', + 'Sorcerer''s Stone begins the friendship that Order of the Phoenix brings to its emotional peak, making both essential for the full character arc.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139653, -- Harry Potter and the Half-Blood Prince 2008 + 139652, -- Harry Potter and the Goblet of Fire 2005 + 9, + 'msdevlab', + 'Half-Blood Prince and Goblet of Fire both raise the darkness of Voldemort''s threat while centering each story on a specific dramatic event at Hogwarts.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, -- Harry Potter and the Sorcerer's Stone 2001 + 139652, -- Harry Potter and the Goblet of Fire 2005 + 9, + 'msdevlab', + 'Sorcerer''s Stone''s introduction to Hogwarts leads naturally into Goblet of Fire, where the same magical world becomes more competitive, dangerous, and emotionally mature.', + NULL +); + + +-- Star Wars pairs +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313478, -- Star Wars: Episode V - The Empire Strikes Back 1980 + 313479, -- Star Wars: Episode VI - Return of the Jedi 1983 + 10, + 'msdevlab', + 'The Empire Strikes Back''s cliffhanger ending makes Return of the Jedi''s rescue and final Vader confrontation deeply satisfying for fans of the original trilogy.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313478, -- Star Wars: Episode V - The Empire Strikes Back 1980 + 194502, -- Lord of the Rings: The Two Towers, The 2002 + 10, + 'msdevlab', + 'The Empire Strikes Back and The Two Towers are both darker middle chapters where the heroes are separated, tested, and forced to keep hope alive before the final battle.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313477, -- Star Wars: Episode III - Revenge of the Sith 2005 + 194495, -- Lord of the Rings: Return of the King, The (2003/II) 2003 + 10, + 'msdevlab', + 'Revenge of the Sith and Return of the King both feel like epic conclusions, using large battles and emotional good-versus-evil choices to give the saga real weight.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313479, -- Star Wars: Episode VI - Return of the Jedi 1983 + 194495, -- Lord of the Rings: Return of the King, The (2003/II) 2003 + 10, + 'msdevlab', + 'Return of the Jedi and Return of the King both close beloved trilogies with rescue missions, final confrontations, and a strong sense of emotional resolution.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313477, -- Star Wars: Episode III - Revenge of the Sith 2005 + 313478, -- Star Wars: Episode V - The Empire Strikes Back 1980 + 9, + 'msdevlab', + 'Revenge of the Sith and The Empire Strikes Back share the darkest emotional tone in their respective trilogies, making them natural companions for serious Star Wars fans.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313477, -- Star Wars: Episode III - Revenge of the Sith 2005 + 313479, -- Star Wars: Episode VI - Return of the Jedi 1983 + 9, + 'msdevlab', + 'Revenge of the Sith and Return of the Jedi both dramatize Vader''s legacy and the final confrontation between darkness and redemption in compelling ways.', + NULL +); + + +-- Lord of the Rings pairs +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194497, -- Lord of the Rings: The Fellowship of the Ring, The 2001 + 194502, -- Lord of the Rings: The Two Towers, The 2002 + 10, + 'msdevlab', + 'Fellowship of the Ring sets up Two Towers'' split journey brilliantly, delivering Helm''s Deep as the emotional peak of the trilogy.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194502, -- Lord of the Rings: The Two Towers, The 2002 + 194495, -- Lord of the Rings: Return of the King, The (2003/II) 2003 + 10, + 'msdevlab', + 'Two Towers builds to a level of stakes and sacrifice that Return of the King fulfills with the most emotionally complete ending in the trilogy.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194497, -- Lord of the Rings: The Fellowship of the Ring, The 2001 + 194495, -- Lord of the Rings: Return of the King, The (2003/II) 2003 + 10, + 'msdevlab', + 'Fellowship of the Ring and Return of the King bookend Frodo''s journey with the strongest emotional investment, making both essential for the full story.', + NULL +); + + +-- Superhero and comic-book pairs +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311038, -- Spider-Man 2 2004 + 311037, -- Spider-Man 2002 + 10, + 'msdevlab', + 'Spider-Man 2''s emotional depth builds directly on the 2002 original''s character setup, making both feel like one unified story about Peter Parker''s growth.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, -- Batman Begins 2005 + 162380, -- Iron Man 2005 + 10, + 'msdevlab', + 'Batman Begins and Iron Man both ground their superhero origins in realistic character psychology, making them the two most thoughtfully written superhero origin films of their era.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 142491, -- Hellboy 2004 + 142492, -- Hellboy 2 2006 + 10, + 'msdevlab', + 'Hellboy and Hellboy 2 share the same supernatural outsider charm and monster-fighting adventure, making the sequel a natural continuation for fans of the original.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311038, -- Spider-Man 2 2004 + 30959, -- Batman Begins 2005 + 10, + 'msdevlab', + 'Spider-Man 2 and Batman Begins both make superhero action meaningful by tying the set pieces to guilt, responsibility, and the hero''s doubts about the life he chose.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311038, -- Spider-Man 2 2004 + 162380, -- Iron Man 2005 + 10, + 'msdevlab', + 'Spider-Man 2 and Iron Man both balance humor, superhero spectacle, and a protagonist learning that power matters most when it is connected to responsibility.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311040, -- Spider-Man 3 2007 + 311038, -- Spider-Man 2 2004 + 9, + 'msdevlab', + 'Spider-Man 3 fans will find Spider-Man 2''s tighter and more emotionally focused version of the same Peter Parker conflict even more satisfying.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 162380, -- Iron Man 2005 + 214755, -- Minority Report 2002 + 9, + 'msdevlab', + 'Iron Man and Minority Report both feature brilliant protagonists forced to outrun the very system they once trusted, making them equally smart and thrilling.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 142491, -- Hellboy 2004 + 30959, -- Batman Begins 2005 + 9, + 'msdevlab', + 'Hellboy and Batman Begins both follow reluctant heroes with dark origins who choose to defend humanity despite the threatening nature of their own power.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311037, -- Spider-Man 2002 + 311040, -- Spider-Man 3 2007 + 9, + 'msdevlab', + 'Spider-Man and Spider-Man 3 both follow Peter Parker struggling with responsibility, romance, and identity, so the later film feels like a darker continuation of the same conflict.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, -- Batman Begins 2005 + 214755, -- Minority Report 2002 + 9, + 'msdevlab', + 'Batman Begins and Minority Report both use sleek thriller pacing, moral pressure, and a hero hunted by powerful systems to make the action feel intelligent.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 162380, -- Iron Man 2005 + 215880, -- Mission: Impossible III 2006 + 9, + 'msdevlab', + 'Iron Man and Mission: Impossible III both center on charismatic heroes facing personal danger, advanced technology, and action that depends on quick thinking rather than strength alone.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 142491, -- Hellboy 2004 + 311037, -- Spider-Man 2002 + 9, + 'msdevlab', + 'Hellboy and Spider-Man both follow outsiders with unusual powers who struggle with acceptance while still choosing to protect people who do not fully understand them.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 142492, -- Hellboy 2 2006 + 311038, -- Spider-Man 2 2004 + 9, + 'msdevlab', + 'Hellboy 2 and Spider-Man 2 both improve superhero storytelling by giving the hero stronger emotional conflict alongside creative villains and memorable action sequences.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109421, -- Fast and the Furious, The 2001 + 162380, -- Iron Man 2005 + 8, + 'msdevlab', + 'The Fast and the Furious and Iron Man both thrive on tech, speed, and charismatic heroes whose loyalty to their team drives the most exciting action sequences.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 142492, -- Hellboy 2 2006 + 162380, -- Iron Man 2005 + 8, + 'msdevlab', + 'Hellboy 2 and Iron Man both feature sarcastic heroes with unique abilities who navigate colorful team dynamics and outsized threats with wit and confidence.', + NULL +); + + +-- Mission, spy and Tom Cruise action pairs +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215880, -- Mission: Impossible III 2006 + 215876, -- Mission: Impossible 1996 + 10, + 'msdevlab', + 'Mission Impossible III and the 1996 Mission Impossible both make Ethan''s personal stakes the emotional core, delivering the best combination of suspense and action in the franchise.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 220805, -- Mr. and Mrs. Smith 2005 + 215880, -- Mission: Impossible III 2006 + 10, + 'msdevlab', + 'Mr. and Mrs. Smith''s blend of romantic tension and spy action perfectly matches Mission Impossible III''s personal stakes and mission-driven urgency.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215876, -- Mission: Impossible 1996 + 215879, -- Mission: Impossible II 2000 + 9, + 'msdevlab', + 'Mission Impossible 1996''s CIA-betrayal tension leads naturally to Mission Impossible II''s stylish action with equally strong personal stakes for Ethan Hunt.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215880, -- Mission: Impossible III 2006 + 215879, -- Mission: Impossible II 2000 + 9, + 'msdevlab', + 'Mission Impossible III and II both balance romantic tension with intense mission design, making them the two most emotionally invested entries in the franchise.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335835, -- Top Gun 1986 + 215876, -- Mission: Impossible 1996 + 9, + 'msdevlab', + 'Top Gun and Mission Impossible 1996 both feature Tom Cruise at his most intense and mission-focused, delivering some of his finest action-thriller performances.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335835, -- Top Gun 1986 + 215880, -- Mission: Impossible III 2006 + 9, + 'msdevlab', + 'Top Gun''s military-edge intensity closely matches the personal-stakes urgency of Mission Impossible III, making both Tom Cruise''s finest action films.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 370017, -- XXX 2002 + 215876, -- Mission: Impossible 1996 + 9, + 'msdevlab', + 'XXX and Mission Impossible 1996 both follow unconventional agents on high-stakes missions, combining stylish action with clever spy setups.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215875, -- Mission: Impossible 1991 + 215879, -- Mission: Impossible II 2000 + 9, + 'msdevlab', + 'The 1991 Mission: Impossible and Mission: Impossible II both rely on undercover strategy, disguises, and spy-team suspense, making them a reasonable franchise-based recommendation.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215875, -- Mission: Impossible 1991 + 215880, -- Mission: Impossible III 2006 + 9, + 'msdevlab', + 'The 1991 Mission: Impossible and Mission: Impossible III share the IMF mission structure, but the third film adds stronger urgency while keeping the same spy-operation appeal.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 370017, -- XXX 2002 + 335835, -- Top Gun 1986 + 9, + 'msdevlab', + 'XXX and Top Gun both focus on fearless, competitive men whose confidence and physical skill drive fast, high-risk action in a very entertaining way.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, -- Die Another Day 2002 + 215880, -- Mission: Impossible III 2006 + 9, + 'msdevlab', + 'Die Another Day and Mission: Impossible III both deliver modern spy action with gadgets, international threats, and a lead character pushed through stylish high-pressure missions.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 370017, -- XXX 2002 + 109421, -- Fast and the Furious, The 2001 + 8, + 'msdevlab', + 'XXX and The Fast and the Furious both celebrate extreme-sports energy and undercover missions with the same bold, adrenaline-first attitude.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, -- Die Another Day 2002 + 215876, -- Mission: Impossible 1996 + 8, + 'msdevlab', + 'Die Another Day and Mission Impossible 1996 both offer high-concept spy missions with memorable set pieces and charismatic leads.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, -- Die Another Day 2002 + 370017, -- XXX 2002 + 8, + 'msdevlab', + 'Die Another Day and XXX both feature action-first agents with gadgets and international dangers, sharing the same bold, entertaining spy-action energy.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335835, -- Top Gun 1986 + 271095, -- Raiders of the Lost Ark 1981 + 8, + 'msdevlab', + 'Top Gun and Raiders of the Lost Ark are both iconic 1980s action classics featuring magnetic heroes on high-stakes missions defined by skill, personal rivalry, and determination.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 158999, -- Independence Day 1996 + 335835, -- Top Gun 1986 + 8, + 'msdevlab', + 'Independence Day and Top Gun both deliver patriotic action built around confident heroes, teamwork, and big crowd-pleasing moments that still feel emotionally clear.', + NULL +); + + +-- Adventure franchise pairs +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, -- Pirates of the Caribbean: The Curse of the Black Pearl 2003 + 256631, -- Pirates of the Caribbean 2 2006 + 10, + 'msdevlab', + 'Pirates of the Caribbean Black Pearl''s Jack Sparrow charm and sea adventure carry directly into Dead Man''s Chest''s Davy Jones mythology with equal energy.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 271095, -- Raiders of the Lost Ark 1981 + 159172, -- Indiana Jones and the Last Crusade 1989 + 10, + 'msdevlab', + 'Raiders of the Lost Ark and Indiana Jones and the Last Crusade are both peak Indiana Jones adventures combining humor, danger, and memorable quest objects.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 271095, -- Raiders of the Lost Ark 1981 + 256632, -- Pirates of the Caribbean: The Curse of the Black Pearl 2003 + 10, + 'msdevlab', + 'Raiders of the Lost Ark and Pirates of the Caribbean share the same swashbuckling adventure spirit, with iconic heroes navigating traps, ancient mysteries, and memorable villains.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256631, -- Pirates of the Caribbean 2 2006 + 159172, -- Indiana Jones and the Last Crusade 1989 + 9, + 'msdevlab', + 'Pirates of the Caribbean 2 and The Last Crusade both combine humor, mythology, and fast adventure, with the quest itself revealing more about the heroes'' relationships.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256631, -- Pirates of the Caribbean 2 2006 + 271095, -- Raiders of the Lost Ark 1981 + 8, + 'msdevlab', + 'Pirates of the Caribbean 2 and Raiders of the Lost Ark both build adventure around dangerous treasure hunts, witty heroes, and set pieces that keep the story moving.', + NULL +); + + +-- Sci-fi and alien-action pairs +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, -- Men in Black 1997 + 158999, -- Independence Day 1996 + 10, + 'msdevlab', + 'Men in Black and Independence Day are both classic Will Smith films that blend humor with alien-invasion action in an effortlessly entertaining way.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 214755, -- Minority Report 2002 + 359297, -- War of the Worlds 2005 + 9, + 'msdevlab', + 'Minority Report and War of the Worlds are both Spielberg-directed, Tom Cruise-led sci-fi thrillers that reward viewers with intelligent action and a personal chase at the center.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 188511, -- Lethal Weapon 4 1998 + 210739, -- Men in Black 1997 + 9, + 'msdevlab', + 'Lethal Weapon 4 and Men in Black are both buddy-action comedies where the humor between the leads drives the entertainment as much as the action itself.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 247579, -- Panic Room 2002 + 214755, -- Minority Report 2002 + 9, + 'msdevlab', + 'Panic Room and Minority Report are both tight, intelligent thrillers built on cat-and-mouse tension with a single protagonist under relentless pressure.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, -- Shrek 2001 + 210739, -- Men in Black 1997 + 9, + 'msdevlab', + 'Shrek and Men in Black both mix fantasy or sci-fi worlds with fast comedy, using a strange duo dynamic to make the adventure feel fun rather than childish.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300230, -- Shrek 2 2004 + 210739, -- Men in Black 1997 + 9, + 'msdevlab', + 'Shrek 2 and Men in Black both turn bizarre creatures and hidden worlds into sharp comedy, while still giving the main characters clear emotional loyalty.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 359297, -- War of the Worlds 2005 + 247579, -- Panic Room 2002 + 9, + 'msdevlab', + 'War of the Worlds and Panic Room both create suspense from a family trapped under threat, making survival feel personal, immediate, and easy to follow.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 158999, -- Independence Day 1996 + 359297, -- War of the Worlds 2005 + 8, + 'msdevlab', + 'Independence Day and War of the Worlds both follow charismatic heroes surviving a devastating alien invasion, delivering high-stakes action with a clear emotional center.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 214755, -- Minority Report 2002 + 158999, -- Independence Day 1996 + 8, + 'msdevlab', + 'Minority Report''s futuristic chase plot and Independence Day''s alien-invasion survival story both deliver clear sci-fi stakes, urgent pacing, and heroes fighting systems larger than themselves.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, -- Men in Black 1997 + 214755, -- Minority Report 2002 + 8, + 'msdevlab', + 'Men in Black''s fast-paced sci-fi action and sharp wit pair well with Minority Report''s equally smart take on future technology and personal stakes.', + NULL +); + + +-- Historical epics and warrior stories +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 129185, -- Gladiator 2000 + 46169, -- Braveheart 1995 + 10, + 'msdevlab', + 'Gladiator and Braveheart both use betrayal, personal loss, and large battlefield moments to turn historical action into an emotional fight for justice.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 185628, -- Last Samurai, The 2003 + 129185, -- Gladiator 2000 + 9, + 'msdevlab', + 'The Last Samurai and Gladiator both follow warriors navigating the collapse of an honorable world, creating deep emotional stakes in spectacular battle settings.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 185628, -- Last Samurai, The 2003 + 46169, -- Braveheart 1995 + 9, + 'msdevlab', + 'The Last Samurai and Braveheart both dramatize the loss of a warrior culture through a deeply personal character journey, making them natural companions for epic drama fans.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 340652, -- Troy 2004 + 129185, -- Gladiator 2000 + 9, + 'msdevlab', + 'Troy''s Achilles and Gladiator''s Maximus both offer powerful stories of legendary warriors caught between personal honor and political betrayal in ancient combat settings.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 185628, -- Last Samurai, The 2003 + 340652, -- Troy 2004 + 9, + 'msdevlab', + 'The Last Samurai and Troy both explore warrior honor in historical settings, focusing on men caught between loyalty, identity, and the cost of battle.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 297838, -- Shawshank Redemption, The 1994 + 129185, -- Gladiator 2000 + 9, + 'msdevlab', + 'The Shawshank Redemption and Gladiator both turn injustice into a powerful personal journey, rewarding patience, loyalty, and hope through very satisfying endings.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 340652, -- Troy 2004 + 46169, -- Braveheart 1995 + 8, + 'msdevlab', + 'Troy''s war between kingdoms and Braveheart''s rebellion story both focus on charismatic warriors whose personal choices become tied to a much larger national conflict.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 39551, -- Black Hawk Down 2001 + 129185, -- Gladiator 2000 + 8, + 'msdevlab', + 'Black Hawk Down and Gladiator both portray soldiers and warriors pushed beyond their limits, connecting through their intense studies of survival, loyalty, and sacrifice under fire.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 39551, -- Black Hawk Down 2001 + 46169, -- Braveheart 1995 + 8, + 'msdevlab', + 'Black Hawk Down and Braveheart both show fighters relying on loyalty under extreme pressure, making the action feel connected to duty rather than empty spectacle.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280284, -- Rocky IV 1985 + 129185, -- Gladiator 2000 + 8, + 'msdevlab', + 'Rocky IV and Gladiator both present a champion fighting against an overwhelming opponent with the emotional weight of justice and personal honor behind every action.', + NULL +); + + +-- Romance and romantic-comedy pairs +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, -- 10 Things I Hate About You 1999 + 66194, -- Clueless 1995 + 10, + 'msdevlab', + '10 Things I Hate About You and Clueless are both witty 1990s teen comedies with sharp, memorable female leads and a classic literary framework behind the story.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, -- Titanic 1997 + 263360, -- Pretty Woman 1990 + 9, + 'msdevlab', + 'Titanic and Pretty Woman are both timeless romance stories about love across social divides, making them the two most emotionally satisfying classic romantic films.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, -- How to Lose a Guy in 10 Days 2003 + 263360, -- Pretty Woman 1990 + 9, + 'msdevlab', + 'How to Lose a Guy in 10 Days and Pretty Woman are both witty romantic comedies featuring strong-willed women who discover genuine love while playing a game that turns real.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, -- 10 Things I Hate About You 1999 + 151616, -- How to Lose a Guy in 10 Days 2003 + 9, + 'msdevlab', + '10 Things I Hate About You and How to Lose a Guy in 10 Days both feature sharp-witted heroines drawn into romantic games that turn into real love.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, -- How to Lose a Guy in 10 Days 2003 + 220805, -- Mr. and Mrs. Smith 2005 + 9, + 'msdevlab', + 'How to Lose a Guy in 10 Days and Mr. and Mrs. Smith are both witty comedies where romantic deception between two strong personalities escalates into something real and explosive.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, -- Titanic 1997 + 151616, -- How to Lose a Guy in 10 Days 2003 + 9, + 'msdevlab', + 'Titanic and How to Lose a Guy in 10 Days are very different in scale, but both depend on strong romantic chemistry and a relationship tested by social pressure and deception.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, -- Pretty Woman 1990 + 644, -- 10 Things I Hate About You 1999 + 9, + 'msdevlab', + 'Pretty Woman and 10 Things I Hate About You both turn a familiar romance setup into something memorable through sharp chemistry, strong female leads, and emotional payoff.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, -- Terminal, The 2004 + 333856, -- Titanic 1997 + 9, + 'msdevlab', + 'The Terminal and Titanic both follow kind-hearted characters trapped by circumstances beyond their control, making the emotional connection more important than the setting itself.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109421, -- Fast and the Furious, The 2001 + 220805, -- Mr. and Mrs. Smith 2005 + 8, + 'msdevlab', + 'The Fast and the Furious and Mr. and Mrs. Smith both deliver adrenaline-driven action built around magnetic characters and exciting relationship dynamics.', + NULL +); + + +-- Heist, crime and clever-con pairs +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, -- Ocean's Eleven 2001 + 56871, -- Catch Me If You Can 2002 + 10, + 'msdevlab', + 'Ocean''s Eleven and Catch Me If You Can both celebrate charming, intelligent protagonists who outsmart the system with style and effortless confidence.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, -- Terminal, The 2004 + 297838, -- Shawshank Redemption, The 1994 + 10, + 'msdevlab', + 'The Terminal and Shawshank Redemption both follow men navigating impossible situations with patience, warmth, and a refusal to give up on hope.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, -- Terminal, The 2004 + 56871, -- Catch Me If You Can 2002 + 10, + 'msdevlab', + 'The Terminal and Catch Me If You Can are both Spielberg films featuring charming protagonists who navigate unusual bureaucratic situations with ingenuity and warmth.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, -- Ocean's Eleven 2001 + 238073, -- Ocean's Twelve 2004 + 9, + 'msdevlab', + 'Ocean''s Eleven fans who love the team''s chemistry and wit will enjoy following them to Ocean''s Twelve''s more complex European caper.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 297838, -- Shawshank Redemption, The 1994 + 56871, -- Catch Me If You Can 2002 + 9, + 'msdevlab', + 'The Shawshank Redemption and Catch Me If You Can both follow characters who maintain hope and ingenuity under extreme pressure with warm, engaging performances.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 297838, -- Shawshank Redemption, The 1994 + 238072, -- Ocean's Eleven 2001 + 9, + 'msdevlab', + 'Shawshank Redemption fans will find Ocean''s Eleven equally satisfying since both reward careful, clever planning over brute force with deeply fulfilling conclusions.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238073, -- Ocean's Twelve 2004 + 56871, -- Catch Me If You Can 2002 + 9, + 'msdevlab', + 'Ocean''s Twelve and Catch Me If You Can both enjoy clever deception, stylish escapes, and the pleasure of watching charming characters stay one step ahead.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131780, -- Goodfellas 1990 + 238072, -- Ocean's Eleven 2001 + 8, + 'msdevlab', + 'Goodfellas and Ocean''s Eleven both explore the seductive appeal of crime through stylish storytelling and charismatic protagonists who make it all look effortless.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131780, -- Goodfellas 1990 + 297838, -- Shawshank Redemption, The 1994 + 8, + 'msdevlab', + 'Goodfellas and The Shawshank Redemption both follow men surviving inside criminal institutions, but each keeps the story compelling through voiceover, loyalty, and long-term consequences.', + NULL +); + + +-- Animated, family and outsider stories +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, -- Shrek 2001 + 300230, -- Shrek 2 2004 + 10, + 'msdevlab', + 'Shrek''s fairy-tale parody humor and emotional warmth carry into Shrek 2''s equally sharp comedy, with Puss in Boots and the Fairy Godmother making the sequel just as rewarding.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 190869, -- Lilo & Stitch 2002 + 300229, -- Shrek 2001 + 10, + 'msdevlab', + 'Lilo and Stitch and Shrek both use animated comedy to explore found family and the idea that outsiders can find belonging when given the chance.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 190869, -- Lilo & Stitch 2002 + 300230, -- Shrek 2 2004 + 9, + 'msdevlab', + 'Lilo and Stitch and Shrek 2 both balance genuine humor and heart in animated tales about unconventional families facing outside pressure to conform.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 97727, -- Edward Scissorhands 1990 + 300229, -- Shrek 2001 + 8, + 'msdevlab', + 'Edward Scissorhands and Shrek both tell stories of misunderstood outsiders who find acceptance and love despite the prejudice of the world around them.', + NULL +); + + +-- Other good recommendation pairs +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 188511, -- Lethal Weapon 4 1998 + 109421, -- Fast and the Furious, The 2001 + 8, + 'msdevlab', + 'Lethal Weapon 4 fans who enjoy team loyalty and fast action will find the same energy in The Fast and the Furious with a modern racing spin.', + NULL +); + + +-- WEAK / BAD BUT REASONABLE RECOMMENDATIONS + +-- James Bond and older franchise mismatches +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, -- Die Another Day 2002 + 203649, -- Man with the Golden Gun, The 1974 + 2, + 'msdevlab', + 'The Man with the Golden Gun includes Bond assassins, but its goofy 1970s tone and weaker plot would disappoint someone who prefers Die Another Day''s bigger modern spectacle.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335336, -- Tomorrow Never Dies 1997 + 120574, -- From Russia with Love 1963 + 2, + 'msdevlab', + 'From Russia with Love has classic espionage, yet its slower Cold War style is not ideal after Tomorrow Never Dies'' fast media-conspiracy action.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 368418, -- World Is Not Enough, The 1999 + 372233, -- You Only Live Twice 1967 + 2, + 'msdevlab', + 'You Only Live Twice has a giant villain lair, but its dated 1960s execution feels weaker than The World Is Not Enough''s more personal stakes.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, -- Die Another Day 2002 + 92573, -- Dr. No 1962 + 4, + 'msdevlab', + 'Though both movies are James Bond spy adventures, it is a bad recommendation since Dr. No feels like an early, stripped-down mission and lacks the modern gadgets, speed, and spectacle that make Die Another Day entertaining.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, -- Die Another Day 2002 + 120574, -- From Russia with Love 1963 + 4, + 'msdevlab', + 'Though both movies are Bond films about international espionage, it is a bad recommendation since From Russia with Love depends on slow Cold War tension instead of the flashy action style expected after Die Another Day.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, -- Die Another Day 2002 + 85871, -- Diamonds Are Forever 1971 + 4, + 'msdevlab', + 'Though both movies are James Bond entries with glamour and villains, it is a bad recommendation since Diamonds Are Forever uses campy Las Vegas humor that clashes with Die Another Day''s sleek, gadget-heavy adventure.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, -- Die Another Day 2002 + 192514, -- Live and Let Die 1973 + 4, + 'msdevlab', + 'Though both movies are built on the Bond formula, it is a bad recommendation since Live and Let Die''s dated tone and voodoo storyline do not fit the fast modern spy-adventure feeling of Die Another Day.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, -- Die Another Day 2002 + 372233, -- You Only Live Twice 1967 + 4, + 'msdevlab', + 'Though both movies are large-scale Bond adventures, it is a bad recommendation since You Only Live Twice has slower 1960s pacing and outdated stereotypes that weaken the match with Die Another Day''s quick modern action.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, -- Die Another Day 2002 + 332065, -- Thunderball 1965 + 4, + 'msdevlab', + 'Though both movies are exotic Bond missions, it is a bad recommendation since Thunderball''s long underwater sequences feel much slower than the energetic, gadget-driven pace that Die Another Day fans would expect.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335336, -- Tomorrow Never Dies 1997 + 92573, -- Dr. No 1962 + 4, + 'msdevlab', + 'Though both movies are James Bond stories, it is a bad recommendation since Dr. No does not deliver the media-villain plot, fast chases, or modern action rhythm that make Tomorrow Never Dies appealing.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335336, -- Tomorrow Never Dies 1997 + 85871, -- Diamonds Are Forever 1971 + 4, + 'msdevlab', + 'Though both movies are Bond films with glamour and global danger, it is a bad recommendation since Diamonds Are Forever''s campier humor and looser plot do not match Tomorrow Never Dies'' tighter media-conspiracy action.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 368418, -- World Is Not Enough, The 1999 + 203649, -- Man with the Golden Gun, The 1974 + 4, + 'msdevlab', + 'Though both movies are Bond adventures with an assassin-style threat, it is a bad recommendation since The Man with the Golden Gun feels thin and silly compared with The World Is Not Enough''s more emotional spy plot.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 368418, -- World Is Not Enough, The 1999 + 192514, -- Live and Let Die 1973 + 4, + 'msdevlab', + 'Though both movies are Bond films with memorable villains, it is a bad recommendation since Live and Let Die''s voodoo and blaxploitation elements feel too dated beside The World Is Not Enough''s personal betrayal and modern stakes.', + NULL +); + + +-- Batman, Superman and superhero-era mismatches +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 162380, -- Iron Man 2005 + 176711, -- Kill Bill: Vol. 1 2003 + 1, + 'msdevlab', + 'Though both movies are stylish action stories, it is a bad recommendation since Kill Bill''s harsh revenge violence is far darker than Iron Man''s witty, polished superhero adventure.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 162380, -- Iron Man 2005 + 312150, -- Spy Kids 2001 + 2, + 'msdevlab', + 'Though both movies are about tech, missions, and inventive heroes, it is a bad recommendation since Spy Kids is aimed much younger than Iron Man''s adult humor, charisma, and superhero stakes.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311037, -- Spider-Man 2002 + 406158, -- "Spider-Man" 2003 + 2, + 'msdevlab', + 'The 2003 Spider-Man version has the character in action, but it lacks the full origin story, emotion, and cinematic scale of the 2002 film.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311038, -- Spider-Man 2 2004 + 311036, -- Spider-Man 2000 + 2, + 'msdevlab', + 'The 2000 Spider-Man game shares the hero, yet it cannot deliver Spider-Man 2''s emotional Peter Parker conflict or memorable Doctor Octopus story.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 162380, -- Iron Man 2005 + 319602, -- Superman 1978 + 2, + 'msdevlab', + 'Superman 1978 matters to superhero history, but its slower, campier tone cannot match Iron Man''s modern wit, technology, and pacing.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 162380, -- Iron Man 2005 + 319613, -- Superman II 1980 + 2, + 'msdevlab', + 'Superman II has superhero conflict, yet its older effects and lighter 1980s humor feel dated next to Iron Man''s sleek modern confidence.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, -- Batman Begins 2005 + 319602, -- Superman 1978 + 2, + 'msdevlab', + 'Superman 1978 is an origin film, but its bright, campy optimism does not fit Batman Begins'' darker fear-based realism.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 162380, -- Iron Man 2005 + 21213, -- Artificial Intelligence: AI 2001 + 3, + 'msdevlab', + 'Though both movies are about technology and humanity, it is a bad recommendation since A.I.''s slow melancholy tone would frustrate someone expecting Iron Man''s fast charisma and superhero fun.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, -- Batman Begins 2005 + 30965, -- Batman Forever 1995 + 4, + 'msdevlab', + 'Though both movies are Batman films set in Gotham, it is a bad recommendation since Batman Forever''s neon colors, jokey villains, and camp tone oppose the grounded fear-and-training story in Batman Begins.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, -- Batman Begins 2005 + 30967, -- Batman Returns 1992 + 4, + 'msdevlab', + 'Though both movies are dark Batman stories, it is a bad recommendation since Batman Returns'' circus-villain focus and messier gothic style do not give the clean origin arc and realism of Batman Begins.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, -- Batman Begins 2005 + 30955, -- Batman 1989 + 4, + 'msdevlab', + 'Though both movies are major Batman films, it is a bad recommendation since Batman 1989''s theatrical tone and uneven character depth make it weaker after Batman Begins'' serious psychological origin story.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, -- Batman Begins 2005 + 381392, -- "Batman Beyond" 1999 + 4, + 'msdevlab', + 'Though both movies are Batman reimaginings, it is a bad recommendation since Batman Beyond''s futuristic animated teen format feels too light and small compared with the cinematic realism of Batman Begins.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, -- Batman Begins 2005 + 30976, -- Batman: Mask of the Phantasm 1993 + 4, + 'msdevlab', + 'Though both movies are Batman stories with emotional mystery, it is a bad recommendation since Mask of the Phantasm''s animated scale feels less satisfying for someone wanting Batman Begins'' live-action intensity.', + NULL +); + + +-- Star Wars film, prequel and game mismatches +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313478, -- Star Wars: Episode V - The Empire Strikes Back 1980 + 313508, -- Star Wars: X-Wing vs. TIE Fighter 1996 + 2, + 'msdevlab', + 'X-Wing vs. TIE Fighter stays inside Star Wars, but its technical space-combat focus misses the emotional story that makes The Empire Strikes Back special.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313477, -- Star Wars: Episode III - Revenge of the Sith 2005 + 313506, -- Star Wars: X-Wing 1995 + 3, + 'msdevlab', + 'Though both movies are connected to the Star Wars universe, it is a bad recommendation since X-Wing is mission-based flight gameplay and misses the character tragedy that makes Revenge of the Sith powerful.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313478, -- Star Wars: Episode V - The Empire Strikes Back 1980 + 313464, -- Star Wars Rogue Leader: Rogue Squadron 2 2001 + 3, + 'msdevlab', + 'Though both movies are linked through Rebel-pilot Star Wars action, it is a bad recommendation since Rogue Leader is mainly an arcade flight experience rather than the character-driven tension of The Empire Strikes Back.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313477, -- Star Wars: Episode III - Revenge of the Sith 2005 + 313488, -- Star Wars: Jedi Starfighter 2002 + 3, + 'msdevlab', + 'Though both movies are tied to the Star Wars prequel era, it is a bad recommendation since Jedi Starfighter focuses on vehicle combat instead of Anakin''s downfall and the emotional stakes of Revenge of the Sith.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313489, -- Star Wars: Knights of the Old Republic 2003 + 313486, -- Star Wars: Jedi Knight - Mysteries of the Sith 1998 + 3, + 'msdevlab', + 'Though both movies are Star Wars games with Force-user elements, it is a bad recommendation since Mysteries of the Sith feels dated and thin beside Knights of the Old Republic''s RPG depth.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313489, -- Star Wars: Knights of the Old Republic 2003 + 313493, -- Star Wars: Racer Revenge 2002 + 3, + 'msdevlab', + 'Though both movies are Star Wars spin-offs, it is a bad recommendation since Racer Revenge is only a racing game and lacks the choices, characters, and long narrative arc that make Knights of the Old Republic interesting.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313477, -- Star Wars: Episode III - Revenge of the Sith 2005 + 313475, -- Star Wars: Episode I - The Phantom Menace (1999/II) 1999 + 4, + 'msdevlab', + 'Though both movies are Star Wars prequels, it is a bad recommendation since The Phantom Menace''s Jar Jar humor, child-centered adventure, and flat politics weaken the dark payoff expected from Revenge of the Sith.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313477, -- Star Wars: Episode III - Revenge of the Sith 2005 + 313476, -- Star Wars: Episode II - Attack of the Clones 2002 + 4, + 'msdevlab', + 'Though both movies are part of Anakin''s prequel storyline, it is a bad recommendation since Attack of the Clones'' stiff romance and slower middle-chapter pacing cannot match Revenge of the Sith''s tragedy and momentum.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313478, -- Star Wars: Episode V - The Empire Strikes Back 1980 + 313474, -- Star Wars: Episode I - The Phantom Menace 1999 + 4, + 'msdevlab', + 'Though both movies are Star Wars saga entries, it is a bad recommendation since The Phantom Menace''s childish humor and lighter adventure feel far from The Empire Strikes Back''s darker, mature storytelling.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313478, -- Star Wars: Episode V - The Empire Strikes Back 1980 + 313476, -- Star Wars: Episode II - Attack of the Clones 2002 + 4, + 'msdevlab', + 'Though both movies are Star Wars films with Jedi battles and galactic politics, it is a bad recommendation since Attack of the Clones'' awkward dialogue and romance are a poor substitute for Empire''s emotional drama.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313479, -- Star Wars: Episode VI - Return of the Jedi 1983 + 313474, -- Star Wars: Episode I - The Phantom Menace 1999 + 4, + 'msdevlab', + 'Though both movies are Star Wars stories with heroic endings, it is a bad recommendation since The Phantom Menace''s kid-focused tone and comic relief do not match Return of the Jedi''s emotional closure.', + NULL +); + + +-- Rocky, Indiana Jones and Mission Impossible weak-sequel pairs +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280284, -- Rocky IV 1985 + 270971, -- Raging Bull 1980 + 2, + 'msdevlab', + 'Though both movies are boxing-centered dramas, it is a bad recommendation since Raging Bull''s bleak character study does not match Rocky IV''s uplifting training, music, and Cold War victory feeling.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280284, -- Rocky IV 1985 + 280305, -- Rocky V 1990 + 3, + 'msdevlab', + 'Though both movies are Rocky franchise entries, it is a bad recommendation since Rocky V''s street-level drama feels deflated after Rocky IV''s training montage, patriotic showdown, and inspirational energy.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280270, -- Rocky 1976 + 280305, -- Rocky V 1990 + 3, + 'msdevlab', + 'Though both movies are about Rocky Balboa''s boxing life, it is a bad recommendation since Rocky V shifts into a bleak street conflict and loses the underdog heart of the original Rocky.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280282, -- Rocky III 1982 + 280305, -- Rocky V 1990 + 3, + 'msdevlab', + 'Though both movies are Rocky sequels about identity and rivalry, it is a bad recommendation since Rocky V replaces Rocky III''s arena excitement with a weaker street story and less satisfying comeback energy.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 271095, -- Raiders of the Lost Ark 1981 + 159167, -- Indiana Jones 4 2006 + 3, + 'msdevlab', + 'Though both movies are Indiana Jones adventures, it is a bad recommendation since Indiana Jones 4''s CGI-heavy alien direction feels forced compared with Raiders of the Lost Ark''s practical danger and clean treasure-hunt momentum.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 159172, -- Indiana Jones and the Last Crusade 1989 + 159167, -- Indiana Jones 4 2006 + 3, + 'msdevlab', + 'Though both movies are Indiana Jones stories with mystery and family elements, it is a bad recommendation since Indiana Jones 4''s alien mythology feels less grounded and less emotionally warm than Last Crusade.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 159172, -- Indiana Jones and the Last Crusade 1989 + 159175, -- Indiana Jones and the Temple of Doom 1984 + 3, + 'msdevlab', + 'Though both movies are Indiana Jones films, it is a bad recommendation since Temple of Doom''s harsher violence and darker atmosphere make it a poor fit after Last Crusade''s lighter humor and father-son dynamic.', + NULL +); + + +-- Animation, family and children-media mismatches +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, -- Shrek 2001 + 267038, -- Pulp Fiction 1994 + 1, + 'msdevlab', + 'Pulp Fiction subverts crime genres, but its cynical violence is far away from Shrek''s warm fairy-tale parody and emotional humor.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, -- Shrek 2001 + 311607, -- SpongeBob SquarePants: SuperSponge 2001 + 2, + 'msdevlab', + 'Though both movies are family-friendly adventures with cartoon energy, it is a bad recommendation since SuperSponge is too game-like and child-focused for Shrek''s fairy-tale satire, adult jokes, and real emotional arc.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300230, -- Shrek 2 2004 + 311604, -- SpongeBob SquarePants: Legend of the Lost Spatula 2001 + 2, + 'msdevlab', + 'Though both movies are colorful animated adventures, it is a bad recommendation since Legend of the Lost Spatula is very thin while Shrek 2 succeeds through sharper jokes, family tension, and stronger characters.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, -- Shrek 2001 + 311604, -- SpongeBob SquarePants: Legend of the Lost Spatula 2001 + 2, + 'msdevlab', + 'Though both movies are silly animated adventures, it is a bad recommendation since SpongeBob''s Lost Spatula is juvenile in a way that does not match Shrek''s parody, romance, and character growth.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 190869, -- Lilo & Stitch 2002 + 311606, -- SpongeBob SquarePants: Revenge of the Flying Dutchman 2002 + 2, + 'msdevlab', + 'Though both movies are cartoon stories with goofy chaos, it is a bad recommendation since Revenge of the Flying Dutchman lacks the family theme and emotional loneliness that give Lilo and Stitch its heart.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, -- Shrek 2001 + 849, -- 101 Dalmatians II: Patch's London Adventure 2003 + 2, + 'msdevlab', + 'Though both movies are family animation about unusual animals, it is a bad recommendation since Patch''s London Adventure is much younger and plot-light compared with Shrek''s layered humor and outsider love story.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300230, -- Shrek 2 2004 + 850, -- 101 Dalmatians Sing Along 1996 + 2, + 'msdevlab', + 'Though both movies are aimed at children and families, it is a bad recommendation since the 101 Dalmatians sing-along is music-focused material rather than a full comic story like Shrek 2.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 190869, -- Lilo & Stitch 2002 + 849, -- 101 Dalmatians II: Patch's London Adventure 2003 + 2, + 'msdevlab', + 'Though both movies are Disney-related animal stories, it is a bad recommendation since Patch''s London Adventure does not reach Lilo and Stitch''s emotional focus on family, loneliness, and belonging.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, -- Shrek 2001 + 312152, -- Spy Kids 3-D: Game Over 2003 + 2, + 'msdevlab', + 'Though both movies are family entertainment with fantasy action, it is a bad recommendation since Spy Kids 3-D relies on a video-game gimmick instead of the clever fairy-tale satire that makes Shrek memorable.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 312150, -- Spy Kids 2001 + 312152, -- Spy Kids 3-D: Game Over 2003 + 2, + 'msdevlab', + 'Though both movies are Spy Kids franchise entries, it is a bad recommendation since Spy Kids 3-D turns the series into a weaker game-world gimmick with less character charm than the first film.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 312151, -- Spy Kids 2: Island of Lost Dreams 2002 + 312152, -- Spy Kids 3-D: Game Over 2003 + 2, + 'msdevlab', + 'Though both movies are Spy Kids sequels, it is a bad recommendation since Spy Kids 3-D pushes shallow visual gimmicks further instead of improving the family-adventure story.', + NULL +); + + +-- Romance and comedy versus darker genres +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, -- Titanic 1997 + 30686, -- Basketball Diaries, The 1995 + 1, + 'msdevlab', + 'Though both movies feature a young Leonardo DiCaprio in dramatic circumstances, it is a bad recommendation since Basketball Diaries'' addiction descent has none of Titanic''s sweeping romance or tragic grandeur.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, -- How to Lose a Guy in 10 Days 2003 + 200521, -- Magnolia 1999 + 1, + 'msdevlab', + 'Magnolia includes relationship struggles, but its long, heavy ensemble drama is the wrong mood for How to Lose a Guy''s upbeat romantic comedy.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, -- Pretty Woman 1990 + 185176, -- Last Dance 2002 + 3, + 'msdevlab', + 'Though both movies follow a woman trying to change her life, it is a bad recommendation since Last Dance lacks the central chemistry, charm, and romantic fantasy that make Pretty Woman enjoyable.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, -- How to Lose a Guy in 10 Days 2003 + 46878, -- Bridget Jones: The Edge of Reason 2004 + 3, + 'msdevlab', + 'Though both movies are romantic-comedy sequels or setups built around misunderstandings, it is a bad recommendation since Bridget Jones: The Edge of Reason feels messier and weaker than How to Lose a Guy''s focused battle-of-the-sexes plot.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, -- 10 Things I Hate About You 1999 + 200864, -- Maid in Manhattan 2002 + 3, + 'msdevlab', + 'Though both movies are social-class romances, it is a bad recommendation since Maid in Manhattan''s predictable Cinderella plot has less wit and spark than 10 Things I Hate About You.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, -- Titanic 1997 + 245699, -- Overboard 1987 + 3, + 'msdevlab', + 'Overboard has a rich-poor romance angle, but its dated mistaken-identity comedy feels too small beside Titanic''s epic class-crossing love story.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, -- Pretty Woman 1990 + 311428, -- Splash 1984 + 3, + 'msdevlab', + 'Splash is an unlikely romance, but the mermaid fantasy and 1980s silliness do not offer Pretty Woman''s glamour, chemistry, and makeover charm.', + NULL +); + + +-- Crime, heist and darker-tone mismatches +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 297838, -- Shawshank Redemption, The 1994 + 291698, -- Se7en 1995 + 1, + 'msdevlab', + 'Though both movies are serious dramas with Morgan Freeman connections, it is a bad recommendation since Se7en''s serial-killer darkness would feel punishing after Shawshank''s patient hope and human warmth.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 297838, -- Shawshank Redemption, The 1994 + 326155, -- Taxi Driver 1976 + 1, + 'msdevlab', + 'Though both movies are classic character studies, it is a bad recommendation since Taxi Driver''s violent isolation and urban decay move in the opposite emotional direction from Shawshank''s dignity and hope.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 39551, -- Black Hawk Down 2001 + 326155, -- Taxi Driver 1976 + 1, + 'msdevlab', + 'Taxi Driver explores violence through one man''s isolation, while Black Hawk Down is about a military rescue mission and battlefield teamwork.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, -- Men in Black 1997 + 291698, -- Se7en 1995 + 1, + 'msdevlab', + 'Se7en also follows investigators, but its bleak serial-killer case is the opposite of Men in Black''s playful aliens and buddy-cop humor.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, -- Men in Black 1997 + 326155, -- Taxi Driver 1976 + 1, + 'msdevlab', + 'Taxi Driver''s unstable urban isolation has no match with Men in Black''s light alien cases, comedy timing, and Will Smith charm.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, -- Ocean's Eleven 2001 + 276217, -- Reservoir Dogs 1992 + 2, + 'msdevlab', + 'Though both movies are crime films about groups of criminals, it is a bad recommendation since Reservoir Dogs'' brutal mistrust and warehouse tension clash with Ocean''s Eleven''s playful, elegant heist style.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, -- Ocean's Eleven 2001 + 267038, -- Pulp Fiction 1994 + 2, + 'msdevlab', + 'Though both movies are stylish crime films with sharp dialogue, it is a bad recommendation since Pulp Fiction''s disturbing violence and cynical structure do not fit Ocean''s Eleven''s charming team-heist tone.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, -- Ocean's Eleven 2001 + 178994, -- Knockaround Guys 2001 + 2, + 'msdevlab', + 'Knockaround Guys also involves crime groups, but it lacks the polish, wit, and star-powered teamwork that make Ocean''s Eleven so fun.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 297838, -- Shawshank Redemption, The 1994 + 209158, -- Mean Streets 1973 + 2, + 'msdevlab', + 'Mean Streets is a respected crime drama, but its rough 1970s street violence feels too bleak and distant from Shawshank''s hopeful prison story.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, -- Ocean's Eleven 2001 + 371305, -- Yes and 2004 + 2, + 'msdevlab', + 'Yes and may be an ensemble film, but its unclear plot and forgettable character work make it weak beside Ocean''s Eleven''s crisp heist structure.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335835, -- Top Gun 1986 + 291698, -- Se7en 1995 + 2, + 'msdevlab', + 'Se7en has pressure and investigation, yet its dark crime mood would disappoint someone expecting Top Gun''s fast, uplifting aviation excitement.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 56871, -- Catch Me If You Can 2002 + 164572, -- Jackie Brown 1997 + 3, + 'msdevlab', + 'Jackie Brown is a crime story with charm, but its slow Tarantino rhythm feels very different from Catch Me If You Can''s lighter, warmer chase.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 56871, -- Catch Me If You Can 2002 + 306032, -- Snatch. 2000 + 3, + 'msdevlab', + 'Snatch is clever crime entertainment, but the chaotic editing and rough British underworld humor do not match Catch Me If You Can''s smoother Spielberg tone.', + NULL +); + + +-- Historical, war and epic-tone mismatches +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 129185, -- Gladiator 2000 + 290070, -- Schindler's List 1993 + 1, + 'msdevlab', + 'Schindler''s List is historically powerful, but its Holocaust tragedy is far heavier than Gladiator''s accessible heroic revenge and arena spectacle.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 129185, -- Gladiator 2000 + 270971, -- Raging Bull 1980 + 2, + 'msdevlab', + 'Though both movies are intense character stories involving physical conflict, it is a bad recommendation since Raging Bull''s self-destructive psychological portrait is the opposite of Gladiator''s honorable revenge quest.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 39551, -- Black Hawk Down 2001 + 30686, -- Basketball Diaries, The 1995 + 2, + 'msdevlab', + 'Basketball Diaries follows danger around young men, but its addiction drama is far from Black Hawk Down''s urgent soldiers-under-fire combat story.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 129185, -- Gladiator 2000 + 289109, -- Saving Private Ryan 1998 + 3, + 'msdevlab', + 'Though both movies are acclaimed war-related dramas, it is a bad recommendation since Saving Private Ryan''s traumatic WWII realism is much heavier than Gladiator''s heroic ancient revenge adventure.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46169, -- Braveheart 1995 + 289109, -- Saving Private Ryan 1998 + 3, + 'msdevlab', + 'Though both movies involve sacrifice in battle, it is a bad recommendation since Saving Private Ryan''s harsh realism feels less romantic and less sweeping than Braveheart''s freedom epic.', + NULL +); + + +-- Sci-fi, horror and tone mismatches +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 214755, -- Minority Report 2002 + 10945, -- Alien 1992 + 1, + 'msdevlab', + 'Though both movies are science fiction thrillers, it is a bad recommendation since Alien''s claustrophobic creature horror is too scary and trapped for someone looking for Minority Report''s future-crime chase.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 158999, -- Independence Day 1996 + 65811, -- Close Encounters of the Third Kind 1977 + 3, + 'msdevlab', + 'Though both movies are about alien contact, it is a bad recommendation since Close Encounters'' slow wonder-focused mood is very different from Independence Day''s loud disaster action and heroic speeches.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 158999, -- Independence Day 1996 + 256839, -- Pitch Black 2000 + 3, + 'msdevlab', + 'Though both movies are survival stories against alien danger, it is a bad recommendation since Pitch Black''s dark horror atmosphere does not match Independence Day''s triumphant blockbuster style.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 214755, -- Minority Report 2002 + 10920, -- Aliens 1986 + 3, + 'msdevlab', + 'Though both movies are sci-fi action stories with humans under threat, it is a bad recommendation since Aliens'' monster-horror intensity is a poor match for Minority Report''s technology mystery and chase logic.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 214755, -- Minority Report 2002 + 40199, -- Blade Runner 1982 + 3, + 'msdevlab', + 'Though both movies are futuristic noir science fiction, it is a bad recommendation since Blade Runner''s abstract atmosphere and slow mood do not fit Minority Report''s clearer suspense and movement.', + NULL +); + + +-- Other weak but reasonable recommendation pairs +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109421, -- Fast and the Furious, The 2001 + 54209, -- Cape Fear 1991 + 1, + 'msdevlab', + 'Though both movies are about pursuit and personal danger, it is a bad recommendation since Cape Fear turns the chase into psychological horror while The Fast and the Furious is about racing, friendship, and adrenaline.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109421, -- Fast and the Furious, The 2001 + 120506, -- From Hell 2001 + 1, + 'msdevlab', + 'Though both movies are crime-related thrillers from the early 2000s, it is a bad recommendation since From Hell''s grim Jack the Ripper mood does not match The Fast and the Furious'' street-racing excitement.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131885, -- Goonies, The 1985 + 54209, -- Cape Fear 1991 + 1, + 'msdevlab', + 'Though both movies involve pursuit through a specific place, it is a bad recommendation since Cape Fear''s violent psychological menace is completely wrong after The Goonies'' playful treasure-hunt friendship adventure.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 149287, -- Hook 1991 + 292671, -- Secret Window 2004 + 1, + 'msdevlab', + 'Though both movies involve storytelling and fantasy-like mystery, it is a bad recommendation since Secret Window''s dark psychological twist is far from Hook''s nostalgic Peter Pan family adventure.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 97727, -- Edward Scissorhands 1990 + 304862, -- Sleepy Hollow 1999 + 1, + 'msdevlab', + 'Though both movies are Tim Burton-style Johnny Depp stories, it is a bad recommendation since Sleepy Hollow''s murders and horror elements make it much darker than Edward Scissorhands'' gentle outsider romance.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335835, -- Top Gun 1986 + 54209, -- Cape Fear 1991 + 1, + 'msdevlab', + 'Cape Fear''s stalker-thriller violence is the wrong direction for a Top Gun fan who wants jets, rivalry, romance, and high-energy military spectacle.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109421, -- Fast and the Furious, The 2001 + 350424, -- Vanilla Sky 2001 + 2, + 'msdevlab', + 'Though both movies follow a man whose confidence is disrupted, it is a bad recommendation since Vanilla Sky''s dream logic and psychological confusion would not satisfy a Fast and Furious fan looking for direct racing action.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109421, -- Fast and the Furious, The 2001 + 200521, -- Magnolia 1999 + 2, + 'msdevlab', + 'Magnolia''s long, contemplative ensemble drama has almost nothing in common with The Fast and the Furious'' quick street-racing conflict and action momentum.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194497, -- Lord of the Rings: The Fellowship of the Ring, The 2001 + 194492, -- Lord of the Rings 1990 + 2, + 'msdevlab', + 'The 1990 Lord of the Rings adaptation covers Tolkien material, but it cannot match Fellowship''s emotional scale, cast chemistry, and visual world-building.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194502, -- Lord of the Rings: The Two Towers, The 2002 + 194501, -- Lord of the Rings: The Third Age 2004 + 2, + 'msdevlab', + 'The Third Age is set in Middle-earth, yet its game structure cannot replace The Two Towers'' character arcs, battles, and cinematic urgency.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194495, -- Lord of the Rings: Return of the King, The (2003/II) 2003 + 194504, -- Lord of the Rings: The War of the Ring, The 2003 + 2, + 'msdevlab', + 'The War of the Ring uses Middle-earth battles, but strategy-game mechanics do not capture Return of the King''s emotional endings and character payoffs.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215876, -- Mission: Impossible 1996 + 215878, -- Mission: Impossible - Operation Surma 2003 + 3, + 'msdevlab', + 'Though both movies are Mission Impossible stories using IMF missions and deception, it is a bad recommendation since Operation Surma does not recreate the paranoia, betrayal, and suspense of the 1996 film.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215880, -- Mission: Impossible III 2006 + 215877, -- Mission: Impossible 1998 + 3, + 'msdevlab', + 'Though both movies are Mission Impossible entries, it is a bad recommendation since the 1998 version feels much thinner than Mission Impossible III''s personal danger around Ethan and Julia.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215880, -- Mission: Impossible III 2006 + 215878, -- Mission: Impossible - Operation Surma 2003 + 3, + 'msdevlab', + 'Though both movies are spy assignments in the Mission Impossible world, it is a bad recommendation since Operation Surma lacks the urgent villain, emotional stakes, and cinematic tension that make Mission Impossible III work.', + NULL +); + +INSERT INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215876, -- Mission: Impossible 1996 + 215875, -- Mission: Impossible 1991 + 4, + 'msdevlab', + 'The 1991 Mission Impossible version has the title, but it lacks Tom Cruise''s star presence and the tense betrayal plot of the 1996 film.', + NULL +); diff --git a/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_noa165.sql b/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_noa165.sql new file mode 100644 index 00000000..0bc8076f --- /dev/null +++ b/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_noa165.sql @@ -0,0 +1,2171 @@ +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 333856, -- Titanic 1997 + 220276, -- Moulin Rouge! 2001 + 10, + 'noa165', + 'both will absolutely wreck you emotionally - huge tragic romances that are impossible to forget', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 333856, -- Titanic 1997 + 34077, -- The Curious Case of Benjamin Button 2006 + 9, + 'noa165', + 'Both are epic romantic dramas where a love story unfolds across an extraordinary span of time and ends in devastating loss that somehow still feels beautiful', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 220276, -- Moulin Rouge! 2001 + 62460, -- Chocolat 2000 + 9, + 'noa165', + 'Both are visually lush, passionately romantic films set in France where love disrupts a closed and disapproving community in deeply satisfying ways', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 62460, -- Chocolat 2000 + 33492, -- Bella Martha 2001 + 9, + 'noa165', + 'Both are warm European romantic dramas where food becomes the language through which two lonely people slowly and beautifully open themselves to love', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 62460, -- Chocolat 2000 + 69469, -- Confidences trop intimes 2004 + 9, + 'noa165', + 'Both are slow-burning French romantic dramas where an unexpected intimate connection develops through quiet meetings that carry enormous emotional weight', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 151616, -- How to Lose a Guy in 10 Days 2003 + 1038, -- 13 Going On 30 2004 + 10, + 'noa165', + 'classic early-2000s romcoms with the same fun energy - if you grew up watching one you definitely need to see the other', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 151616, -- How to Lose a Guy in 10 Days 2003 + 200864, -- Maid in Manhattan 2002 + 9, + 'noa165', + 'Both are warm romantic comedies where a deception sets off a love story that is genuinely sweet and satisfying to watch unfold', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 1038, -- 13 Going On 30 2004 + 200864, -- Maid in Manhattan 2002 + 9, + 'noa165', + 'Both are heartfelt early-2000s romantic films built around a magical premise that gives their love stories a warm and irresistible glow', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 263, -- Til There Was You 1997 + 151616, -- How to Lose a Guy in 10 Days 2003 + 9, + 'noa165', + 'Both are romantic films built on the idea that two people are slowly and inevitably moving toward each other, and the moment they finally meet feels completely earned', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 69469, -- Confidences trop intimes 2004 + 33492, -- Bella Martha 2001 + 9, + 'noa165', + 'Both are understated European romantic dramas where a connection grows naturally between two people who did not expect to find each other', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 56282, -- Cashback 2004 + 113506, -- Finding Neverland 2004 + 8, + 'noa165', + 'Both are films that celebrate the power of imagination as a way of seeing and coping with a painful world, told with gentleness and genuine emotional intelligence', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 183370, -- Ladies in Lavender 2004 + 33492, -- Bella Martha 2001 + 9, + 'noa165', + 'Both are quiet, beautifully observed European films about a woman opening her heart to something unexpected, with performances of extraordinary restraint and warmth', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 8183, -- The Age of Innocence 1993 + 333856, -- Titanic 1997 + 9, + 'noa165', + 'Both are tragic love stories about two people whose passionate connection is frustrated by the rigid demands of the society around them', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 308025, -- Someone to Watch Over Me 1987 + 69469, -- Confidences trop intimes 2004 + 8, + 'noa165', + 'Both are romantic thrillers where the central tension grows from an unexpected intimate connection between a man and a woman who should not be falling for each other', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 244421, -- The Other Sister 1999 + 200864, -- Maid in Manhattan 2002 + 8, + 'noa165', + 'Both are warm and genuine romantic dramas about a woman who finds real love despite the world underestimating what she is capable of', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 113506, -- Finding Neverland 2004 + 190869, -- Lilo and Stitch 2002 + 8, + 'noa165', + 'Both are emotionally rich films about the healing power of imagination and the fierce protective love between family members who are all they have', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 8183, -- The Age of Innocence 1993 + 62460, -- Chocolat 2000 + 8, + 'noa165', + 'Both explore a romantic love constrained by the expectations of a closed community, becoming all the more powerful for being so carefully restrained', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 34077, -- The Curious Case of Benjamin Button 2006 + 220276, -- Moulin Rouge! 2001 + 9, + 'noa165', + 'Both are visually extraordinary love stories about a romance that operates outside the normal rules of time and ends with a devastating beauty that stays with you', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 97727, -- Edward Scissorhands 1990 + 304862, -- Sleepy Hollow 1999 + 10, + 'noa165', + 'both are peak Tim Burton and peak Depp - dark, beautiful and unlike anything else out there', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 97727, -- Edward Scissorhands 1990 + 34104, -- Benny and Joon 1993 + 9, + 'noa165', + 'Both tell the story of a misunderstood outsider whose unusual qualities make them frightening to some and fascinating to those lucky enough to truly see them', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 70959, -- Corpse Bride 2005 + 97727, -- Edward Scissorhands 1990 + 10, + 'noa165', + 'if you love one Tim Burton dark romance you basically need to watch all of them - same vibe, same magic', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 304862, -- Sleepy Hollow 1999 + 70959, -- Corpse Bride 2005 + 9, + 'noa165', + 'Both are gothic Tim Burton films featuring Depp in dark visually stunning worlds where death and romance are intertwined in a way that feels beautiful rather than frightening', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 34104, -- Benny and Joon 1993 + 74259, -- Cry-Baby 1990 + 8, + 'noa165', + 'Both are quirky films featuring Depp as an eccentric young outsider who wins hearts through charisma and a completely unique physical presence', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 256632, -- Pirates of the Caribbean 2003 + 34104, -- Benny and Joon 1993 + 8, + 'noa165', + 'Both films exist as showcases for Depp''s extraordinary physical expressiveness and the way his unique charisma turns every scene into something you cannot look away from', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 59578, -- Charlie and the Chocolate Factory 2005 + 70959, -- Corpse Bride 2005 + 9, + 'noa165', + 'Both are Tim Burton 2005 films with Depp at the center of a richly imagined dark fantasy world where themes of belonging are explored beneath the visual spectacle', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 139657, -- Harry Potter and the Sorcerers Stone 2001 + 139650, -- Harry Potter and the Chamber of Secrets 2002 + 10, + 'noa165', + 'obviously watch the next one - same world, same characters, just as good', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 139650, -- Harry Potter and the Chamber of Secrets 2002 + 139655, -- Harry Potter and the Prisoner of Azkaban 2004 + 10, + 'noa165', + 'honestly one of the best in the series - the direction completely changes and the time travel twist is so satisfying', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 139655, -- Harry Potter and the Prisoner of Azkaban 2004 + 139652, -- Harry Potter and the Goblet of Fire 2005 + 10, + 'noa165', + 'goblet of fire is probably the most exciting one - the stakes get so much higher and the ending genuinely shocked me', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 139652, -- Harry Potter and the Goblet of Fire 2005 + 139653, -- Harry Potter and the Half-Blood Prince 2008 + 9, + 'noa165', + 'Half Blood Prince builds directly on the emotional weight Goblet of Fire introduced, with a devastating ending that recontextualizes everything that came before', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 139657, -- Harry Potter and the Sorcerers Stone 2001 + 149287, -- Hook 1991 + 9, + 'noa165', + 'Both films capture the specific feeling of stepping into a completely immersive magical world for the first time and understanding that childhood wonder is worth protecting', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 190869, -- Lilo and Stitch 2002 + 32180, -- Beauty and the Beast 2003 + 9, + 'noa165', + 'both hit way harder than expected for disney films - the emotional core about belonging and being loved as you are is real', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 32180, -- Beauty and the Beast 2003 + 70959, -- Corpse Bride 2005 + 9, + 'noa165', + 'Both feature an outsider finding unexpected love through a dark fairy tale romance that transforms both characters, with breathtaking visuals that make the impossible feel real', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 337166, -- Toy Story 1995 + 190869, -- Lilo and Stitch 2002 + 9, + 'noa165', + 'both seem like fun kids films but will genuinely make you cry as an adult - the themes of loyalty and found family are so good', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 149287, -- Hook 1991 + 337166, -- Toy Story 1995 + 9, + 'noa165', + 'Both celebrate the crucial importance of holding onto childhood imagination and the friendships built within it, with a sincerity that hits adults harder than children', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 131885, -- The Goonies 1985 + 149287, -- Hook 1991 + 9, + 'noa165', + 'Both are magical family adventure films built entirely on the power of childhood friendship and the belief that extraordinary things happen when you refuse to stop imagining', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 218219, -- Princess Mononoke 1997 + 174953, -- Nausicaa 1984 + 9, + 'noa165', + 'Both are Miyazaki epics featuring a fierce and compassionate young female protagonist who fights to protect the natural world from industrial destruction', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 218219, -- Princess Mononoke 1997 + 32180, -- Beauty and the Beast 2003 + 8, + 'noa165', + 'Both are animated films featuring a strong-willed young woman who forges an unexpected bond with a fearsome creature, challenging the world''s assumptions about what is monstrous', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 190869, -- Lilo and Stitch 2002 + 96593, -- E.T. the Extra-Terrestrial 1982 + 10, + 'noa165', + 'both will destroy you with the goodbye scene - stories about unlikely families that just get to you no matter how many times you watch', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 96593, -- E.T. the Extra-Terrestrial 1982 + 65811, -- Close Encounters of the Third Kind 1977 + 10, + 'noa165', + 'both are spielberg at his most emotional and awe-inspiring - the alien stuff is almost secondary to how human these films feel', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 96593, -- E.T. the Extra-Terrestrial 1982 + 21213, -- Artificial Intelligence AI 2001 + 9, + 'noa165', + 'Both are Spielberg films about an extraordinary non-human being who forms a deep emotional bond with a child and must eventually face a farewell that is genuinely devastating', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 56871, -- Catch Me If You Can 2002 + 328272, -- The Terminal 2004 + 9, + 'noa165', + 'Both are charming Spielberg films about someone living outside the rules of normal society who finds unexpected warmth and connection despite impossible circumstances', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 14477, -- Amistad 1997 + 67395, -- The Color Purple 1985 + 9, + 'noa165', + 'Both are powerful Spielberg films that confront the devastating injustice of slavery through deeply personal human stories that leave you shaken and moved in equal measure', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 96593, -- E.T. the Extra-Terrestrial 1982 + 149287, -- Hook 1991 + 9, + 'noa165', + 'Both are Spielberg films about a child''s extraordinary friendship and the specific heartbreak of a goodbye that costs something irreplaceable and beautiful', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 21213, -- Artificial Intelligence AI 2001 + 214755, -- Minority Report 2002 + 8, + 'noa165', + 'Both are thoughtful Spielberg science fiction films that use a near-future world to ask urgent questions about identity and what it means to feel and to be loved', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 56871, -- Catch Me If You Can 2002 + 14477, -- Amistad 1997 + 8, + 'noa165', + 'Both are Spielberg films about extraordinary real people facing a system that wants to define and contain them, driven by performances that make every moment feel alive', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 194497, -- Lord of the Rings Fellowship of the Ring 2001 + 194502, -- Lord of the Rings The Two Towers 2002 + 9, + 'noa165', + 'obviously you watch the next one - the battle of helms deep alone is worth it', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 194502, -- Lord of the Rings The Two Towers 2002 + 194500, -- Lord of the Rings The Return of the King 2003 + 10, + 'noa165', + 'the grey havens scene at the end will break your heart - the best trilogy ending ever made no question', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 194497, -- Lord of the Rings Fellowship of the Ring 2001 + 129185, -- Gladiator 2000 + 9, + 'noa165', + 'Both are epic adventure films built around a deeply honorable hero''s journey through beautiful and dangerous worlds where friendship and sacrifice carry the whole emotional weight', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 194500, -- Lord of the Rings The Return of the King 2003 + 46169, -- Braveheart 1995 + 9, + 'noa165', + 'Both are emotionally devastating epics about people who fight for freedom at enormous personal cost, with final acts that feel genuinely earned after everything that came before', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 194497, -- Lord of the Rings Fellowship of the Ring 2001 + 313478, -- Star Wars Episode V The Empire Strikes Back 1980 + 9, + 'noa165', + 'Both are the defining entries in beloved fantasy sagas about an unlikely group of companions standing against overwhelming darkness, where the bonds between characters are everything', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 313478, -- Star Wars Episode V The Empire Strikes Back 1980 + 313477, -- Star Wars Episode III Revenge of the Sith 2005 + 9, + 'noa165', + 'Both are the darkest and most emotionally devastating entries in their respective Star Wars trilogies, defined by a tragedy that recontextualizes everything', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 313478, -- Star Wars Episode V The Empire Strikes Back 1980 + 313479, -- Star Wars Episode VI Return of the Jedi 1983 + 9, + 'noa165', + 'Return of the Jedi pays off every emotional thread Empire established, with Vader''s redemption delivering the most satisfying arc in the entire saga', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 30959, -- Batman Begins 2005 + 30955, -- Batman 1989 + 9, + 'noa165', + 'Both are defining cinematic interpretations of Batman that take the character seriously as a dark and complex figure, combining gothic atmosphere with brilliant villain performances', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 30955, -- Batman 1989 + 30967, -- Batman Returns 1992 + 9, + 'noa165', + 'As the direct sequel it continues Keaton''s performance and Burton''s gothic visual world, with Pfeiffer''s Catwoman delivering arguably the greatest villain performance in the franchise', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 30959, -- Batman Begins 2005 + 311037, -- Spider-Man 2002 + 9, + 'noa165', + 'Both are landmark superhero origin films that ground their heroes in genuine emotional stakes, showing that a person becomes a hero through loss, love, and choice', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 30976, -- Batman Mask of the Phantasm 1993 + 30955, -- Batman 1989 + 8, + 'noa165', + 'Both explore Batman''s psychological complexity through gothic atmosphere and deeply human emotional storytelling, treating the character with a seriousness the medium rarely achieves', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 311037, -- Spider-Man 2002 + 311038, -- Spider-Man 2 2004 + 10, + 'noa165', + 'spider-man 2 is genuinely one of the best superhero films ever made - the train scene where everyone sees peter parker gets me every time', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 311038, -- Spider-Man 2 2004 + 30959, -- Batman Begins 2005 + 9, + 'noa165', + 'Both are considered the greatest superhero films of their era precisely because they ground the hero in genuine emotional stakes that make you care about the person behind the mask', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 130945, -- GoldenEye 1997 + 335336, -- Tomorrow Never Dies 1997 + 9, + 'noa165', + 'Both are the finest Brosnan Bond films, featuring capable female partners, villains with real menace, and action sequences that are exciting rather than just spectacular', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 130945, -- GoldenEye 1997 + 188507, -- Lethal Weapon 1987 + 8, + 'noa165', + 'Both are brilliant action films driven by the electric dynamic between two compelling characters who bring out the best and worst in each other in a dangerous world', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 335336, -- Tomorrow Never Dies 1997 + 220805, -- Mr. and Mrs. Smith 2005 + 8, + 'noa165', + 'Both are exceptionally fun action films where the chemistry between the two leads is so magnetic that watching them interact is more entertaining than the action around them', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 312170, -- The Spy Who Loved Me 1977 + 130945, -- GoldenEye 1997 + 8, + 'noa165', + 'Both represent the high points of their respective Bond eras, with a strong and capable female co-lead and a genuine sense of wit and adventure above average for the series', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 188507, -- Lethal Weapon 1987 + 188509, -- Lethal Weapon 2 1989 + 9, + 'noa165', + 'the sequel is just as good as the first - riggs and murtaugh together never gets old and the ending actually got to me', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 220805, -- Mr. and Mrs. Smith 2005 + 210739, -- Men in Black 1997 + 9, + 'noa165', + 'Both are brilliantly fun action films where the central pleasure is watching two lead performers with outstanding chemistry carry every scene with effortless star power', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 210739, -- Men in Black 1997 + 158999, -- Independence Day 1996 + 9, + 'noa165', + 'Both are big fun Will Smith sci-fi blockbusters with genuine heart and iconic moments that were defining cinematic events of the 1990s and remain just as entertaining today', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 215880, -- Mission Impossible III 2006 + 238072, -- Oceans Eleven 2001 + 9, + 'noa165', + 'Both are slickly executed films where the pleasure is watching brilliant professionals execute a seemingly impossible plan, with a satisfying twist that rewards your attention', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 238072, -- Oceans Eleven 2001 + 306032, -- Snatch 2000 + 9, + 'noa165', + 'Both are brilliantly constructed ensemble crime films full of wit and style, where everything clicks into place at the end in a way that makes you want to watch again immediately', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 69812, -- Conspiracy Theory 1997 + 123435, -- The Game 1997 + 9, + 'noa165', + 'Both are brilliantly constructed paranoid thrillers where the line between what is real and what is staged is constantly shifting, and the truth is more surprising than you could have predicted', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 123435, -- The Game 1997 + 210511, -- Memento 2000 + 9, + 'noa165', + 'Both are perfectly constructed psychological thrillers that systematically dismantle every assumption the audience makes, delivering a twist that reframes everything you understood', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 210511, -- Memento 2000 + 116556, -- Following 1998 + 8, + 'noa165', + 'Both are Nolan films that use brilliantly unconventional structure to construct a mystery about identity and deception, where the form of the storytelling is inseparable from the content', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 312150, -- Spy Kids 2001 + 131885, -- The Goonies 1985 + 9, + 'noa165', + 'Both are wonderful adventure films about kids who use resourcefulness, imagination, and teamwork to outwit dangerous adults in worlds that feel genuinely exciting and inventive', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 109421, -- The Fast and the Furious 2001 + 335835, -- Top Gun 1986 + 8, + 'noa165', + 'Both are high-energy action films about elite performers competing in vehicles at the edge of human ability, where brotherhood and loyalty are everything', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 159172, -- Indiana Jones and the Last Crusade 1989 + 159175, -- Indiana Jones and the Temple of Doom 1984 + 9, + 'noa165', + 'Both are Indiana Jones adventure classics with endlessly inventive action, though the father-son dynamic in Last Crusade gives it a uniquely warm emotional core', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 159172, -- Indiana Jones and the Last Crusade 1989 + 131885, -- The Goonies 1985 + 9, + 'noa165', + 'Both are adventure films with Spielberg magic about finding treasure while dodging danger, where the sense of wonder and the fun of the journey are the whole point', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 215876, -- Mission Impossible 1996 + 238072, -- Oceans Eleven 2001 + 8, + 'noa165', + 'Both are clever films about executing an impossible mission with style and skill, where the fun is in watching brilliant people think their way through every obstacle', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 67395, -- The Color Purple 1985 + 31715, -- Beaches 1988 + 9, + 'noa165', + 'both will make you cry multiple times - powerful stories about women who go through everything and somehow keep going', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 31715, -- Beaches 1988 + 400853, -- Parenthood 1990 + 8, + 'noa165', + 'Both are deeply felt films about the bonds of family and friendship that sustain people through the hardest moments of their lives, told with warmth and genuine emotional intelligence', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 185628, -- The Last Samurai 2003 + 46169, -- Braveheart 1995 + 9, + 'noa165', + 'Both follow an outsider warrior who becomes so moved by a culture''s sense of honor that he fights and ultimately gives everything for it, with sweeping emotional impact', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 46169, -- Braveheart 1995 + 129185, -- Gladiator 2000 + 9, + 'noa165', + 'Both are magnificent historical epics about a wronged man who becomes a freedom fighter through sheer force of will, where the emotional journey is as powerful as the spectacular battles', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 253010, -- A Perfect World 1993 + 56871, -- Catch Me If You Can 2002 + 8, + 'noa165', + 'Both follow an unlikely bond between a man who has made wrong choices and someone who sees the better person he could have been, handled with a bittersweet warmth that stays with you', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 10702, -- Alice Doesnt Live Here Anymore 1974 + 31715, -- Beaches 1988 + 8, + 'noa165', + 'Both follow women redefining themselves on their own terms with honesty and emotional intelligence, capturing something true about female resilience that was ahead of its time', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 61751, -- Children of Men 2005 + 214755, -- Minority Report 2002 + 8, + 'noa165', + 'Both are gripping near-future science fiction films where an emotionally compelling human story drives the high-concept premise in a way that makes the world feel disturbingly plausible', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 123849, -- Gangs of New York 2002 + 131780, -- Goodfellas 1990 + 8, + 'noa165', + 'Both are Scorsese crime films that capture the brutal rituals of men defining themselves through violence and loyalty, with extraordinary performances and visual energy that never lets up', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 183370, -- Ladies in Lavender 2004 + 8183, -- The Age of Innocence 1993 + 8, + 'noa165', + 'Both are emotionally precise period dramas about unexpressed longing and the bittersweet cost of restraint, told with formal beauty that makes every small moment carry enormous weight', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 194500, -- Lord of the Rings The Return of the King 2003 + 313478, -- Star Wars Episode V The Empire Strikes Back 1980 + 9, + 'noa165', + 'Both stand as the emotional peaks of their beloved fantasy trilogies, with final scenes so perfectly crafted they feel like the reason the entire story was told', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 400853, -- Parenthood 1990 + 149287, -- Hook 1991 + 8, + 'noa165', + 'Both are warm and funny films about parents who rediscover the value of childhood imagination through their children, with a genuine emotional honesty that is rare', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 142491, -- Hellboy 2004 + 30959, -- Batman Begins 2005 + 8, + 'noa165', + 'Both are dark superhero films where the hero is a deeply complex outsider who fights monsters while struggling with his own identity, anchored by a performance of real emotional weight', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 248090, -- Paper Clips 2004 + 14477, -- Amistad 1997 + 8, + 'noa165', + 'Both are profoundly moving accounts of people confronting historical injustice and finding a way to bear witness with dignity, making the abstract weight of history feel urgently personal', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 208245, -- Maverick 1994 + 238072, -- Oceans Eleven 2001 + 8, + 'noa165', + 'Both are slick, witty films built on the pleasure of watching gifted people outwit their opponents with style, charm, and a hidden strategy that makes perfect sense in retrospect', + NULL +); + + + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 398232, -- Mork and Mindy 1978 + 96593, -- E.T. the Extra-Terrestrial 1982 + 8, + 'noa165', + 'Both tell warm and inventive stories about an alien visitor transformed by human love who becomes part of a small devoted family, with an emotional generosity that makes the science fiction irrelevant', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 311038, -- Spider-Man 2 2004 + 311040, -- Spider-Man 3 2007 + 4, + 'noa165', + 'Though both continue Peter Parker''s story as a direct sequel, Spider-Man 3 is too messy and unfocused to live up to the emotional quality of the second film', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 256632, -- Pirates of the Caribbean 2003 + 256631, -- Pirates of the Caribbean 2 2006 + 4, + 'noa165', + 'Though both follow Jack Sparrow''s adventures, Pirates 2 is overlong and the plot becomes needlessly complicated compared to the clean thrilling fun of the original', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 313478, -- Star Wars Episode V The Empire Strikes Back 1980 + 313474, -- Star Wars Episode I The Phantom Menace 1999 + 4, + 'noa165', + 'Though both belong to the same Star Wars saga, The Phantom Menace lacks the emotional depth and mythic power that makes Empire unforgettable', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 313478, -- Star Wars Episode V The Empire Strikes Back 1980 + 313476, -- Star Wars Episode II Attack of the Clones 2002 + 3, + 'noa165', + 'Though both are Star Wars films, Attack of the Clones has painfully wooden romantic dialogue and none of the mythic power that defines Empire', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 238072, -- Oceans Eleven 2001 + 238073, -- Oceans Twelve 2004 + 4, + 'noa165', + 'Though Ocean''s Twelve continues the same characters and playful tone, it becomes self-indulgent and the plot is far less satisfying than the original''s clean elegant structure', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 188507, -- Lethal Weapon 1987 + 188511, -- Lethal Weapon 4 1998 + 4, + 'noa165', + 'Though it reunites the same beloved duo, the fourth film has completely lost the energy and freshness of the original and feels like a pale imitation of something once truly great', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 188509, -- Lethal Weapon 2 1989 + 188510, -- Lethal Weapon 3 1992 + 4, + 'noa165', + 'Though Lethal Weapon 3 continues the franchise, it already feels repetitive and the emotional stakes that gave the first two films their power are largely absent', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 312150, -- Spy Kids 2001 + 312152, -- Spy Kids 3-D Game Over 2003 + 3, + 'noa165', + 'Though it continues the same family franchise, Spy Kids 3 abandons everything charming about the original in favor of a gimmicky 3D video game concept', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 159172, -- Indiana Jones and the Last Crusade 1989 + 159167, -- Indiana Jones 4 2006 + 4, + 'noa165', + 'Though it reunites the same iconic character, Indiana Jones 4 replaces the grounded adventure thrills of the originals with an alien plot that never fits the spirit of the series', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 215876, -- Mission Impossible 1996 + 215879, -- Mission Impossible II 2000 + 4, + 'noa165', + 'Though both follow Ethan Hunt on dangerous missions, MI2 is pure style with almost no substance and lacks the intelligent tension and clever construction of the original', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 30955, -- Batman 1989 + 30965, -- Batman Forever 1995 + 3, + 'noa165', + 'Though Batman Forever continues the same franchise, it abandons the gothic atmosphere and emotional intelligence of the first two films entirely in favor of campy neon excess', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 30967, -- Batman Returns 1992 + 30952, -- Batman and Robin 1997 + 2, + 'noa165', + 'Though it is a direct sequel to the Burton era, Batman and Robin destroys everything that made those films distinctive in favor of something so bad it ended the entire franchise', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 312151, -- Spy Kids 2 Island of Lost Dreams 2002 + 312152, -- Spy Kids 3-D Game Over 2003 + 3, + 'noa165', + 'Though both continue the Spy Kids franchise, the third film reduces everything interesting about the series to a gimmicky video game premise with nothing charming left', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 188507, -- Lethal Weapon 1987 + 188510, -- Lethal Weapon 3 1992 + 4, + 'noa165', + 'Though Lethal Weapon 3 reunites the same characters, the formula has started to feel tired and the film lacks the emotional freshness that made the original so compelling', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 215880, -- Mission Impossible III 2006 + 215879, -- Mission Impossible II 2000 + 4, + 'noa165', + 'Though both are Mission Impossible sequels, MI2''s style-over-substance approach feels hollow compared to MI3''s genuine emotional stakes and sense of real threat', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 131780, -- Goodfellas 1990 + 56304, -- Casino 1995 + 4, + 'noa165', + 'Though both are Scorsese crime films following men seduced by criminal glamour, Casino''s three-hour running time and unrelenting bleakness make it a difficult recommendation for Goodfellas fans', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 56871, -- Catch Me If You Can 2002 + 30686, -- The Basketball Diaries 1995 + 3, + 'noa165', + 'Though both feature DiCaprio as a young man living outside the law, Basketball Diaries is too dark and harrowing to recommend to fans of Catch Me If You Can''s charming lightness', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 131780, -- Goodfellas 1990 + 41518, -- Blow 2001 + 4, + 'noa165', + 'Though both follow the glamorous rise and painful fall of men seduced by criminal worlds, Blow is too relentlessly bleak and joyless to offer the same entertainment value as Goodfellas', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 400853, -- Parenthood 1990 + 200521, -- Magnolia 1999 + 4, + 'noa165', + 'Though both are ensemble films about multiple American families navigating personal crises simultaneously, Magnolia''s three-hour relentless bleakness makes it a very poor match for Parenthood''s warmth', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 8183, -- The Age of Innocence 1993 + 209158, -- Mean Streets 1973 + 3, + 'noa165', + 'Though both are Scorsese films about men trapped by the expectations of their social world, Mean Streets'' rough violence is completely at odds with The Age of Innocence''s formal restraint', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 123849, -- Gangs of New York 2002 + 56304, -- Casino 1995 + 4, + 'noa165', + 'Though both are long Scorsese crime films about ambitious men navigating a violent world, Casino''s punishing length and total emotional darkness make it a heavy follow-up to Gangs of New York', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 97727, -- Edward Scissorhands 1990 + 120506, -- From Hell 2001 + 2, + 'noa165', + 'Though both star Johnny Depp in visually distinctive period settings, From Hell''s excessive gore and grimness make it a terrible recommendation for fans of Edward Scissorhands'' tender romance', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 30959, -- Batman Begins 2005 + 54209, -- Cape Fear 1991 + 2, + 'noa165', + 'Though both are intense crime thrillers featuring a terrifying antagonist, Cape Fear is pure psychological horror with nothing to offer fans of Batman Begins'' inspirational emotional tone', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 96593, -- E.T. the Extra-Terrestrial 1982 + 10830, -- Alien 1979 + 2, + 'noa165', + 'Though both center on emotional human-alien encounters on Earth, Alien''s genuinely terrifying horror atmosphere is the polar opposite of E.T.''s warmth and sense of wonder', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 210739, -- Men in Black 1997 + 10830, -- Alien 1979 + 4, + 'noa165', + 'Though both feature humans in dramatic encounters with alien creatures, Alien is a genuine horror masterpiece that is the complete opposite of Men in Black''s light comedic energy', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 220276, -- Moulin Rouge! 2001 + 176711, -- Kill Bill Vol. 1 2003 + 1, + 'noa165', + 'Though both are visually extravagant films with extraordinary production design, Kill Bill''s constant graphic violence makes it the complete opposite of what a Moulin Rouge fan would ever want', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 67395, -- The Color Purple 1985 + 185704, -- The Last Temptation of Christ 1988 + 3, + 'noa165', + 'Though both are powerful films about spiritual suffering and human endurance under historical oppression, Last Temptation is too intellectually uncomfortable to recommend to fans of The Color Purple''s emotional directness', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 31715, -- Beaches 1988 + 54209, -- Cape Fear 1991 + 3, + 'noa165', + 'Though both are intense films about human relationships pushed to breaking point, Cape Fear is a terrifying thriller completely at odds with the warm emotional world of Beaches', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 46169, -- Braveheart 1995 + 185704, -- The Last Temptation of Christ 1988 + 3, + 'noa165', + 'Though both are films about a historical figure who sacrifices everything for his beliefs and is destroyed for it, Last Temptation''s controversial tone makes it a very poor match for Braveheart fans', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 218219, -- Princess Mononoke 1997 + 176711, -- Kill Bill Vol. 1 2003 + 3, + 'noa165', + 'Though both feature fierce female protagonists who are extraordinary warriors in beautifully realized visual worlds, Kill Bill''s modern graphic violence is completely at odds with Princess Mononoke''s mythic spirit', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 304862, -- Sleepy Hollow 1999 + 120506, -- From Hell 2001 + 4, + 'noa165', + 'Though both are visually atmospheric period thrillers starring Depp investigating brutal murders in dark historical settings, From Hell''s excessive gore makes it a poor recommendation for Sleepy Hollow fans', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 311037, -- Spider-Man 2002 + 176711, -- Kill Bill Vol. 1 2003 + 3, + 'noa165', + 'Though both are action films built around an exceptional protagonist fighting through stylized environments, Kill Bill''s graphic violence and nihilism make it completely unsuitable for Spider-Man fans', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 44238, -- Bordello of Blood 1996 + 70959, -- Corpse Bride 2005 + 1, + 'noa165', + 'Though both feature humans drawn into a world populated by the undead, Bordello of Blood''s crude and exploitative approach is a terrible recommendation for fans of Corpse Bride''s emotional beauty', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 112290, -- Fight Club 1999 + 176711, -- Kill Bill Vol. 1 2003 + 4, + 'noa165', + 'Though both are stylistically bold films that frame graphic violence as a form of liberation, Kill Bill''s emotional detachment and constant gore make it a weaker recommendation for fans of Fight Club''s ideas', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 130945, -- GoldenEye 1997 + 218808, -- Moonraker 1979 + 3, + 'noa165', + 'Though both are large-scale Bond adventures, Moonraker''s absurd space setting and lack of dramatic tension make it a very poor match for the grounded quality of GoldenEye', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 335336, -- Tomorrow Never Dies 1997 + 218808, -- Moonraker 1979 + 3, + 'noa165', + 'Though both are ambitious Bond spectacles, Moonraker''s desperate science fiction premise is the opposite of the focused and energetic action that makes Tomorrow Never Dies entertaining', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 335336, -- Tomorrow Never Dies 1997 + 372233, -- You Only Live Twice 1967 + 3, + 'noa165', + 'Though both Bond films feature a villain trying to trigger a global conflict, You Only Live Twice is too dated and formulaic to recommend to fans of Tomorrow Never Dies'' dynamic style', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 130945, -- GoldenEye 1997 + 85871, -- Diamonds Are Forever 1971 + 3, + 'noa165', + 'Though both are Bond films with outlandish villains and globe-trotting missions, Diamonds Are Forever is too dated and uncomfortable in its treatment of women to recommend to GoldenEye fans', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 130945, -- GoldenEye 1997 + 192702, -- The Living Daylights 1987 + 4, + 'noa165', + 'Though both attempt a more serious and grounded approach to Bond, Living Daylights'' flat direction and forgettable villain make it a weak companion to GoldenEye''s energy', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 335336, -- Tomorrow Never Dies 1997 + 189403, -- Licence to Kill 1989 + 4, + 'noa165', + 'Though both attempt to bring greater realism to the Bond franchise, Licence to Kill is too dark and grim for a Bond film and loses the fun that makes the series appealing', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 86263, -- Die Another Day 2002 + 335336, -- Tomorrow Never Dies 1997 + 4, + 'noa165', + 'Though both are Brosnan Bond films with globe-trotting action, Die Another Day''s increasingly ridiculous plot makes it a much weaker companion to Tomorrow Never Dies', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 312170, -- The Spy Who Loved Me 1977 + 85871, -- Diamonds Are Forever 1971 + 3, + 'noa165', + 'Though both are Roger Moore-era Bond films, Diamonds Are Forever is too campy and uncomfortable in its treatment of women to recommend alongside the more capable Spy Who Loved Me', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 120574, -- From Russia with Love 1963 + 130945, -- GoldenEye 1997 + 4, + 'noa165', + 'Though both are regarded as more serious and tense Bond films compared to the average entry, From Russia with Love''s dated pace makes it a weaker experience for fans of GoldenEye''s modern energy', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 92573, -- Dr. No 1962 + 215876, -- Mission Impossible 1996 + 4, + 'noa165', + 'Though both follow a secret agent on a dangerous international mission requiring clever deception, Dr No is too slow and dated to satisfy fans of Mission Impossible''s kinetic energy', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 240521, -- On Her Majesty's Secret Service 1969 + 130945, -- GoldenEye 1997 + 3, + 'noa165', + 'Though both attempt an unusually emotional and personal Bond story, On Her Majesty''s Secret Service is undermined by a miscast lead while GoldenEye has Brosnan fully in command of the role', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 192514, -- Live and Let Die 1973 + 335336, -- Tomorrow Never Dies 1997 + 3, + 'noa165', + 'Though both are Bond films featuring a capable female partner, Live and Let Die''s dated racial elements make it a deeply uncomfortable recommendation for fans of Tomorrow Never Dies', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 203649, -- The Man with the Golden Gun 1974 + 335336, -- Tomorrow Never Dies 1997 + 3, + 'noa165', + 'Though both feature a memorable and theatrical Bond villain, The Man with the Golden Gun''s thin script makes it a very poor match for Tomorrow Never Dies', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 194497, -- Lord of the Rings Fellowship of the Ring 2001 + 340652, -- Troy 2004 + 4, + 'noa165', + 'Though both are epic adventure films set in ancient or mythological worlds with spectacular battles, Troy''s uneven tone and weaker performances make it a disappointing companion to LOTR', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 129185, -- Gladiator 2000 + 340652, -- Troy 2004 + 4, + 'noa165', + 'Though both are ancient world epics with grand battle sequences and themes of honor, Troy lacks the consistent emotional power and clear moral center that makes Gladiator so satisfying', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 210511, -- Memento 2000 + 200521, -- Magnolia 1999 + 4, + 'noa165', + 'Though both are ambitious films that refuse conventional narrative structure, Magnolia''s three hours of relentless misery offers nothing of Memento''s clever puzzle pleasure', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 123435, -- The Game 1997 + 350424, -- Vanilla Sky 2001 + 4, + 'noa165', + 'Though both feature wealthy protagonists uncertain whether their reality has been manipulated, Vanilla Sky''s self-indulgent pacing makes it a weak recommendation for fans of The Game''s tight construction', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 238072, -- Oceans Eleven 2001 + 56304, -- Casino 1995 + 4, + 'noa165', + 'Though both are stylish films about professional criminals operating in Las Vegas, Casino''s three-hour grimness makes it completely unsuitable for fans of Ocean''s Eleven''s breezy fun', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 109421, -- The Fast and the Furious 2001 + 41518, -- Blow 2001 + 3, + 'noa165', + 'Though both follow charismatic young men whose love of the fast life leads them into criminal worlds, Blow is too bleak and depressing to recommend to fans of Fast and Furious''s joyful energy', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 69812, -- Conspiracy Theory 1997 + 350424, -- Vanilla Sky 2001 + 4, + 'noa165', + 'Though both follow confused protagonists unsure whether their reality has been manipulated, Vanilla Sky''s self-indulgent pacing makes it a weaker experience for fans of Conspiracy Theory''s paranoid energy', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 56282, -- Cashback 2004 + 200521, -- Magnolia 1999 + 4, + 'noa165', + 'Though both are ambitious films that slow time to examine the beauty and pain of ordinary human experience, Magnolia''s crushing bleakness is completely at odds with Cashback''s gentle visual warmth', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 190869, -- Lilo and Stitch 2002 + 849, -- 101 Dalmatians II 2003 + 4, + 'noa165', + 'Though both are Disney animated films about a child''s intense bond with a beloved creature, 101 Dalmatians 2 lacks the emotional depth and originality that makes Lilo and Stitch so exceptional', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 337166, -- Toy Story 1995 + 849, -- 101 Dalmatians II 2003 + 4, + 'noa165', + 'Though both are Disney animated films, 101 Dalmatians 2 lacks the emotional and narrative craftsmanship that makes Toy Story a timeless film rather than just a pleasant distraction', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 214755, -- Minority Report 2002 + 112290, -- Fight Club 1999 + 5, + 'noa165', + 'Though both are ambitious films challenging how we perceive identity and free will in a dark version of modern society, Fight Club''s nihilism and graphic violence make it less accessible than Minority Report', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 142491, -- Hellboy 2004 + 142492, -- Hellboy 2 2006 + 5, + 'noa165', + 'Though it continues the same character and universe, Hellboy 2''s thinner story and more visually indulgent style make it a weaker experience compared to the original''s emotional warmth', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 61751, -- Children of Men 2005 + 359297, -- War of the Worlds 2005 + 4, + 'noa165', + 'Though both are intense films about a parent protecting a child through apocalyptic chaos, War of the Worlds'' convenient ending makes it a less satisfying experience than Children of Men', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 116556, -- Following 1998 + 247579, -- Panic Room 2002 + 5, + 'noa165', + 'Though both are tense thrillers where a protagonist is trapped and watched by someone who has invaded their space, Following''s raw low-budget minimalism is a very different experience from Panic Room''s polish', + NULL +); + + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 117314, -- For Your Eyes Only 1981 + 130945, -- GoldenEye 1997 + 5, + 'noa165', + 'Though both attempt a more grounded and realistic approach to Bond, For Your Eyes Only''s dated production makes it a weaker companion to the dynamic GoldenEye', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 391006, -- Happy Days 1974 + 398232, -- Mork and Mindy 1978 + 5, + 'noa165', + 'Though both are warm American TV comedies that share the same universe, Happy Days feels more dated and less inventive than the charming originality of Mork and Mindy', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 398571, -- Murphy Brown 1988 + 398232, -- Mork and Mindy 1978 + 4, + 'noa165', + 'Though both are beloved American TV comedies built around a singular charismatic lead performance, Murphy Brown''s workplace political humor is more dated and less emotionally warm than Mork and Mindy', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 398571, -- Murphy Brown 1988 + 400853, -- Parenthood 1990 + 4, + 'noa165', + 'Though both explore the complications of modern American life with wit and warmth, Murphy Brown''s dated workplace comedy makes it a weaker recommendation for fans of Parenthood''s genuine emotional depth', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 34306, -- Berlin Berlin 1998 + 151616, -- How to Lose a Guy in 10 Days 2003 + 3, + 'noa165', + 'Though both follow an energetic female protagonist navigating complicated romantic situations, Berlin Berlin''s chaotic and culturally specific comedy makes it a poor match for How to Lose a Guy''s mainstream warmth', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 333856, -- Titanic 1997 + 30686, -- The Basketball Diaries 1995 + 3, + 'noa165', + 'Though both star DiCaprio in intensely emotional films, Basketball Diaries is too dark and harrowing to recommend to fans of Titanic''s sweeping romantic beauty', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 96593, -- E.T. the Extra-Terrestrial 1982 + 100130, -- Empire of the Sun 1987 + 5, + 'noa165', + 'Though both are Spielberg films about a child''s resilience in the face of an overwhelming world they cannot control, Empire of the Sun''s wartime bleakness makes it a heavier experience than E.T.''s warmth', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 159175, -- Indiana Jones and the Temple of Doom 1984 + 159167, -- Indiana Jones 4 2006 + 4, + 'noa165', + 'Though both are Indiana Jones films, Crystal Skull''s alien plot and inconsistent tone make it a weak follow-up to the visceral adventure excitement of Temple of Doom', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 30959, -- Batman Begins 2005 + 30976, -- Batman Mask of the Phantasm 1993 + 5, + 'noa165', + 'Though both are thoughtful Batman films exploring the psychology of a hero defined by childhood trauma, Mask of the Phantasm''s animated format may disappoint fans expecting the cinematic ambition of Batman Begins', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 208245, -- Maverick 1994 + 340652, -- Troy 2004 + 4, + 'noa165', + 'Though both feature clever protagonists navigating dangerous situations with charm and wit, Troy''s uneven performances and bloated runtime make it an unsatisfying companion for Maverick fans', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 46190, -- Bravo Profiles Johnny Depp 2003 + 97727, -- Edward Scissorhands 1990 + 5, + 'noa165', + 'Though the documentary profiles the same actor who made Edward Scissorhands iconic, it is too surface-level and promotional to satisfy fans who love the depth of his actual performances', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 111963, -- Fidelio 1979 + 220276, -- Moulin Rouge! 2001 + 1, + 'noa165', + 'Though both involve operatic singing at the center of a love story, a static opera recording has absolutely nothing to offer fans of Moulin Rouge''s electric cinematic passion', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 29771, -- Barbier de Seville Le 1980 + 220276, -- Moulin Rouge! 2001 + 2, + 'noa165', + 'Though both involve theatrical singing and a romantic narrative, the passive opera recording format has nothing to offer fans of Moulin Rouge''s cinematic energy and passion', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 129042, -- Giuseppe Verdi Messa da Requiem 2001 + 248090, -- Paper Clips 2004 + 3, + 'noa165', + 'Though both are documentary films about extraordinary performances of deeply serious material, the Verdi Requiem recording is too dry and passive to recommend to fans of Paper Clips'' moving storytelling', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 82868, -- Denk ich an Deutschland 2001 + 248090, -- Paper Clips 2004 + 3, + 'noa165', + 'Though both are documentaries about Germans confronting their national memory, the German film is too academic and culturally specific to recommend to fans of Paper Clips'' warm and accessible storytelling', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 64230, -- Cinquantenaire du deuxieme sexe 2001 + 67395, -- The Color Purple 1985 + 3, + 'noa165', + 'Though both address the experience of women confronting the systems that constrain them, the French documentary is too academic and dry to recommend to fans of The Color Purple''s powerful emotional narrative', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 15187, -- Amsterdamned 1988 + 69812, -- Conspiracy Theory 1997 + 4, + 'noa165', + 'Though both are crime thrillers where a lone investigator must unravel a dangerous hidden conspiracy, Amsterdamned''s dated style and flat execution make it a poor recommendation for Conspiracy Theory fans', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 78877, -- Dark Mist The 1996 + 70959, -- Corpse Bride 2005 + 3, + 'noa165', + 'Though both feature dark atmospheric visuals and an otherworldly female presence, Dark Mist''s vague abstraction offers nothing to fans of Corpse Bride''s emotional warmth and narrative clarity', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 100241, -- En attendant la cigogne 1997 + 200864, -- Maid in Manhattan 2002 + 3, + 'noa165', + 'Though both are romantic comedies about a couple navigating unexpected circumstances on the way to finding each other, the French film is too slow and understated for fans of Maid in Manhattan''s mainstream charm', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 34304, -- Berlin Babylon 2001 + 123849, -- Gangs of New York 2002 + 4, + 'noa165', + 'Though both examine a city being rebuilt from the ruins of violence and historical conflict, Berlin Babylon''s slow documentary format has nothing to offer fans of Gangs of New York''s visceral storytelling', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 117582, -- Foreigners Out 2002 + 14477, -- Amistad 1997 + 2, + 'noa165', + 'Though both confront the dehumanization of people excluded by society, Foreigners Out is too disturbing and upsetting to recommend to fans of Amistad''s powerful but ultimately hopeful storytelling', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 36426, -- Bian cheng 1984 + 218219, -- Princess Mononoke 1997 + 3, + 'noa165', + 'Though both are visually beautiful Asian films about a young person''s coming of age in a world full of wonder and danger, Bian cheng''s extremely slow pace makes it inaccessible for Princess Mononoke fans', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 28092, -- Bakom jalusin 1984 + 69469, -- Confidences trop intimes 2004 + 3, + 'noa165', + 'Though both are European films about characters kept from true connection by an invisible barrier, Bakom jalusin is too minimalist and slow for fans of Intimate Strangers'' quiet tension', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 96239, -- Detachez vos ceintures 1976 + 238072, -- Oceans Eleven 2001 + 3, + 'noa165', + 'Though both are comedies built around characters outsmarting others through clever deceptions, the dated French comedy has nothing to offer fans of Ocean''s Eleven''s polished entertainment', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 175879, -- Khadgam 2002 + 109421, -- The Fast and the Furious 2001 + 4, + 'noa165', + 'Though both are action films built around physical confrontations and a hero protecting those he loves, Khadgam''s formulaic structure and uneven pacing make it a poor match for the exhilarating fun of Fast and Furious', + NULL +); + +-- Additional good recommendations + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 335835, -- Top Gun 1986 + 220805, -- Mr. and Mrs. Smith 2005 + 8, + 'noa165', + 'Both films are built around an intensely watchable romantic chemistry between two leads in an action setting, where the tension between them is as exciting as anything happening around them', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 311428, -- Splash 1984 + 190869, -- Lilo and Stitch 2002 + 8, + 'noa165', + 'Both are heartfelt films about an unusual creature from another world who finds love and a sense of home among humans, where emotional sincerity overcomes any strangeness of premise', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 32180, -- Beauty and the Beast 2003 + 337166, -- Toy Story 1995 + 9, + 'noa165', + 'Both Disney classics have become timeless because the genuine emotional depth beneath the magical entertainment is sophisticated enough to move adults and children for completely different reasons', + NULL +); + + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 253010, -- A Perfect World 1993 + 185628, -- The Last Samurai 2003 + 8, + 'noa165', + 'Both are emotionally resonant films about an unlikely bond between two men from different worlds, where the connection between them reveals something profound about honor and loss', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 372733, -- Young Sherlock Holmes 1985 + 123435, -- The Game 1997 + 8, + 'noa165', + 'Both are clever mystery films where the pleasure is in the gradual revelation that everything you thought was straightforward is in fact a carefully constructed puzzle with a brilliant solution', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 159175, -- Indiana Jones and the Temple of Doom 1984 + 131885, -- The Goonies 1985 + 9, + 'noa165', + 'Both are thrilling 1980s adventure films with that unmistakable Spielberg energy, where characters face real danger in inventive settings and the sheer entertainment value never lets up', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 100130, -- Empire of the Sun 1987 + 56871, -- Catch Me If You Can 2002 + 8, + 'noa165', + 'Both are Spielberg films anchored by a remarkable performance about someone who survives an extraordinary situation through wit, adaptability, and an unbreakable will to live', + NULL +); + + +-- Additional not-good recommendations + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 131780, -- Goodfellas 1990 + 45312, -- Boxcar Bertha 1972 + 3, + 'noa165', + 'Though both are crime films about characters drawn into violent criminal worlds, Boxcar Bertha is too rough and exploitative to offer anything to fans of Goodfellas'' craftsmanship', + NULL +); + + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 176712, -- Kill Bill Vol. 2 2004 + 34104, -- Benny and Joon 1993 + 4, + 'noa165', + 'Though both feature a striking outsider figure whose capacity for violence is as legendary as their capacity for love, the emotional tones are completely incompatible', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 94741, -- Duel 1971 + 158999, -- Independence Day 1996 + 4, + 'noa165', + 'Though both center on a lone protagonist who must find a way to defeat an overwhelming and relentless threat, Duel''s repetitive single-location premise makes it a weak recommendation for fans of Independence Day''s scope', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 350424, -- Vanilla Sky 2001 + 112290, -- Fight Club 1999 + 5, + 'noa165', + 'Though both feature a privileged male protagonist whose perfect life is shattered by an identity-questioning encounter, Fight Club is a far more coherent and satisfying realization of the same concept', + NULL +); + + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 67388, -- The Color of Money 1986 + 238072, -- Oceans Eleven 2001 + 4, + 'noa165', + 'Though both feature a supremely confident older mentor watching a charismatic young protégé operate under high pressure, Color of Money lacks the wit and ensemble energy that makes Ocean''s Eleven so entertaining', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 51413, -- Cest le vent 1997 + 56282, -- Cashback 2004 + 3, + 'noa165', + 'Though both are short films exploring the way a young man perceives the world around him with unusual visual sensitivity, Cest le vent is too slow and minimal to satisfy fans of Cashback''s warmth', + NULL +); + + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 247579, -- Panic Room 2002 + 131885, -- The Goonies 1985 + 4, + 'noa165', + 'Though both are films about people trapped in a dangerous situation inside an enclosed space, Panic Room''s adult thriller darkness is completely at odds with the adventurous joy of The Goonies', + NULL +); + + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 311040, -- Spider-Man 3 2007 + 311037, -- Spider-Man 2002 + 4, + 'noa165', + 'Though both follow the same beloved character in the same universe, Spider-Man 3 undoes the emotional groundwork of the first film with too many villains and a tone-deaf script', + NULL +); + + + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 185628, -- The Last Samurai 2003 + 129185, -- Gladiator 2000 + 9, + 'noa165', + 'Both are epic films about a warrior who finds his greatest purpose fighting for a culture not his own, with breathtaking battle sequences and a deeply emotional final act', + NULL +); + + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 311040, -- Spider-Man 3 2007 + 30959, -- Batman Begins 2005 + 3, + 'noa165', + 'Though both are superhero films featuring a hero struggling with darkness and temptation, Spider-Man 3 is too messy and unfocused to offer anything to fans of Batman Begins'' grounded brilliance', + NULL +); + + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 30952, -- Batman and Robin 1997 + 311037, -- Spider-Man 2002 + 2, + 'noa165', + 'Though both are superhero films about a hero protecting their city from costumed villains, Batman and Robin''s campy awfulness makes it a terrible recommendation for fans of Spider-Man''s genuine heart', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 256631, -- Pirates of the Caribbean 2 2006 + 238072, -- Oceans Eleven 2001 + 4, + 'noa165', + 'Though both are ensemble films built around a charismatic lead executing a clever plan, Pirates 2''s bloated and convoluted plot is a poor match for Ocean''s Eleven''s clean and witty construction', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 200521, -- Magnolia 1999 + 56871, -- Catch Me If You Can 2002 + 3, + 'noa165', + 'Though both are films about characters running from the consequences of their own choices, Magnolia''s three-hour relentless bleakness makes it a very poor match for Catch Me If You Can''s charming lightness', + NULL +); + + + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 188511, -- Lethal Weapon 4 1998 + 220805, -- Mr. and Mrs. Smith 2005 + 4, + 'noa165', + 'Though both are action films built on the chemistry between two mismatched partners, Lethal Weapon 4 is too tired and formulaic to offer anything to fans of Mr. and Mrs. Smith''s fresh energy', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 34104, -- Benny and Joon 1993 + 113506, -- Finding Neverland 2004 + 8, + 'noa165', + 'Both are films about someone whose unconventional imagination and gentle spirit brings unexpected joy and healing to the people around them', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 116556, -- Following 1998 + 123435, -- The Game 1997 + 7, + 'noa165', + 'both are clever thrillers built around a guy who slowly realizes someone has been controlling his life the whole time - following is rougher around the edges but the same satisfying paranoid energy', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 311428, -- Splash 1984 + 96593, -- E.T. the Extra-Terrestrial 1982 + 7, + 'noa165', + 'both are sweet stories about an unusual visitor from another world who finds a home with someone who genuinely loves them - different tone but the same warm emotional core', + NULL +); + + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 25192, -- The Aviator 2004 + 56871, -- Catch Me If You Can 2002 + 7, + 'noa165', + 'both are about a brilliant and charismatic guy who builds an extraordinary life through sheer force of will - the aviator is darker and longer but the dicaprio energy is the same', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 100130, -- Empire of the Sun 1987 + 149287, -- Hook 1991 + 7, + 'noa165', + 'both are spielberg films about a boy who has to find something extraordinary inside himself to survive a world way too big for him - different tone but both genuinely moving', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 359297, -- War of the Worlds 2005 + 158999, -- Independence Day 1996 + 6, + 'noa165', + 'both are alien invasion films where ordinary people try to survive the end of the world - war of the worlds is darker and the ending is annoying but the setup is genuinely tense', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 350424, -- Vanilla Sky 2001 + 210511, -- Memento 2000 + 6, + 'noa165', + 'both mess with your head about what is real and what the main character is imagining - vanilla sky is more self-indulgent but if you liked the mind-bending quality of memento you get why someone would recommend it', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 235615, -- Nothing in Common 1986 + 328272, -- The Terminal 2004 + 6, + 'noa165', + 'both are underrated tom hanks films about a guy dealing with a complicated emotional situation with more depth than you expect - nothing in common is older and uneven but the hanks warmth is there', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 160524, -- Insomnia 2002 + 210511, -- Memento 2000 + 6, + 'noa165', + 'both are nolan thrillers where the main character cannot fully trust what his own mind is telling him - insomnia is slower and less inventive but the same unsettling psychological atmosphere', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 238073, -- Oceans Twelve 2004 + 306032, -- Snatch 2000 + 6, + 'noa165', + 'both are stylish ensemble crime films with a lot of overlapping plot threads that eventually click into place - ocean''''s twelve is weaker but if you love the genre you can see why someone would suggest it', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 313474, -- Star Wars Episode I The Phantom Menace 1999 + 313477, -- Star Wars Episode III Revenge of the Sith 2005 + 6, + 'noa165', + 'they are in the same prequel trilogy so you understand the recommendation but phantom menace is such a different experience from revenge of the sith - the payoff only really comes in the third one', + NULL +); + + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 340652, -- Troy 2004 + 185628, -- The Last Samurai 2003 + 7, + 'noa165', + 'both are epic historical films where a warrior fights in a world that is slowly dying and ends up on the losing side of history - troy is messier but the same epic sadness is there', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 174953, -- Nausicaa 1984 + 190869, -- Lilo and Stitch 2002 + 7, + 'noa165', + 'both have a young female lead who protects a creature the rest of the world wants to destroy because they cannot understand it - different styles but the same emotional generosity', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 25192, -- The Aviator 2004 + 131780, -- Goodfellas 1990 + 7, + 'noa165', + 'both follow a charismatic obsessive guy who builds something incredible and then slowly loses control of it - the aviator is slower but the dicaprio performance has the same addictive quality', + NULL +); + + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 174953, -- Nausicaa 1984 + 149287, -- Hook 1991 + 7, + 'noa165', + 'both feature a protagonist who refuses to give up on the people they love even when the whole world seems against them - nausicaa is more serious but the same heart is there', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 176712, -- Kill Bill Vol. 2 2004 + 220276, -- Moulin Rouge! 2001 + 3, + 'noa165', + 'though both are visually striking films about a woman fighting her way toward love and freedom, kill bill 2 is way too violent and cold to recommend to moulin rouge fans', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 94741, -- Duel 1971 + 56871, -- Catch Me If You Can 2002 + 3, + 'noa165', + 'both are early spielberg films about a clever protagonist trying to stay one step ahead of someone chasing them - duel is impressive for its time but way too repetitive to recommend to catch me if you can fans', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +VALUES ( + 400853, -- Parenthood 1990 + 398232, -- Mork and Mindy 1978 + 8, + 'noa165', + 'both are really warm and funny stories about unconventional families figuring things out together - the humor is gentle but the emotional moments genuinely land', + NULL +); diff --git a/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_orimor25.sql b/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_orimor25.sql new file mode 100644 index 00000000..31701ce2 --- /dev/null +++ b/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_orimor25.sql @@ -0,0 +1,273 @@ +-- Movie Pairs Ranking +-- GitHub: orimor25 + +-- GOOD RECOMMENDATIONS +-- Nolan directed pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 116556, 10, 'orimor25', 'Memento and Following are both Nolan films built around non-linear storytelling. If you enjoy one, the other is essential viewing.', null); # Memento -> Following +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 210511, 9, 'orimor25', 'Both Nolan films that reward attention to structure. Batman Begins grounds a franchise in realism, Memento does the same for the thriller genre.', null); # Batman Begins -> Memento +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (160524, 30959, 8, 'orimor25', 'Both early Nolan films exploring guilt and moral compromise. Insomnia is smaller in scale but shares the same psychological intensity as Batman Begins.', null); # Insomnia -> Batman Begins +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (90837, 210511, 9, 'orimor25', 'Doodlebug is a three-minute short already exploring the recursive time loops Nolan would perfect in Memento. Same mind, same obsession.', null); # Doodlebug -> Memento + +-- Scorsese directed pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 56304, 10, 'orimor25', 'Goodfellas and Casino are companion pieces about organized crime. Same director, overlapping cast, similar energy but different settings.', null); # Goodfellas -> Casino +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (209158, 131780, 9, 'orimor25', 'Mean Streets is where Scorsese started exploring the street crime world he would perfect with Goodfellas. Same DNA, earlier stage.', null); # Mean Streets -> Goodfellas +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (326155, 177369, 9, 'orimor25', 'Taxi Driver and King of Comedy are both Scorsese-De Niro studies of obsessive, delusional loners in New York City. Spiritual siblings.', null); # Taxi Driver -> King of Comedy +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (270971, 326155, 9, 'orimor25', 'Raging Bull and Taxi Driver are both Scorsese-De Niro character studies of self-destructive men. Different worlds, same raw intensity.', null); # Raging Bull -> Taxi Driver +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (123849, 56304, 7, 'orimor25', 'Both epic Scorsese films with sprawling casts and period settings. Gangs of New York shares Casino''s ambition even if the eras are completely different.', null); # Gangs of New York -> Casino +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (7842, 47130, 8, 'orimor25', 'Both dark Scorsese comedies about men spiraling through a single nightmarish experience. After Hours in Manhattan, Bringing Out the Dead in the ambulance.', null); # After Hours -> Bringing Out the Dead + +-- Tarantino directed pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 276217, 10, 'orimor25', 'Pulp Fiction and Reservoir Dogs are the two films that defined Tarantino. Same dialogue style, same genre-bending confidence, essential pairing.', null); # Pulp Fiction -> Reservoir Dogs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 176712, 10, 'orimor25', 'Kill Bill Volumes 1 and 2 are two halves of the same film. You cannot watch one without the other and get the full story.', null); # Kill Bill Vol 1 -> Vol 2 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 164572, 8, 'orimor25', 'Both Tarantino crime films with overlapping themes of loyalty and double-crossing. Jackie Brown is more restrained but shares the same DNA.', null); # Pulp Fiction -> Jackie Brown +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159665, 276217, 8, 'orimor25', 'Both Tarantino films built around tension-filled conversations that explode into violence. The farmhouse opening of Basterds echoes the heist tension of Dogs.', null); # Inglourious Basterds -> Reservoir Dogs + +-- Spielberg directed pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290070, 289109, 10, 'orimor25', 'Both Spielberg WWII films that deal with the human cost of war. Schindler''s List from the civilian side, Saving Private Ryan from the battlefield.', null); # Schindler's List -> Saving Private Ryan +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 159172, 10, 'orimor25', 'Raiders and Last Crusade are the two best Indiana Jones films. Same character, same adventure spirit, the Connery addition makes Crusade a worthy companion.', null); # Raiders -> Last Crusade +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (165961, 271095, 9, 'orimor25', 'Jaws and Raiders are peak Spielberg adventure filmmaking. Both build tension masterfully and both made Ford/Scheider into instant stars.', null); # Jaws -> Raiders +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 65811, 9, 'orimor25', 'Both Spielberg films about alien contact where the aliens are not the enemy. E.T. for children, Close Encounters for adults, both with genuine wonder.', null); # E.T. -> Close Encounters +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 117874, 8, 'orimor25', 'Both Spielberg-directed, both Hanks-led, both based on extraordinary real stories. Catch Me If You Can is lighter in tone but shares Forrest Gump''s biographical sweep.', null); # Catch Me If You Can -> Forrest Gump +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (94741, 165961, 9, 'orimor25', 'Duel announced Spielberg as a suspense master and Jaws confirmed it. Both use a barely-seen antagonist to build relentless tension.', null); # Duel -> Jaws +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (359297, 10830, 7, 'orimor25', 'Both alien invasion films that prioritize terror over spectacle. War of the Worlds uses the same visceral approach Alien did but in broad daylight.', null); # War of the Worlds -> Alien + +-- Fincher directed pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 291698, 10, 'orimor25', 'Fight Club and Se7en are both dark Fincher films that end with a gut-punch twist. Same director, same tonal darkness, essential pairing.', null); # Fight Club -> Se7en +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (123435, 291698, 9, 'orimor25', 'The Game and Se7en are both Fincher films where paranoia drives the plot. If you love one''s atmosphere of dread, the other delivers the same intensity differently.', null); # The Game -> Se7en +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (247579, 123435, 7, 'orimor25', 'Both Fincher thrillers built around confined psychological tension. Panic Room is smaller scale but shares The Game''s claustrophobic suspense.', null); # Panic Room -> The Game + +-- LOTR trilogy pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194497, 194502, 10, 'orimor25', 'Fellowship and Two Towers are parts one and two of a single story. You cannot stop after the first and not immediately want the second.', null); # Fellowship -> Two Towers +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194502, 194500, 10, 'orimor25', 'Two Towers builds the tension that Return of the King resolves. The trilogy is one film split into three and each part depends on the others.', null); # Two Towers -> Return of the King +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194500, 194497, 10, 'orimor25', 'After the epic conclusion of Return of the King, going back to the quiet beginning of Fellowship feels like a completely different experience.', null); # Return of the King -> Fellowship + +-- Star Wars pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313479, 10, 'orimor25', 'Empire Strikes Back ends on a cliffhanger that Return of the Jedi resolves. You cannot watch one without needing the other immediately.', null); # Empire -> Jedi +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313477, 313478, 7, 'orimor25', 'Revenge of the Sith is the prequel that connects directly to Empire. Seeing the fall of Anakin makes the Vader reveal in Empire hit differently.', null); # Revenge of the Sith -> Empire + +-- Bond franchise pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 120574, 10, 'orimor25', 'Goldfinger and From Russia with Love are the two best Connery Bond films. Peak 1960s espionage, both essential for any Bond fan.', null); # Goldfinger -> From Russia with Love +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 192702, 9, 'orimor25', 'GoldenEye and The Living Daylights both reinvented Bond for their respective eras. Different actors but the same ambition to take the character seriously.', null); # GoldenEye -> Living Daylights +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120574, 92573, 9, 'orimor25', 'From Russia with Love and Dr. No are the first two Bond films and the two most grounded in actual espionage rather than spectacle.', null); # From Russia with Love -> Dr. No +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 30959, 8, 'orimor25', 'Both reinvented a franchise hero for a grittier, more realistic era. GoldenEye did it for Bond, Batman Begins did it for Batman. Same creative instinct.', null); # GoldenEye -> Batman Begins + +-- Rocky franchise pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280281, 9, 'orimor25', 'Rocky and Rocky II are essentially one story split across two films. The rematch ending only works because you already invested in the first.', null); # Rocky -> Rocky II +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 129185, 8, 'orimor25', 'Both underdog stories about warriors fighting for dignity in the arena. Rocky in boxing, Gladiator in the Colosseum, both earn their endings emotionally.', null); # Rocky -> Gladiator + +-- Batman pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 30955, 8, 'orimor25', 'Batman Begins and Batman 1989 are the two best live-action Batman origin stories. Different tones but both take the character and Gotham seriously.', null); # Batman Begins -> Batman 1989 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30955, 30967, 9, 'orimor25', 'Batman and Batman Returns are Burton''s complete vision of Gotham. Returns goes darker and weirder and if you loved the first, the second is essential.', null); # Batman -> Batman Returns +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30976, 30959, 8, 'orimor25', 'Mask of the Phantasm and Batman Begins both explore Bruce Wayne''s origin with real psychological depth. One animated, one live action, both excellent.', null); # Phantasm -> Begins + +-- Harry Potter pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139655, 139652, 9, 'orimor25', 'Prisoner of Azkaban and Goblet of Fire are when the series matured. Both have genuine stakes and both are directed with more ambition than the first two entries.', null); # Azkaban -> Goblet +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139657, 139650, 8, 'orimor25', 'Sorcerer''s Stone and Chamber of Secrets are Columbus''s two entries. If you enjoyed the first''s faithful adaptation, the second continues in exactly the same tone.', null); # Sorcerer's Stone -> Chamber of Secrets + +-- Alien franchise pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10830, 10920, 10, 'orimor25', 'Alien and Aliens are the perfect genre switch. Scott made a horror film, Cameron made an action film, both are masterpieces in their own right.', null); # Alien -> Aliens + +-- Thematic pairs: crime/thriller +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 117874, 8, 'orimor25', 'Both are defining 1990s American films about extraordinary journeys through adversity. Both carried by narration and both leave you emotionally wrung out.', null); # Shawshank -> Forrest Gump +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 112290, 9, 'orimor25', 'Both redefined their decade cinematically. Pulp Fiction broke narrative convention, Fight Club broke the fourth wall. Both are films you discuss for years after.', null); # Pulp Fiction -> Fight Club +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 54209, 7, 'orimor25', 'Both De Niro crime films from the early 1990s. Goodfellas shows the seduction of the mob, Cape Fear shows its terrifying other side.', null); # Goodfellas -> Cape Fear +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (306032, 267038, 8, 'orimor25', 'Both are multi-threaded crime films with sharp dialogue and overlapping plotlines that reward careful attention. Snatch is the British Pulp Fiction.', null); # Snatch -> Pulp Fiction +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 56871, 8, 'orimor25', 'Both are slick, entertaining heist/con films with A-list ensembles. The same Spielberg lightness and the same pleasure of watching smart people work.', null); # Ocean's Eleven -> Catch Me If You Can +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (129185, 46169, 8, 'orimor25', 'Both are epic historical action films about warriors fighting for freedom. Gladiator in Rome, Braveheart in Scotland, both visceral and emotionally earned.', null); # Gladiator -> Braveheart + +-- Thematic pairs: sci-fi +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (214755, 210511, 8, 'orimor25', 'Both are intelligent sci-fi films that use their premise to ask genuine philosophical questions rather than just deliver action sequences.', null); # Minority Report -> Memento +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256839, 10830, 7, 'orimor25', 'Both are survival horror in space with alien creatures. Pitch Black is smaller scale but shares Alien''s emphasis on atmosphere and character over spectacle.', null); # Pitch Black -> Alien +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (61751, 359297, 7, 'orimor25', 'Both are bleaker, more grounded sci-fi films about civilisation under threat. Children of Men and War of the Worlds both treat catastrophe as a lived experience.', null); # Children of Men -> War of the Worlds + +-- Thematic pairs: adventure/fantasy +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194497, 218219, 8, 'orimor25', 'Both are epic fantasy journeys through richly built worlds. Fellowship and Mononoke are the Western and Eastern peaks of cinematic worldbuilding.', null); # Fellowship -> Mononoke +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131885, 271095, 8, 'orimor25', 'Both are 1980s adventure films driven by treasure hunts and ensemble chemistry. Goonies is Raiders for kids and proud of it.', null); # Goonies -> Raiders +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 271095, 7, 'orimor25', 'Both are swashbuckling adventure films with charismatic leads. Pirates of the Caribbean channels the same spirit as Raiders in a different setting.', null); # Pirates -> Raiders +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (319602, 313478, 7, 'orimor25', 'Both are late-1970s/early-1980s space hero films that defined a generation. Superman and Empire Strikes Back are the twin pillars of the genre.', null); # Superman -> Empire + +-- Burton/Depp pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 304862, 8, 'orimor25', 'Both Burton-Depp collaborations where Depp plays a misunderstood outsider. Edward Scissorhands in suburbia, Ichabod Crane in rural New York.', null); # Edward Scissorhands -> Sleepy Hollow +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97360, 97727, 8, 'orimor25', 'Both Burton-Depp films about eccentric characters who do not fit in. Ed Wood is a comedy, Scissorhands is a fairy tale, both are about belonging.', null); # Ed Wood -> Edward Scissorhands +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (70959, 59578, 7, 'orimor25', 'Both Burton films with elaborate fantasy production design. Corpse Bride is stop-motion, Charlie is live action, but the visual imagination is the same.', null); # Corpse Bride -> Charlie + +-- Animation pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 190869, 8, 'orimor25', 'Both animated films that deal with surprisingly mature emotions underneath colourful surfaces. Toy Story tackles jealousy, Lilo and Stitch tackles family loss.', null); # Toy Story -> Lilo & Stitch +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (218219, 174953, 10, 'orimor25', 'Both Miyazaki films about the conflict between nature and civilisation. Mononoke and Nausicaa share a moral complexity rare in animation.', null); # Mononoke -> Nausicaa +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (300229, 337166, 7, 'orimor25', 'Both animated films that redefined what the genre could do for their respective studios. Shrek for DreamWorks, Toy Story for Pixar.', null); # Shrek -> Toy Story + +-- De Niro pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (330670, 54209, 8, 'orimor25', 'Both feature De Niro as a terrifyingly abusive authority figure. This Boy''s Life as a stepfather, Cape Fear as a stalker, equally uncomfortable to watch.', null); # This Boy's Life -> Cape Fear + +-- DiCaprio pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 25192, 8, 'orimor25', 'Both DiCaprio-led biographical films directed by major filmmakers. Catch Me If You Can with Spielberg, Aviator with Scorsese. Both portray obsessive real figures.', null); # Catch Me If You Can -> Aviator +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30686, 330670, 8, 'orimor25', 'Both films starring a young DiCaprio in intense dramatic roles before he became a leading man. Basketball Diaries and This Boy''s Life show his raw early talent.', null); # Basketball Diaries -> This Boy's Life + +-- Depp non-Burton pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 113506, 6, 'orimor25', 'Both Johnny Depp performances but in completely different modes. Captain Jack is flamboyant comedy, J.M. Barrie is restrained drama. Depp''s range on display.', null); # Pirates -> Finding Neverland +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (41518, 30686, 7, 'orimor25', 'Both films about young men pulled into drug culture and paying the price. Blow and Basketball Diaries share a rise-and-fall structure and refuse to romanticise the lifestyle.', null); # Blow -> Basketball Diaries + +-- Lethal Weapon franchise +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188507, 188509, 9, 'orimor25', 'Lethal Weapon and Lethal Weapon 2 are the two best entries in the franchise. The addition of Pesci in the sequel adds a comic energy the first film did not need but the second benefits from.', null); # LW -> LW2 + +-- Mission Impossible pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215876, 215880, 8, 'orimor25', 'Mission Impossible and MI3 are the two best entries in the franchise. De Palma started strong and Abrams brought the series back to that level after the Woo detour.', null); # MI -> MI3 + +-- Superhero pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311038, 142491, 7, 'orimor25', 'Both are superhero films from the mid-2000s that prioritize character over spectacle. Spider-Man 2 and Hellboy both have villains with real emotional depth.', null); # Spider-Man 2 -> Hellboy +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (319602, 319613, 9, 'orimor25', 'Superman and Superman II are the definitive superhero film pairing. The first builds the myth, the second tests it with real villainy.', null); # Superman -> Superman II +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (142491, 142492, 9, 'orimor25', 'Hellboy and Hellboy 2 are Del Toro expanding his own creation. The sequel goes further into fantasy and the Golden Army is a stronger visual achievement.', null); # Hellboy -> Hellboy 2 + +-- Spy Kids franchise +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312150, 210739, 7, 'orimor25', 'Both are family-friendly spy comedies with inventive gadgets and creature designs. Spy Kids is MIB for younger audiences, same playful energy.', null); # Spy Kids -> MIB + +-- Horror pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (240327, 259826, 8, 'orimor25', 'Both are 1970s/80s supernatural horror films that build dread through a family under threat. The Omen uses biblical fear, Poltergeist uses suburban fear.', null); # Omen -> Poltergeist + +-- Comedy pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291495, 208245, 7, 'orimor25', 'Both are comedies that rely entirely on the charisma of a single lead. Bill Murray carries Scrooged, Mel Gibson carries Maverick, both are effortless fun.', null); # Scrooged -> Maverick +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (644, 66194, 8, 'orimor25', 'Both are 1990s high school comedies based on classic literature. 10 Things from Shakespeare, Clueless from Austen, both smarter than they need to be.', null); # 10 Things -> Clueless + +-- Romance pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (263360, 151616, 7, 'orimor25', 'Both are light romantic comedies with attractive leads and zero pretensions. Pretty Woman and How to Lose a Guy are comfort viewing in the same category.', null); # Pretty Woman -> How to Lose a Guy +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (333856, 263360, 7, 'orimor25', 'Both are crowd-pleasing romance blockbusters from the 1990s. Titanic and Pretty Woman are the decade''s two most iconic love stories despite very different stakes.', null); # Titanic -> Pretty Woman + +-- War film pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46169, 185628, 7, 'orimor25', 'Both are epic historical films about warriors fighting with honour against overwhelming odds. Braveheart in Scotland, Last Samurai in Japan.', null); # Braveheart -> Last Samurai + +-- Miscellaneous strong pairs +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 280270, 8, 'orimor25', 'Both are films about underdogs who refuse to give up when everything is stacked against them. Shawshank and Rocky are the two greatest underdog stories in cinema.', null); # Shawshank -> Rocky +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (67388, 270971, 7, 'orimor25', 'Both Scorsese films about competitive masculinity. Color of Money through pool, Raging Bull through boxing. Same director exploring the same obsessive drive.', null); # Color of Money -> Raging Bull +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (253010, 318388, 7, 'orimor25', 'Both are road/chase films set in Texas with morally complex protagonists. A Perfect World and Sugarland Express share Spielberg/Eastwood''s interest in fugitives with humanity.', null); # Perfect World -> Sugarland Express +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (350189, 218219, 7, 'orimor25', 'Both are Japanese animated films with gothic/mythological settings and morally complex characters. Vampire Hunter D and Mononoke are the darker side of anime storytelling.', null); # Vampire Hunter D -> Mononoke +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (33492, 62460, 7, 'orimor25', 'Both are European films centred on food and romance. Bella Martha is a German chef falling in love, Chocolat is a French chocolatier doing the same.', null); # Bella Martha -> Chocolat +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (220276, 333856, 7, 'orimor25', 'Both are visually spectacular love stories that prioritise emotion over realism. Moulin Rouge and Titanic are the two most maximalist romances of their era.', null); # Moulin Rouge -> Titanic +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (158999, 359297, 6, 'orimor25', 'Both are alien invasion blockbusters but Independence Day plays it for spectacle while War of the Worlds goes for genuine fear. Same genre, different goals.', null); # Independence Day -> War of the Worlds +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313160, 13547, 8, 'orimor25', 'Both are documentary looks at legendary directors in their earliest stages. Kubrick: A Life in Pictures and Amblin'' show genius before the world noticed.', null); # Kubrick doc -> Amblin' +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (185704, 181766, 7, 'orimor25', 'Both are Scorsese films about spiritual belief and its costs. Last Temptation explores Christianity, Kundun explores Buddhism. Same reverence, different traditions.', null); # Last Temptation -> Kundun +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (230947, 7842, 8, 'orimor25', 'Both are Scorsese projects set in New York. New York Stories is an anthology, After Hours is a single night, both capture the city''s chaotic energy.', null); # New York Stories -> After Hours +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (109421, 370017, 7, 'orimor25', 'Both are early 2000s action films built around fast vehicles and big stunts with no pretensions about what they are. Same target audience, same energy.', null); # Fast and Furious -> XXX + +-- NOT GOOD YET REASONABLE RECOMMENDATIONS +-- Bad sequels vs originals +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 30952, 2, 'orimor25', 'Both are Batman films but the comparison ends there. Begins is grounded realism, Batman and Robin is neon camp. Same character, opposite quality.', null); # Batman Begins -> Batman & Robin +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30955, 30952, 2, 'orimor25', 'Burton''s Batman was dark and operatic. Batman and Robin is garish and embarrassing. The franchise fell off a cliff between these two.', null); # Batman 1989 -> Batman & Robin +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10830, 10945, 3, 'orimor25', 'Both are Alien franchise films but Alien 3 destroyed everything the first two built. Same universe, completely different quality and care.', null); # Alien -> Alien 3 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10920, 10945, 3, 'orimor25', 'Aliens is one of the best sequels ever made. Alien 3 killed off the surviving characters in the opening credits. Same franchise, devastating quality drop.', null); # Aliens -> Alien 3 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311037, 311040, 4, 'orimor25', 'Spider-Man launched a franchise. Spider-Man 3 buried it under too many villains and not enough focus. Same director with diminishing returns.', null); # Spider-Man -> Spider-Man 3 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311038, 311040, 3, 'orimor25', 'Spider-Man 2 elevated the genre. Spider-Man 3 crammed in Venom, Sandman, and Harry at once and gave none of them the space they needed.', null); # Spider-Man 2 -> Spider-Man 3 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280305, 3, 'orimor25', 'Rocky is a masterpiece about dignity. Rocky V took the same character back to the streets and wasted the opportunity with a weak new rival.', null); # Rocky -> Rocky V +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280306, 2, 'orimor25', 'Rocky is one of the greatest sports films ever made. Rocky VI is a mislabelled entry that should not exist in the same franchise.', null); # Rocky -> Rocky VI +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313474, 3, 'orimor25', 'Empire is the peak of Star Wars. Phantom Menace is the most disappointing entry. Same universe but the prequel never captures the magic of the original.', null); # Empire -> Phantom Menace +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313476, 3, 'orimor25', 'Empire is mythological storytelling at its best. Attack of the Clones is a romance on Naboo that never earns the emotional weight it aims for.', null); # Empire -> Attack of the Clones +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 159167, 3, 'orimor25', 'Raiders defined adventure cinema. Indiana Jones 4 put him in a fridge and introduced aliens. Same character, completely different quality.', null); # Raiders -> Indy 4 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 159167, 3, 'orimor25', 'Last Crusade closed the trilogy perfectly. Indiana Jones 4 reopened it with a premise that does not fit the world the original trilogy built.', null); # Last Crusade -> Indy 4 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 86263, 2, 'orimor25', 'GoldenEye reinvented Bond with intelligence. Die Another Day undid all of it with an invisible car and an ice palace. Same actor, opposite trajectories.', null); # GoldenEye -> Die Another Day +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120574, 218808, 2, 'orimor25', 'From Russia with Love is grounded espionage. Moonraker sends Bond to space. Same franchise, completely different relationship with reality.', null); # From Russia with Love -> Moonraker +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 85871, 4, 'orimor25', 'Goldfinger is peak Connery Bond. Diamonds Are Forever is visibly tired Connery going through the motions. Same actor, same character, different levels of engagement.', null); # Goldfinger -> Diamonds Are Forever +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188507, 188510, 4, 'orimor25', 'Lethal Weapon established the buddy cop genre. Lethal Weapon 3 settled into formula and replaced edge with toilet humour. The chemistry survives but the writing does not.', null); # LW -> LW3 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188507, 188511, 3, 'orimor25', 'Lethal Weapon is a sharp action film. Lethal Weapon 4 is an overstuffed franchise entry that wastes Jet Li and has run completely out of ideas.', null); # LW -> LW4 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 238073, 4, 'orimor25', 'Ocean''s Eleven is an elegant heist film. Ocean''s Twelve is convoluted for the sake of it. Same cast, much less clarity in the story.', null); # Ocean's 11 -> Ocean's 12 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 256631, 4, 'orimor25', 'Curse of the Black Pearl is a perfectly self-contained adventure. Pirates 2 extends the story but spins its wheels badly in the middle third.', null); # Pirates 1 -> Pirates 2 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215876, 215879, 3, 'orimor25', 'Mission Impossible is a smart thriller. MI2 is a John Woo action film with no brain underneath the stunts. Same franchise, completely different ambitions.', null); # MI -> MI2 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312150, 312152, 3, 'orimor25', 'Spy Kids is inventive family filmmaking. Spy Kids 3D abandoned story for a gimmick that overwhelmed everything else. The franchise ran out of ideas fast.', null); # Spy Kids -> Spy Kids 3D +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312150, 312151, 4, 'orimor25', 'Spy Kids 1 had tight charm. Spy Kids 2 went bigger but lost the focus that made the original work. The island creatures are imaginative but the plot is not.', null); # Spy Kids -> Spy Kids 2 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (300229, 300230, 5, 'orimor25', 'Shrek is iconic and original. Shrek 2 is entertaining but slightly less original. If you loved the first you will enjoy the second but not as much.', null); # Shrek -> Shrek 2 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139655, 139650, 4, 'orimor25', 'Prisoner of Azkaban is the creative peak of the HP series. Chamber of Secrets is the most formulaic entry. Both set in Hogwarts but the directorial vision is worlds apart.', null); # Azkaban -> Chamber of Secrets +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280281, 280284, 5, 'orimor25', 'Rocky II is grounded drama. Rocky IV is Cold War propaganda with a training montage. Same character, completely different tone and ambition.', null); # Rocky II -> Rocky IV +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280284, 280282, 5, 'orimor25', 'Rocky IV and Rocky III are both the more commercial, less serious entries. Both work as entertainment but neither reaches the emotional depth of the first two.', null); # Rocky IV -> Rocky III + +-- Same actor, wildly different quality +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (326155, 47130, 4, 'orimor25', 'Both are films about New York night workers losing their grip on sanity. Taxi Driver is De Niro at his peak, Bringing Out the Dead is Cage in a more uneven film.', null); # Taxi Driver -> Bringing Out the Dead +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 230963, 4, 'orimor25', 'Both Scorsese-De Niro collaborations but Goodfellas is a masterpiece and New York, New York is an uneven musical experiment. Same partnership, different results.', null); # Goodfellas -> New York, New York +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (129185, 340652, 3, 'orimor25', 'Both are ancient world epics with large-scale battles. Gladiator finds its emotional core, Troy loses its characters in spectacle. Same genre, different depth.', null); # Gladiator -> Troy +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 200864, 3, 'orimor25', 'Both are light entertainment with charming leads but Catch Me If You Can has Spielberg''s craft behind it. Maid in Manhattan is a thin template in comparison.', null); # Catch Me If You Can -> Maid in Manhattan +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 292671, 3, 'orimor25', 'Both feature protagonists dealing with alternate versions of themselves. Fight Club executes the concept brilliantly, Secret Window compresses it too aggressively.', null); # Fight Club -> Secret Window +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 59578, 5, 'orimor25', 'Both Burton-Depp films about eccentric outsiders. Scissorhands found the perfect emotional balance, Chocolate Factory has the style but not quite the heart.', null); # Scissorhands -> Charlie +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 118367, 4, 'orimor25', 'Both are Tarantino-connected anthology films. Pulp Fiction perfected the format, Four Rooms is uneven with only the Tarantino and Rodriguez segments working.', null); # Pulp Fiction -> Four Rooms +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (263360, 283410, 3, 'orimor25', 'Roberts and Gere reunited but Runaway Bride never recaptures Pretty Woman''s chemistry. Same stars, same genre, much less magic the second time.', null); # Pretty Woman -> Runaway Bride +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (14132, 14157, 3, 'orimor25', 'Both American Pie sequels reuniting the original cast. Pie 2 was formulaic, American Reunion was nostalgia without substance. Diminishing returns with each entry.', null); # American Pie 2 -> American Reunion +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46878, 283410, 4, 'orimor25', 'Both are romantic comedy sequels that fail to recapture the original''s charm. Bridget Jones 2 and Runaway Bride both settle into predictable formula.', null); # Bridget Jones 2 -> Runaway Bride + +-- Surface similarity, different tone/quality +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290070, 100130, 4, 'orimor25', 'Both are Spielberg WWII films but Schindler''s List is a masterpiece and Empire of the Sun is a more patient, less emotionally direct film. Same era, different impact.', null); # Schindler's List -> Empire of the Sun +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 350424, 3, 'orimor25', 'Both are 1990s/2000s films that play with reality and identity. Pulp Fiction does it through structure, Vanilla Sky does it through dream logic. One succeeds far more than the other.', null); # Pulp Fiction -> Vanilla Sky +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (165961, 1390, 2, 'orimor25', 'Both are early Spielberg blockbusters but Jaws is a masterclass in suspense and 1941 is an exhausting comedy that sacrifices story for noise.', null); # Jaws -> 1941 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 21213, 4, 'orimor25', 'Both are Spielberg sci-fi films about a being trying to find its way home. E.T. achieves it with economy, AI meanders through a bloated second act to get there.', null); # E.T. -> AI +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 292671, 3, 'orimor25', 'Both are psychological thrillers with unreliable protagonists. Memento executes the concept brilliantly while Secret Window rushes through it without enough depth.', null); # Memento -> Secret Window +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 233058, 4, 'orimor25', 'Both are dark thrillers about obsession and hidden evil. Se7en is relentlessly intense, Ninth Gate is atmospheric but lacks the same urgency.', null); # Se7en -> Ninth Gate +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (306032, 178994, 3, 'orimor25', 'Both are ensemble crime films with overlapping storylines. Snatch does it with wit and precision, Knockaround Guys has the cast but not the script.', null); # Snatch -> Knockaround Guys +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 30965, 3, 'orimor25', 'Both are Batman films but Begins redefined the character while Forever never found its tone between dark and campy. Same Gotham, different levels of commitment.', null); # Batman Begins -> Batman Forever +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 340652, 3, 'orimor25', 'Both are epic war films with massive battle sequences. Saving Private Ryan finds humanity in chaos, Troy gets lost in spectacle without enough characters to anchor it.', null); # Saving Private Ryan -> Troy +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (129185, 1121, 3, 'orimor25', 'Both are Ridley Scott historical epics. Gladiator found its emotional core, 1492 is ambitious but slow and never connects on the same human level.', null); # Gladiator -> 1492 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (151616, 200864, 4, 'orimor25', 'Both are early 2000s romantic comedies with charming leads. How to Lose a Guy has a clever premise, Maid in Manhattan has a thinner one in the same template.', null); # How to Lose a Guy -> Maid in Manhattan +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (644, 1038, 4, 'orimor25', 'Both are fun, light films aimed at a similar audience. 10 Things has genuine wit from its Shakespeare source, 13 Going on 30 is harmless but less sharp.', null); # 10 Things -> 13 Going On 30 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (66194, 264157, 3, 'orimor25', 'Both are coming-of-age comedies but Clueless is a sharp satire of high school culture. Princess Diaries 2 falls back on the same fish-out-of-water formula without adding anything.', null); # Clueless -> Princess Diaries 2 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (350424, 69812, 4, 'orimor25', 'Both are conspiracy-tinged thrillers starring major leads. Vanilla Sky has ambition but uneven execution, Conspiracy Theory has Gibson and Roberts in a premise that deflates at the end.', null); # Vanilla Sky -> Conspiracy Theory +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256839, 370017, 4, 'orimor25', 'Both are Vin Diesel action vehicles. Pitch Black uses him in a smart sci-fi setting, XXX uses him in a disposable action template. Same star, different ambition.', null); # Pitch Black -> XXX +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56304, 8183, 4, 'orimor25', 'Both Scorsese period films but Casino is propulsive and electric while Age of Innocence is restrained and meditative. Fans of one may find the other too different in pace.', null); # Casino -> Age of Innocence +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 270628, 2, 'orimor25', 'Both are films about hope under terrible circumstances. Shawshank earns its emotion honestly, Radio Flyer handles a painful premise with too much sentimentality.', null); # Shawshank -> Radio Flyer +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (192702, 189403, 5, 'orimor25', 'Both are Timothy Dalton Bond entries. Living Daylights reinvented the character, Licence to Kill pushed him into generic 1980s action territory. Same actor, different success.', null); # Living Daylights -> Licence to Kill +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335336, 368418, 5, 'orimor25', 'Both are middle-era Brosnan Bond films. Tomorrow Never Dies is slick but hollow, World Is Not Enough wastes Marceau. Both are watchable and forgettable.', null); # Tomorrow Never Dies -> TWINE +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (192514, 354178, 4, 'orimor25', 'Both are Roger Moore Bond films. Live and Let Die has Caribbean charm, View to a Kill wastes Walken on thin material. Same era, declining quality.', null); # Live and Let Die -> View to a Kill +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (332065, 372233, 5, 'orimor25', 'Both are mid-1960s Connery Bond spectacles. Thunderball drags underwater, You Only Live Twice prioritises sets over story. Neither reaches the level of Goldfinger.', null); # Thunderball -> You Only Live Twice +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (117314, 203649, 5, 'orimor25', 'Both are Roger Moore Bond entries with scenic locations and competent but unmemorable villains. Neither rises above the middle tier of the franchise.', null); # For Your Eyes Only -> Man with Golden Gun +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (218808, 86263, 5, 'orimor25', 'Both are Bond films that abandoned reality entirely. Moonraker went to space, Die Another Day went invisible. Neither works as a thriller because neither is grounded.', null); # Moonraker -> Die Another Day +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (164572, 120506, 4, 'orimor25', 'Both are crime thrillers set in gritty period atmospheres. Jackie Brown is Tarantino at his most character driven, From Hell substitutes atmosphere for depth.', null); # Jackie Brown -> From Hell +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (113506, 34077, 4, 'orimor25', 'Both are biographical dramas with Depp/Blanchett about creative figures. Finding Neverland earns its sentiment, Benjamin Button feels more like a technical exercise than a story.', null); # Finding Neverland -> Benjamin Button +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (190869, 271344, 3, 'orimor25', 'Both are films about unexpected family guardianship. Lilo and Stitch treats it with real emotional honesty, Raising Helen turns it into a formulaic comedy.', null); # Lilo & Stitch -> Raising Helen +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (304862, 120506, 5, 'orimor25', 'Both are dark, fog-drenched period horror films. Sleepy Hollow has Burton''s visual magic, From Hell has atmosphere but lacks the same creative personality.', null); # Sleepy Hollow -> From Hell +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30951, 30962, 5, 'orimor25', 'Both are animated Batman spinoff films. SubZero gives Fries nuanced writing, Batman Beyond is a different setting entirely. Related but serving different audiences.', null); # SubZero -> Batman Beyond +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (149287, 259826, 4, 'orimor25', 'Both are Spielberg-produced family films with supernatural elements. Hook aims for childhood wonder, Poltergeist aims for childhood terror. Same producer, opposite intentions.', null); # Hook -> Poltergeist +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (74259, 105851, 2, 'orimor25', 'Both are campy comedies that lean into genre pastiche. Cry-Baby does it with John Waters'' precision, Exit to Eden squanders every opportunity its premise creates.', null); # Cry-Baby -> Exit to Eden +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (34104, 245699, 4, 'orimor25', 'Both are romantic comedies about unconventional relationships. Benny and Joon treats its characters with genuine care, Overboard relies on a premise with dated ethics.', null); # Benny & Joon -> Overboard +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (200521, 21213, 4, 'orimor25', 'Both are ambitious three-hour films with sprawling emotional scope. Magnolia earns its bold choices, AI loses focus in its bloated second act.', null); # Magnolia -> AI +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (231917, 308057, 5, 'orimor25', 'Both are early Spielberg TV projects. Night Gallery shows his instinct for dread, Something Evil has atmosphere but less directorial personality.', null); # Night Gallery -> Something Evil +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (41518, 258948, 3, 'orimor25', 'Both are early 1990s films about characters drawn into dangerous lifestyles. Blow has period detail and Depp''s restraint, Poison Ivy has a thin script held together by casting alone.', null); # Blow -> Poison Ivy +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (257744, 31715, 4, 'orimor25', 'Both are ensemble dramas about relationships with emotional depth. Playing by Heart has genuine warmth across its ensemble, Beaches is aimed narrower and more sentimental.', null); # Playing by Heart -> Beaches +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (308025, 69812, 4, 'orimor25', 'Both are thrillers involving unlikely romantic tensions under dangerous circumstances. Someone to Watch Over Me commits to its premise, Conspiracy Theory deflates at the resolution.', null); # Someone to Watch Over Me -> Conspiracy Theory +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (20253, 350424, 4, 'orimor25', 'Both are surrealist films about characters drifting between dreams and reality. Arizona Dream does it with Kusturica''s warmth, Vanilla Sky does it with more polish but less soul.', null); # Arizona Dream -> Vanilla Sky +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (235615, 114955, 5, 'orimor25', 'Both are 1980s dramas about young men navigating complicated relationships with older mentors. Nothing in Common has more emotional honesty, Flamingo Kid is lighter and more conventional.', null); # Nothing in Common -> Flamingo Kid + +-- Additional good recommendations +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176712, 164572, 7, 'orimor25', 'Kill Bill Vol 2 and Jackie Brown are both Tarantino films that slow down and let the characters breathe. His most patient work in both cases.', null); # Kill Bill 2 -> Jackie Brown +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159175, 271095, 8, 'orimor25', 'Temple of Doom and Raiders are both Indiana Jones adventures with completely different settings. Temple goes darker and weirder but the adventure energy is the same.', null); # Temple of Doom -> Raiders +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (328272, 117874, 7, 'orimor25', 'Both are Hanks films about isolated men finding warmth in unusual circumstances. The Terminal in an airport, Forrest Gump across American history.', null); # Terminal -> Forrest Gump +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335835, 215876, 7, 'orimor25', 'Both are 1980s/90s action films driven by military spectacle and Tom Cruise''s screen presence. Top Gun in the air, Mission Impossible on the ground.', null); # Top Gun -> MI +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (25192, 123849, 7, 'orimor25', 'Both Scorsese-DiCaprio period epics about obsessive American figures. The Aviator in Hollywood, Gangs of New York in 19th century Manhattan.', null); # Aviator -> Gangs of NY +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56282, 97727, 7, 'orimor25', 'Both are visually distinctive films about outsiders who experience the world differently. Cashback freezes time, Edward Scissorhands reshapes suburbia. Both use visual metaphor as storytelling.', null); # Cashback -> Edward Scissorhands +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (117874, 289109, 8, 'orimor25', 'Both Hanks-led Spielberg films that use American history as a backdrop for deeply personal stories. Forrest Gump spans decades, Ryan focuses on a single mission.', null); # Forrest Gump -> Saving Private Ryan +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 159175, 7, 'orimor25', 'Last Crusade and Temple of Doom are the two sequels to Raiders. Crusade adds Connery, Temple goes darker, both are worth watching for any Indiana Jones fan.', null); # Last Crusade -> Temple of Doom +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 326155, 8, 'orimor25', 'Both are films about alienated men driven to extreme action by modern society. Fight Club uses satire, Taxi Driver uses realism, both are uncomfortable and essential.', null); # Fight Club -> Taxi Driver +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210739, 96593, 7, 'orimor25', 'Both are films about humans forming bonds with alien beings in American settings. Men in Black is comedy, E.T. is drama, but both treat the alien with genuine warmth.', null); # MIB -> E.T. +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 247579, 6, 'orimor25', 'Both Fincher thrillers with dark atmospheres and contained, claustrophobic tension. Se7en is the masterpiece, Panic Room is the smaller scale companion piece.', null); # Se7en -> Panic Room +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (32707, 20253, 6, 'orimor25', 'Both are films about artists and outsiders set against politically charged backdrops. Before Night Falls in Cuba, Arizona Dream in American surrealism. Both star unconventional leads.', null); # Before Night Falls -> Arizona Dream + +-- Additional not-good-yet-reasonable recommendations +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30967, 30965, 3, 'orimor25', 'Batman Returns doubled down on Burton''s gothic vision. Batman Forever tried to lighten the tone and lost the identity in the process. Same franchise, different commitments.', null); # Batman Returns -> Batman Forever +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 350189, 4, 'orimor25', 'Both are action films with strong anime influences and stylized violence. Kill Bill draws from the tradition directly, Vampire Hunter D lives inside it. Same visual DNA, different execution levels.', null); # Kill Bill Vol 1 -> Vampire Hunter D +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (185628, 1121, 3, 'orimor25', 'Both are epic historical films about outsiders arriving in foreign cultures. Last Samurai finds emotional depth, 1492 is ambitious but never connects on the same level.', null); # Last Samurai -> 1492 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 300230, 4, 'orimor25', 'Both are animated films from studios that defined the genre. Toy Story launched Pixar with originality, Shrek 2 is entertaining DreamWorks but less inventive than the first.', null); # Toy Story -> Shrek 2 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313477, 313474, 5, 'orimor25', 'Revenge of the Sith and Phantom Menace are the best and worst of the prequels. Both Lucas directed but separated by a huge gap in emotional weight and story focus.', null); # Revenge of Sith -> Phantom Menace +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280282, 280305, 4, 'orimor25', 'Rocky III and Rocky V are both lesser entries. III has Mr T and entertainment value, V took Rocky back to the streets and wasted the opportunity. Neither reaches the first two.', null); # Rocky III -> Rocky V +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335835, 215879, 3, 'orimor25', 'Both are action spectacles carried by star power and kinetic direction. Top Gun has genuine aerial thrills, MI2 has Woo''s stunts but nothing underneath them.', null); # Top Gun -> MI2 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46169, 340652, 4, 'orimor25', 'Both are ancient/medieval epics with large-scale battle sequences. Braveheart finds its characters in the chaos, Troy lets spectacle overwhelm everything else.', null); # Braveheart -> Troy +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (151616, 46878, 4, 'orimor25', 'Both are romantic comedy sequels/entries with attractive leads and predictable plots. How to Lose a Guy has a cleverer premise, Bridget Jones 2 has settled into formula.', null); # How to Lose a Guy -> Bridget Jones 2 +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (123435, 233058, 4, 'orimor25', 'Both are dark thrillers about protagonists drawn into mysterious conspiracies. The Game maintains its tension perfectly, Ninth Gate builds atmosphere but lacks the same payoff.', null); # The Game -> Ninth Gate +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (100130, 14477, 5, 'orimor25', 'Both are Spielberg historical dramas about injustice. Empire of the Sun follows a child in WWII, Amistad follows a courtroom battle. Same director, different emotional access points.', null); # Empire of the Sun -> Amistad +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159665, 185628, 4, 'orimor25', 'Both are WWII-era films with outsiders embedded in foreign cultures. Inglourious Basterds reinvents history with wit, Last Samurai plays it straight with mixed results.', null); # Inglourious Basterds -> Last Samurai +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280284, 280306, 2, 'orimor25', 'Rocky IV is ridiculous Cold War propaganda but it works emotionally. Rocky VI is a mislabelled entry that no one asked for. The franchise had clearly run its course.', null); # Rocky IV -> Rocky VI +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (174953, 70959, 5, 'orimor25', 'Both are animated films with striking visual identities. Nausicaa has environmental depth and urgency, Corpse Bride has beautiful design but a thinner story underneath.', null); # Nausicaa -> Corpse Bride +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56304, 181766, 3, 'orimor25', 'Both Scorsese films but Casino is propulsive crime filmmaking, Kundun is deeply meditative and slow. Fans of one may not have the patience for the other at all.', null); # Casino -> Kundun +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 74259, 5, 'orimor25', 'Both are quirky films about outsiders in American settings. Edward Scissorhands is a fairy tale, Cry-Baby is a satire. Similar tone but different emotional weight.', null); # Edward Scissorhands -> Cry-Baby +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (319613, 218808, 3, 'orimor25', 'Both are superhero/Bond sequels from the same era with grand-scale villains. Superman II uses them well, Moonraker takes Bond too far from reality to work.', null); # Superman II -> Moonraker +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194500, 313479, 5, 'orimor25', 'Both are epic trilogy conclusions with massive final battles. Return of the King nails every emotional beat, Return of the Jedi is weakened by the Ewoks but has a strong throne room scene.', null); # ROTK -> ROTJ +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (67395, 31715, 4, 'orimor25', 'Both are emotional dramas about female friendships enduring through hardship. Color Purple has depth and literary weight, Beaches is more sentimental and narrower in scope.', null); # Color Purple -> Beaches +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139654, 139653, 5, 'orimor25', 'Both are later HP entries with darker themes. Order of the Phoenix has Umbridge and political weight, Half-Blood Prince has the cave scene but the teen romance is a distraction.', null); # Order Phoenix -> Half-Blood Prince +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (92573, 332065, 5, 'orimor25', 'Both are early Connery Bond films. Dr No is grounded and tight, Thunderball drags between impressive but overlong underwater sequences.', null); # Dr No -> Thunderball +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 308057, 4, 'orimor25', 'Both Spielberg projects involving suburban supernatural threats. E.T. is a masterpiece of childhood wonder, Something Evil is a minor TV film with atmosphere but limited depth.', null); # E.T. -> Something Evil +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 185704, 3, 'orimor25', 'Both are Scorsese films that provoked strong reactions on release. Goodfellas was universally praised, Last Temptation was controversial and far more divisive. Same director at different risk levels.', null); # Goodfellas -> Last Temptation +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 158999, 4, 'orimor25', 'Both are ensemble blockbusters with star-packed casts. Ocean''s Eleven is cool and effortless, Independence Day is loud and absurd. Same scale, very different intelligence.', null); # Ocean's 11 -> Independence Day +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (34104, 62460, 5, 'orimor25', 'Both are gentle romantic films about unconventional people finding connection. Benny and Joon has genuine care for its characters, Chocolat has warmth but never fully commits to its direction.', null); # Benny & Joon -> Chocolat +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (177369, 270971, 7, 'orimor25', 'Both Scorsese-De Niro character studies of men consumed by obsession. King of Comedy is obsessed with fame, Raging Bull is obsessed with winning. Same volcanic intensity.', null); # King of Comedy -> Raging Bull +insert into movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313474, 313476, 5, 'orimor25', 'Phantom Menace and Attack of the Clones are the two weakest prequel entries. Both have memorable action sequences dragged down by dialogue and romance that never work.', null); # Phantom Menace -> Attack of the Clones diff --git a/recommendations_goldstandard/recommendations/movie_pairs_ranking_roni88882-ctrl.sql b/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_roni88882-ctrl.sql similarity index 100% rename from recommendations_goldstandard/recommendations/movie_pairs_ranking_roni88882-ctrl.sql rename to recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_roni88882-ctrl.sql diff --git a/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_talroup.sql b/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_talroup.sql new file mode 100644 index 00000000..16f53bb1 --- /dev/null +++ b/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_talroup.sql @@ -0,0 +1,2206 @@ +USE imdb_ijs; +-- Movie Pairs Ranking +-- GitHub: talroup + +-- GOOD RECOMMENDATIONS +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, -- 10 Things I Hate About You + 66194, -- Clueless + 10, + 'talroup', + 'A fan of 10 Things I Hate About You is very likely to enjoy Clueless, because it keeps the same sharp teen-comedy attitude, style, romantic payoff, and playful comfort.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, -- 10 Things I Hate About You + 151616, -- How to Lose a Guy in 10 Days + 10, + 'talroup', + 'This is a strong match because romantic conflict becomes comedy instead of cruelty, with confident leads and chemistry that makes the bickering fun.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, -- 10 Things I Hate About You + 1038, -- 13 Going On 30 + 9, + 'talroup', + '13 Going On 30 fits the same comfort space: charm, transformation, and a romantic lead who makes the fantasy feel sweet.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, -- 10 Things I Hate About You + 263360, -- Pretty Woman + 9, + 'talroup', + 'Different ages and settings, but both use big romantic gestures and charismatic leads to create a very rewatchable rom-com mood.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, -- 10 Things I Hate About You + 46878, -- Bridget Jones: The Edge of Reason + 8, + 'talroup', + 'Bridget Jones works here because it keeps awkward romance funny and warm, so the embarrassment feels charming rather than mean.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 66194, -- Clueless + 1038, -- 13 Going On 30 + 10, + 'talroup', + 'The match works because both films are colorful, girly, and self-aware stories about becoming a better version of yourself while still having fun.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 66194, -- Clueless + 264157, -- Princess Diaries 2: Royal Engagement, The + 9, + 'talroup', + 'This is a natural pairing: each follows a lovable young woman learning social rules in a glossy, feel-good world full of fashion and romance.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 66194, -- Clueless + 283410, -- Runaway Bride + 8, + 'talroup', + 'Runaway Bride keeps the same light mainstream-comedy comfort, using romance for self-discovery without making the lesson feel heavy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, -- Pretty Woman + 283410, -- Runaway Bride + 10, + 'talroup', + 'The Roberts-Gere chemistry makes both films feel like classic romantic comfort, and both depend on charm more than plot logic.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, -- Pretty Woman + 200864, -- Maid in Manhattan + 10, + 'talroup', + 'Maid in Manhattan is a strong follow-up because it offers another modern Cinderella fantasy where class difference becomes part of the fun rather than painful social drama.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, -- Pretty Woman + 151616, -- How to Lose a Guy in 10 Days + 9, + 'talroup', + 'This pairing works well because the two films share glossy mainstream romance, confident leads, comic misunderstanding, and a satisfying payoff.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, -- Pretty Woman + 62460, -- Chocolat + 8, + 'talroup', + 'Both are romantic fantasies about pleasure and transformation, with a warm setting that makes the story feel inviting.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, -- How to Lose a Guy in 10 Days + 283410, -- Runaway Bride + 9, + 'talroup', + 'Runaway Bride is a great match for me because commitment panic becomes funny, romantic, and easy to revisit rather than stressful.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, -- How to Lose a Guy in 10 Days + 46878, -- Bridget Jones: The Edge of Reason + 9, + 'talroup', + 'Both enjoy messy dating behavior, but keep the heroine lovable enough that the chaos feels funny instead of stressful.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, -- How to Lose a Guy in 10 Days + 220805, -- Mr. and Mrs. Smith + 8, + 'talroup', + 'Mr. and Mrs. Smith works best as a playful couple-driven follow-up, with flirting, competition, and attractive leads making the conflict entertaining.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 1038, -- 13 Going On 30 + 200864, -- Maid in Manhattan + 9, + 'talroup', + 'Both offer very accessible romantic fantasy: big-city glamour, likable heroines, and a comforting belief in happy endings.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 1038, -- 13 Going On 30 + 264157, -- Princess Diaries 2: Royal Engagement, The + 9, + 'talroup', + 'Princess Diaries 2 fits the same youthful, sweet, wish-fulfilling zone, with a heroine learning confidence inside a polished fantasy world.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 200864, -- Maid in Manhattan + 283410, -- Runaway Bride + 9, + 'talroup', + 'Both are gentle star-driven romances where the premise is familiar, but the warmth and casting make it work.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 200864, -- Maid in Manhattan + 46878, -- Bridget Jones: The Edge of Reason + 8, + 'talroup', + 'Bridget Jones fits this recommendation because it also follows a woman navigating love, embarrassment, and self-worth without becoming too heavy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46878, -- Bridget Jones: The Edge of Reason + 257744, -- Playing by Heart + 8, + 'talroup', + 'Both treat romance as imperfect and human, with enough ensemble warmth to make the messiness feel comforting.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46878, -- Bridget Jones: The Edge of Reason + 118980, -- Frankie and Johnny + 8, + 'talroup', + 'Both are grounded romances about imperfect adults trying to be vulnerable, and both keep the emotional tone warm.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 264157, -- Princess Diaries 2: Royal Engagement, The + 190869, -- Lilo & Stitch + 8, + 'talroup', + 'Lilo & Stitch works after Princess Diaries 2 because both are family-friendly comfort films where identity, loyalty, and chosen family matter more than serious conflict.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 264157, -- Princess Diaries 2: Royal Engagement, The + 300230, -- Shrek 2 + 9, + 'talroup', + 'Both sequels use royal-family pressure as a comedy engine while keeping the romance light, colorful, and easy to enjoy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 62460, -- Chocolat + 33492, -- Bella Martha + 10, + 'talroup', + 'Food, routine, and quiet attraction give both films a cozy romantic texture that works especially well for me.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 62460, -- Chocolat + 34104, -- Benny & Joon + 9, + 'talroup', + 'Benny & Joon is a good match because it also turns oddball romance into tenderness, making eccentric characters feel lovable rather than alienating.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 62460, -- Chocolat + 311428, -- Splash + 8, + 'talroup', + 'Both are soft romantic fantasies where the unusual premise is treated with sweetness rather than cynicism.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 33492, -- Bella Martha + 118980, -- Frankie and Johnny + 8, + 'talroup', + 'Both are adult romances about guarded people slowly opening up, with a gentle pace and human warmth.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 33492, -- Bella Martha + 257744, -- Playing by Heart + 8, + 'talroup', + 'Both are relationship-focused films that prefer small emotional details over big dramatic shocks.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 220276, -- Moulin Rouge! + 333856, -- Titanic + 9, + 'talroup', + 'Both are lush tragic romances, but the spectacle supports the love story instead of replacing it.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 220276, -- Moulin Rouge! + 31715, -- Beaches + 8, + 'talroup', + 'Both use music and big feelings to make sadness more emotional than bleak, which is exactly the balance I need.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 220276, -- Moulin Rouge! + 74259, -- Cry-Baby + 8, + 'talroup', + 'Both are stylized musical romances with camp, color, and a playful performance style that makes them memorable.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 34104, -- Benny & Joon + 97727, -- Edward Scissorhands + 9, + 'talroup', + 'Both are gentle outsider romances where innocence and strangeness become touching rather than scary.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 34104, -- Benny & Joon + 113506, -- Finding Neverland + 9, + 'talroup', + 'Both rely on Depp''s soft, eccentric charm and keep sadness balanced with imagination and tenderness.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 34104, -- Benny & Joon + 74259, -- Cry-Baby + 8, + 'talroup', + 'Both use Johnny Depp''s offbeat persona in a playful romantic register rather than a dark thriller one.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 59578, -- Charlie and the Chocolate Factory + 300229, -- Shrek + 9, + 'talroup', + 'Shrek fits this Charlie and the Chocolate Factory recommendation because it is another colorful fantasy comedy that stays weird in a fun, heartfelt way.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 59578, -- Charlie and the Chocolate Factory + 300230, -- Shrek 2 + 8, + 'talroup', + 'Both are bright, joke-filled fantasies that use strange worlds for fun rather than for heaviness.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 59578, -- Charlie and the Chocolate Factory + 149287, -- Hook + 8, + 'talroup', + 'Both are childlike fantasies about returning to imagination, with production design that makes the world feel magical.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 59578, -- Charlie and the Chocolate Factory + 96593, -- E.T. the Extra-Terrestrial + 8, + 'talroup', + 'Both build wonder around a childlike point of view and keep the fantasy gentle enough for an easy rewatch.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 96593, -- E.T. the Extra-Terrestrial + 65811, -- Close Encounters of the Third Kind + 8, + 'talroup', + 'Close Encounters is a good match because it shares Spielberg''s alien wonder and keeps the science fiction humane instead of frightening.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 96593, -- E.T. the Extra-Terrestrial + 149287, -- Hook + 8, + 'talroup', + 'Both have Spielberg''s soft family feeling and turn fantasy into something emotionally warm instead of threatening.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 96593, -- E.T. the Extra-Terrestrial + 190869, -- Lilo & Stitch + 10, + 'talroup', + 'Lilo & Stitch is especially strong here because the alien-friendship story also centers on family, loyalty, and a creature who becomes lovable.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, -- Terminal, The + 56871, -- Catch Me If You Can + 9, + 'talroup', + 'Both make unusual true-ish situations feel light and human, with a playful rhythm rather than a heavy crime mood.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, -- Terminal, The + 311428, -- Splash + 8, + 'talroup', + 'Both let Tom Hanks play kindness and awkwardness in a way that makes an odd premise feel genuinely sweet.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, -- Terminal, The + 12744, -- Always + 6, + 'talroup', + 'Both are gentle, human stories that move slowly but still keep a soft emotional glow.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, -- Titanic + 31715, -- Beaches + 8, + 'talroup', + 'Both are emotional crowd-pleasers where the sadness works because the relationships feel sincere and memorable.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, -- Titanic + 12744, -- Always + 8, + 'talroup', + 'Both combine romance with loss, but they hold onto tenderness instead of becoming purely depressing.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 149287, -- Hook + 113506, -- Finding Neverland + 10, + 'talroup', + 'Both are Peter Pan-adjacent stories about imagination, adulthood, and emotional softness, making them very natural companions.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 149287, -- Hook + 131885, -- Goonies, The + 9, + 'talroup', + 'Both have messy adventure energy, childlike wonder, and enough humor to make danger feel safe.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 149287, -- Hook + 139657, -- Harry Potter and the Sorcerer's Stone + 8, + 'talroup', + 'Both invite the viewer into a magical world with a cozy sense of discovery rather than overwhelming darkness.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131885, -- Goonies, The + 312150, -- Spy Kids + 10, + 'talroup', + 'Both are kid-adventure films where gadgets, teamwork, and silliness matter more than polished seriousness.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131885, -- Goonies, The + 170721, -- Jungle Book 2, The + 6, + 'talroup', + 'Both are simple, upbeat adventures that feel easy and youthful, even if one is louder and one is more musical.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 113506, -- Finding Neverland + 97727, -- Edward Scissorhands + 8, + 'talroup', + 'Both are bittersweet fantasies about fragile outsiders, but each keeps enough tenderness to avoid feeling cold.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 113506, -- Finding Neverland + 12744, -- Always + 8, + 'talroup', + 'Both use grief and imagination gently, creating sentiment without becoming too harsh for me.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, -- Harry Potter and the Sorcerer's Stone + 139650, -- Harry Potter and the Chamber of Secrets + 10, + 'talroup', + 'The first two Harry Potter films share the same cozy Hogwarts foundation, childlike discovery, and accessible mystery tone.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139650, -- Harry Potter and the Chamber of Secrets + 139655, -- Harry Potter and the Prisoner of Azkaban + 9, + 'talroup', + 'The third film gets moodier, but it still grows naturally from the magical comfort and friendship of the second.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139655, -- Harry Potter and the Prisoner of Azkaban + 139652, -- Harry Potter and the Goblet of Fire + 9, + 'talroup', + 'Both keep the school-year structure while adding higher stakes, so the darker turn still feels connected and watchable.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139652, -- Harry Potter and the Goblet of Fire + 139653, -- Harry Potter and the Half-Blood Prince + 8, + 'talroup', + 'Both mix danger with awkward teen romance, which helps the darker plot remain emotionally accessible.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, -- Harry Potter and the Sorcerer's Stone + 194497, -- Lord of the Rings: The Fellowship of the Ring, The + 8, + 'talroup', + 'Both are gateway fantasy adventures that introduce a beloved world, friendships, and a clear sense of wonder.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139655, -- Harry Potter and the Prisoner of Azkaban + 194497, -- Lord of the Rings: The Fellowship of the Ring, The + 8, + 'talroup', + 'Both have fantasy darkness balanced by friendship and visual magic, making the epic tone still approachable.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, -- Pirates of the Caribbean: The Curse of the Black Pearl + 256631, -- Pirates of the Caribbean 2 + 10, + 'talroup', + 'The sequel keeps Jack Sparrow, Will and Elizabeth, and the playful pirate energy that made the first film fun.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, -- Pirates of the Caribbean: The Curse of the Black Pearl + 300229, -- Shrek + 8, + 'talroup', + 'Shrek fits after Pirates because both turn familiar fantasy-adventure worlds into something funny, romantic, and less serious than expected.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, -- Pirates of the Caribbean: The Curse of the Black Pearl + 159172, -- Indiana Jones and the Last Crusade + 8, + 'talroup', + 'Both are adventure films that balance danger with jokes, charm, and a hero who never feels too grim.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, -- Pirates of the Caribbean: The Curse of the Black Pearl + 271095, -- Raiders of the Lost Ark + 8, + 'talroup', + 'Both are classic crowd-pleasing adventures with iconic heroes, set pieces, and a light sense of fun.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256631, -- Pirates of the Caribbean 2 + 300230, -- Shrek 2 + 8, + 'talroup', + 'Both are bigger sequels that keep the comic romance alive while expanding the fantasy world around it.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, -- Ocean's Eleven + 238073, -- Ocean's Twelve + 8, + 'talroup', + 'The sequel is more smug, but it still keeps the stylish ensemble and movie-star ease that make the first enjoyable.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, -- Ocean's Eleven + 56871, -- Catch Me If You Can + 9, + 'talroup', + 'Both make crime feel playful and stylish instead of brutal, with charm doing more work than violence.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, -- Ocean's Eleven + 208245, -- Maverick + 8, + 'talroup', + 'Both are relaxed con-game entertainments where charm, tricks, and banter matter more than real danger.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, -- Ocean's Eleven + 220805, -- Mr. and Mrs. Smith + 8, + 'talroup', + 'Both use glamour, banter, and stars to make crime/action feel sleek and fun rather than emotionally heavy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, -- Men in Black + 312150, -- Spy Kids + 8, + 'talroup', + 'Both turn secret organizations, gadgets, and action into bright mainstream comedy rather than hard sci-fi.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, -- Men in Black + 158999, -- Independence Day + 6, + 'talroup', + 'Both are accessible 1990s alien blockbusters, and both keep the tone broad, funny, and crowd-friendly.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, -- Men in Black + 398232, -- Mork & Mindy + 6, + 'talroup', + 'Both use aliens mainly as a comedy setup, so the weirdness stays playful rather than frightening.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 312150, -- Spy Kids + 312151, -- Spy Kids 2: Island of Lost Dreams + 9, + 'talroup', + 'The sequel keeps the child-led spy fantasy, bright gadgets, and harmless silliness that make the first one work.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 312151, -- Spy Kids 2: Island of Lost Dreams + 312152, -- Spy Kids 3-D: Game Over + 8, + 'talroup', + 'Both are goofy family spy sequels that embrace ridiculousness instead of trying to become serious action films.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, -- Shrek + 300230, -- Shrek 2 + 10, + 'talroup', + 'The second film keeps the fairy-tale jokes and Fiona-Shrek romance while adding even more family comedy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, -- Shrek + 300233, -- Shrek 4-D + 8, + 'talroup', + 'Both use the same fairy-tale parody world and the same quick comic comfort, even if one is much smaller.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300230, -- Shrek 2 + 300233, -- Shrek 4-D + 8, + 'talroup', + 'Both continue the Shrek universe as light comic extensions rather than dramatic reinventions.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337166, -- Toy Story + 190869, -- Lilo & Stitch + 10, + 'talroup', + 'Lilo & Stitch is a natural match for Toy Story because both are animated comfort films about loyalty, friendship, and imperfect little families finding each other.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337166, -- Toy Story + 300229, -- Shrek + 9, + 'talroup', + 'Both are animated films with jokes for adults and a surprisingly sincere emotional center.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337166, -- Toy Story + 131885, -- Goonies, The + 8, + 'talroup', + 'Both focus on group adventure, friendship, and childlike loyalty, with danger kept safely fun.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337166, -- Toy Story + 170721, -- Jungle Book 2, The + 6, + 'talroup', + 'Both are simple, warm family adventures where the emotional stakes stay light and easy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 170721, -- Jungle Book 2, The + 190869, -- Lilo & Stitch + 8, + 'talroup', + 'Both are bright, family-friendly stories with music, movement, and a forgiving emotional tone.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 291495, -- Scrooged + 398232, -- Mork & Mindy + 6, + 'talroup', + 'Both rely on comic weirdness and a big central personality, with enough heart to soften the harsher jokes.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311428, -- Splash + 257744, -- Playing by Heart + 8, + 'talroup', + 'Both treat romance warmly and let charm carry the story more than plot complexity.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311428, -- Splash + 96593, -- E.T. the Extra-Terrestrial + 8, + 'talroup', + 'Both place a gentle non-human visitor inside ordinary life and make the fantasy feel sweet rather than scary.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 31715, -- Beaches + 257744, -- Playing by Heart + 8, + 'talroup', + 'Both are relationship-centered dramas that give emotional moments a warm, human texture.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 74259, -- Cry-Baby + 97727, -- Edward Scissorhands + 8, + 'talroup', + 'Both are stylized outsider romances with Johnny Depp, campy surfaces, and a sincere lonely heart underneath.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 74259, -- Cry-Baby + 59578, -- Charlie and the Chocolate Factory + 7, + 'talroup', + 'Both are colorful Depp vehicles where exaggeration and weirdness are part of the fun.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 97727, -- Edward Scissorhands + 59578, -- Charlie and the Chocolate Factory + 7, + 'talroup', + 'Both are Depp-led fantasies where odd visual worlds still leave room for sweetness and childlike wonder.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 12744, -- Always + 65811, -- Close Encounters of the Third Kind + 7, + 'talroup', + 'Both are Spielberg stories with awe, longing, and a sincere old-fashioned emotional tone.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 10702, -- Alice Doesn't Live Here Anymore + 118980, -- Frankie and Johnny + 8, + 'talroup', + 'Both are grounded adult stories about starting over, loneliness, and finding warmth in ordinary life.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 208245, -- Maverick + 379327, -- Adventures of Robin Hood, The + 7, + 'talroup', + 'Both are old-fashioned adventures where charm and playfulness matter more than grit.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280270, -- Rocky + 280281, -- Rocky II + 8, + 'talroup', + 'The first two Rocky films work as one emotional underdog arc, with character warmth balancing the boxing.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280281, -- Rocky II + 280282, -- Rocky III + 7, + 'talroup', + 'The third film is broader, but it keeps Rocky''s familiar underdog heart and easy sports-movie structure.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 319602, -- Superman + 319613, -- Superman II + 8, + 'talroup', + 'Both keep the superhero story sincere, romantic, and bright rather than cynical or overly grim.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311037, -- Spider-Man + 311038, -- Spider-Man 2 + 10, + 'talroup', + 'Spider-Man 2 deepens the same awkward, romantic, heroic tone that makes the first film so accessible.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30976, -- Batman: Mask of the Phantasm + 381392, -- Batman Beyond + 7, + 'talroup', + 'Both are animated Batman stories with emotional clarity, stylish action, and less exhausting darkness than the grittier films.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 142491, -- Hellboy + 142492, -- Hellboy 2 + 8, + 'talroup', + 'Both make a monster hero feel surprisingly human, and the sequel adds more fantasy color to the same world.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 391006, -- Happy Days + 395271, -- Laverne & Shirley + 9, + 'talroup', + 'Both are nostalgic sitcom comforts with warm characters, simple humor, and a relaxed old-TV feeling.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 390691, -- Growing Pains + 400853, -- Parenthood + 8, + 'talroup', + 'Both are family-centered comfort stories where messiness is treated with humor and affection.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 391006, -- Happy Days + 398232, -- Mork & Mindy + 8, + 'talroup', + 'Both have classic sitcom warmth, big personalities, and a harmless kind of silliness that I genuinely enjoy.', + NULL +); + + +-- NOT GOOD YET REASONABLE RECOMMENDATIONS +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, -- 10 Things I Hate About You + 30686, -- Basketball Diaries, The + 2, + 'talroup', + 'While both are 1990s teen-centered films, it is a bad recommendation since Basketball Diaries turns youth into a bleak addiction spiral instead of playful romance.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, -- 10 Things I Hate About You + 112290, -- Fight Club + 1, + 'talroup', + 'Despite the shared rebellious 1990s attitude, it is a bad recommendation since Fight Club is cynical and aggressive rather than warm or romantic.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, -- 10 Things I Hate About You + 32707, -- Before Night Falls + 3, + 'talroup', + 'Though both value strong outsiders, it is a bad recommendation since Before Night Falls is an emotionally painful biographical drama rather than a comfort watch.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, -- Pretty Woman + 8183, -- Age of Innocence, The + 5, + 'talroup', + 'Though both are class-conscious romances, this is not a good recommendation since Age of Innocence is restrained and emotionally muted instead of sparkling and wish-fulfilling.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, -- Pretty Woman + 69812, -- Conspiracy Theory + 3, + 'talroup', + 'Though Julia Roberts is part of the appeal in both, it is a bad recommendation since the paranoia-thriller mood overwhelms any romantic comfort.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, -- Pretty Woman + 350424, -- Vanilla Sky + 2, + 'talroup', + 'At first glance, the attractive stars and romance make this pair look reasonable, but it is a bad recommendation since Vanilla Sky turns desire into confusion and unease rather than fantasy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, -- How to Lose a Guy in 10 Days + 350424, -- Vanilla Sky + 2, + 'talroup', + 'Though both use romance as a central hook, it is a bad recommendation since Vanilla Sky becomes mind-bending and cold instead of funny and flirtatious.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, -- How to Lose a Guy in 10 Days + 41518, -- Blow + 2, + 'talroup', + 'While both have glossy early-2000s star power, it is a bad recommendation since Blow is a draining crime rise-and-fall story.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 66194, -- Clueless + 30686, -- Basketball Diaries, The + 2, + 'talroup', + 'Though both are 1990s youth films, it is a bad recommendation since Basketball Diaries replaces style and comedy with addiction and despair.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 66194, -- Clueless + 209158, -- Mean Streets + 2, + 'talroup', + 'Though both are urban character films with strong personalities, it is a bad recommendation since Mean Streets is rough crime drama with none of the cozy teen energy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, -- Shrek + 194497, -- Lord of the Rings: The Fellowship of the Ring, The + 5, + 'talroup', + 'Though both are fantasy journeys with creatures and kingdoms, this is not a good recommendation since Fellowship is earnest and epic rather than comic and cozy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, -- Shrek + 304862, -- Sleepy Hollow + 2, + 'talroup', + 'Despite the fairy-tale-like visuals, it is a bad recommendation since Sleepy Hollow is a gothic murder mystery rather than playful fantasy romance.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, -- Shrek + 142491, -- Hellboy + 4, + 'talroup', + 'While both feature an unconventional creature hero, it is a bad recommendation since Hellboy leans into darker monster action instead of fairy-tale comedy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337166, -- Toy Story + 21213, -- Artificial Intelligence: AI + 2, + 'talroup', + 'The pairing makes sense on paper because both involve non-human figures longing for love, but it is a bad recommendation since A.I. is melancholy and unsettling rather than warm and funny.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337166, -- Toy Story + 40199, -- Blade Runner + 2, + 'talroup', + 'Although both can be read as stories about artificial beings, it is a bad recommendation since Blade Runner is lonely, cold, and philosophically heavy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 1038, -- 13 Going On 30 + 7842, -- After Hours + 3, + 'talroup', + 'Though both follow adults through strange urban situations, it is a bad recommendation since After Hours turns the night into anxiety instead of feel-good transformation.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 1038, -- 13 Going On 30 + 247579, -- Panic Room + 2, + 'talroup', + 'Despite the shared confined-pressure setup, it is a bad recommendation since Panic Room is pure stress rather than charm.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 200864, -- Maid in Manhattan + 8183, -- Age of Innocence, The + 5, + 'talroup', + 'Though both deal with status and forbidden attraction, this is not a good recommendation since Age of Innocence is too distant and subdued for what I look for in a romantic comedy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 283410, -- Runaway Bride + 69812, -- Conspiracy Theory + 3, + 'talroup', + 'Though both use Julia Roberts in a romantic orbit, it is a bad recommendation since Conspiracy Theory is suspicious and tense rather than breezy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46878, -- Bridget Jones: The Edge of Reason + 8183, -- Age of Innocence, The + 4, + 'talroup', + 'Though both include social rules around love, it is a bad recommendation since Age of Innocence removes the humor and self-aware messiness that make Bridget work.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 264157, -- Princess Diaries 2: Royal Engagement, The + 340652, -- Troy + 3, + 'talroup', + 'While both include royalty, public duty, and romance, it is a bad recommendation since Troy is a solemn war epic rather than a girly comfort fantasy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 190869, -- Lilo & Stitch + 10830, -- Alien + 1, + 'talroup', + 'Though the alien premise connects them, it is a bad recommendation since Alien turns the visitor idea into horror and confinement.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 190869, -- Lilo & Stitch + 359297, -- War of the Worlds + 2, + 'talroup', + 'At first glance, family and alien contact connect them, but it is a bad recommendation since War of the Worlds is panic-driven instead of affectionate.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300230, -- Shrek 2 + 30952, -- Batman & Robin + 3, + 'talroup', + 'Though both are colorful franchise sequels with broad jokes, it is a bad recommendation since Batman & Robin feels loud and hollow rather than sweet.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 62460, -- Chocolat + 120506, -- From Hell + 2, + 'talroup', + 'Despite Johnny Depp and period European settings, it is a bad recommendation since From Hell is murder-focused and grim instead of cozy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 62460, -- Chocolat + 233058, -- Ninth Gate, The + 2, + 'talroup', + 'Though both use Depp in an old-world atmosphere, it is a bad recommendation since Ninth Gate is occult, cold, and joyless.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 220276, -- Moulin Rouge! + 123849, -- Gangs of New York + 3, + 'talroup', + 'While both are stylized period spectacles, it is a bad recommendation since Gangs of New York is brutal and hostile rather than romantic and musical.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 220276, -- Moulin Rouge! + 185628, -- Last Samurai, The + 5, + 'talroup', + 'Though both are large-scale period films with romance and sacrifice, this is not a good recommendation since Last Samurai is too solemn and battle-driven.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 34104, -- Benny & Joon + 41518, -- Blow + 2, + 'talroup', + 'Despite Johnny Depp''s charisma in both, it is a bad recommendation since Blow uses that charisma inside a draining drug-crime story.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 34104, -- Benny & Joon + 292671, -- Secret Window + 2, + 'talroup', + 'Though both feature Depp as an isolated eccentric, it is a bad recommendation since Secret Window turns eccentricity sour and threatening.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 59578, -- Charlie and the Chocolate Factory + 240327, -- Omen, The + 1, + 'talroup', + 'While both center on a strange childlike world, it is a bad recommendation since The Omen is supernatural horror with no playful comfort.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 59578, -- Charlie and the Chocolate Factory + 259826, -- Poltergeist + 2, + 'talroup', + 'Though both involve children and supernatural spectacle, it is a bad recommendation since Poltergeist is a haunted-house scare experience.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 96593, -- E.T. the Extra-Terrestrial + 10830, -- Alien + 1, + 'talroup', + 'The shared alien label makes this look plausible, but it is a bad recommendation since Alien replaces wonder and friendship with survival horror.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 96593, -- E.T. the Extra-Terrestrial + 359297, -- War of the Worlds + 2, + 'talroup', + 'Despite Spielberg and alien contact, it is a bad recommendation since War of the Worlds is fear and disaster rather than gentle connection.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, -- Terminal, The + 247579, -- Panic Room + 2, + 'talroup', + 'Though both trap characters inside one main location, it is a bad recommendation since Panic Room turns confinement into constant threat.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, -- Terminal, The + 123435, -- Game, The + 3, + 'talroup', + 'Though both follow a man trapped in an absurd situation, it is a bad recommendation since The Game feels manipulative and unpleasant rather than kind.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, -- Titanic + 289109, -- Saving Private Ryan + 1, + 'talroup', + 'Though both are acclaimed 1990s historical epics, it is a bad recommendation since Saving Private Ryan is dominated by combat realism rather than romance.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, -- Titanic + 290070, -- Schindler's List + 1, + 'talroup', + 'Though both are acclaimed historical dramas, it is a bad recommendation since Schindler''s List is important but far too devastating for me to enjoy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, -- Titanic + 46169, -- Braveheart + 3, + 'talroup', + 'Though both mix epic scale, romance, and tragedy, it is a bad recommendation since Braveheart lets battle and brutality overpower the romantic pull.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 149287, -- Hook + 165961, -- Jaws + 3, + 'talroup', + 'Despite the Spielberg adventure connection, it is a bad recommendation since Jaws is built on dread rather than nostalgic softness.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 149287, -- Hook + 94741, -- Duel (1971/I) + 2, + 'talroup', + 'Though both are early Spielberg tension machines, it is a bad recommendation since Duel is all menace and none of Hook''s childlike comfort.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131885, -- Goonies, The + 159175, -- Indiana Jones and the Temple of Doom + 4, + 'talroup', + 'Though both are adventure films with kids and set pieces, this remains a weak recommendation since Temple of Doom is harsher and less safe-feeling.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131885, -- Goonies, The + 73574, -- Critters 3 + 2, + 'talroup', + 'Though both involve young people facing creature chaos, it is a bad recommendation since Critters 3 leans into goofy horror instead of warm adventure.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 113506, -- Finding Neverland + 30686, -- Basketball Diaries, The + 2, + 'talroup', + 'Though both are sensitive dramas with young emotional pain, it is a bad recommendation since Basketball Diaries becomes far too bleak and punishing.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, -- Harry Potter and the Sorcerer's Stone + 240327, -- Omen, The + 1, + 'talroup', + 'At first glance, children and supernatural destiny connect them, but it is a bad recommendation since The Omen is demonic horror rather than magical comfort.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, -- Harry Potter and the Sorcerer's Stone + 313474, -- Star Wars: Episode I - The Phantom Menace + 5, + 'talroup', + 'Though both launch large fantasy franchises with young heroes, this is not a good recommendation since Phantom Menace feels colder and less emotionally cozy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139650, -- Harry Potter and the Chamber of Secrets + 304862, -- Sleepy Hollow + 2, + 'talroup', + 'Though both contain dark mysteries and gothic visuals, it is a bad recommendation since Sleepy Hollow is murder-driven rather than school-adventure comfort.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139652, -- Harry Potter and the Goblet of Fire + 30959, -- Batman Begins + 4, + 'talroup', + 'Though both show a hero entering a darker chapter, it is a bad recommendation since Batman Begins is grittier and less magical-feeling.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139654, -- Harry Potter and the Order of the Phoenix + 61751, -- Children of Men, The + 2, + 'talroup', + 'Though both involve resistance against a bleak system, it is a bad recommendation since Children of Men is much more hopeless and emotionally exhausting.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, -- Pirates of the Caribbean: The Curse of the Black Pearl + 39551, -- Black Hawk Down + 1, + 'talroup', + 'While both include action and large-scale danger, it is a bad recommendation since Black Hawk Down is combat intensity with none of the playful pirate charm.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, -- Pirates of the Caribbean: The Curse of the Black Pearl + 129185, -- Gladiator + 5, + 'talroup', + 'Though both are large-scale adventure films with heroic set pieces, this is not a good recommendation since Gladiator is far more solemn and battle-centered.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, -- Pirates of the Caribbean: The Curse of the Black Pearl + 189403, -- Licence to Kill + 3, + 'talroup', + 'Though both are stylish action adventures, it is a bad recommendation since Licence to Kill is revenge-driven and harsher than the playful pirate tone.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, -- Ocean's Eleven + 56304, -- Casino + 2, + 'talroup', + 'Despite the money, glamour, and crime connection, it is a bad recommendation since Casino is exhausting and brutal rather than breezy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, -- Ocean's Eleven + 131780, -- Goodfellas + 2, + 'talroup', + 'Though both are crime films with style, it is a bad recommendation since Goodfellas is violent gangster immersion rather than sunny ensemble fun.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, -- Ocean's Eleven + 210511, -- Memento + 2, + 'talroup', + 'Although both are clever crime puzzles, it is a bad recommendation since Memento is tense, fragmented, and not emotionally relaxing.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 56871, -- Catch Me If You Can + 25192, -- Aviator, The + 4, + 'talroup', + 'Though both feature DiCaprio in biographical rise-and-fall territory, it is a bad recommendation since The Aviator feels long and dutiful rather than playful.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 56871, -- Catch Me If You Can + 30686, -- Basketball Diaries, The + 2, + 'talroup', + 'Though both center on DiCaprio as a young man in trouble, it is a bad recommendation since Basketball Diaries is bleak instead of charming.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, -- Men in Black + 40199, -- Blade Runner + 2, + 'talroup', + 'While both are science fiction with non-human beings, it is a bad recommendation since Blade Runner is cold, lonely, and philosophical rather than quick and funny.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, -- Men in Black + 256839, -- Pitch Black + 2, + 'talroup', + 'Though both include aliens and action, it is a bad recommendation since Pitch Black is survival tension instead of mainstream comic adventure.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 312150, -- Spy Kids + 215879, -- Mission: Impossible II + 4, + 'talroup', + 'Despite the spies-and-gadgets link, it is a bad recommendation since Mission: Impossible II cares more about glossy action than playful personality.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 312150, -- Spy Kids + 130945, -- GoldenEye + 4, + 'talroup', + 'Though both are spy adventures with gadgets, it is a bad recommendation since GoldenEye is more adult, colder, and less silly.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 291495, -- Scrooged + 54209, -- Cape Fear + 1, + 'talroup', + 'Though both feature characters haunted or punished by past behavior, it is a bad recommendation since Cape Fear is threatening rather than redemptive comedy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311428, -- Splash + 22651, -- Astronaut's Wife, The + 2, + 'talroup', + 'Though both involve marriage touched by the otherworldly, it is a bad recommendation since Astronaut''s Wife turns intimacy into alien paranoia.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311428, -- Splash + 350424, -- Vanilla Sky + 2, + 'talroup', + 'Though both involve impossible romance and fantasy elements, it is a bad recommendation since Vanilla Sky feels cold, confusing, and emotionally unsafe.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 31715, -- Beaches + 67395, -- Color Purple, The + 4, + 'talroup', + 'Though both are emotional female-centered dramas, this remains a weak recommendation since The Color Purple is much heavier than the comfort level here.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 31715, -- Beaches + 14477, -- Amistad + 2, + 'talroup', + 'Though both ask for a serious emotional response, it is a bad recommendation since Amistad is historical legal trauma rather than friendship melodrama.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 97727, -- Edward Scissorhands + 304862, -- Sleepy Hollow + 3, + 'talroup', + 'Even though both are Burton-Depp gothic stories, it is a bad recommendation since Sleepy Hollow moves toward murder mystery instead of tender outsider romance.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 97727, -- Edward Scissorhands + 120506, -- From Hell + 2, + 'talroup', + 'Though both use Depp in a stylized dark world, it is a bad recommendation since From Hell is grim investigation rather than romantic sadness.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 257744, -- Playing by Heart + 267038, -- Pulp Fiction + 2, + 'talroup', + 'Though both are ensemble films with intersecting stories, it is a bad recommendation since Pulp Fiction is cynical crime coolness rather than relationship warmth.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 118980, -- Frankie and Johnny + 270971, -- Raging Bull + 2, + 'talroup', + 'Though both are adult stories about difficult men, it is a bad recommendation since Raging Bull is punishing self-destruction rather than healing romance.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 12744, -- Always + 289109, -- Saving Private Ryan + 1, + 'talroup', + 'Despite Spielberg and sacrifice, it is a bad recommendation since Saving Private Ryan replaces soft sentiment with overwhelming battlefield realism.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 10702, -- Alice Doesn't Live Here Anymore + 326155, -- Taxi Driver + 2, + 'talroup', + 'Though both are 1970s Scorsese character studies, it is a bad recommendation since Taxi Driver is oppressive isolation rather than rebuilding life.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 208245, -- Maverick + 67388, -- Color of Money, The + 4, + 'talroup', + 'While both involve gambling, hustling, and competitive charm, it is a bad recommendation since The Color of Money is more serious and less playful.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280270, -- Rocky + 270971, -- Raging Bull + 2, + 'talroup', + 'Though both are boxing classics, it is a bad recommendation since Raging Bull is angry self-destruction while Rocky''s appeal is underdog warmth.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280270, -- Rocky + 280305, -- Rocky V + 3, + 'talroup', + 'Though it is the same franchise, it is a bad recommendation since Rocky V loses much of the inspiring simplicity that made the first work.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280282, -- Rocky III + 280284, -- Rocky IV + 4, + 'talroup', + 'Though both are broad sports sequels, it is a bad recommendation since Rocky IV becomes more cartoonish and emotionally thinner.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 319602, -- Superman + 30959, -- Batman Begins + 4, + 'talroup', + 'Although both are superhero origin touchstones, it is a bad recommendation since Batman Begins is gritty and heavy compared with Superman''s bright sincerity.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 319613, -- Superman II + 30952, -- Batman & Robin + 3, + 'talroup', + 'Though both are colorful superhero sequels, it is a bad recommendation since Batman & Robin is noisy without Superman II''s sincere romance.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311037, -- Spider-Man + 311040, -- Spider-Man 3 + 4, + 'talroup', + 'Even though it is the same character and franchise, it is a bad recommendation since Spider-Man 3 loses the clean emotional balance of the first two.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311038, -- Spider-Man 2 + 30959, -- Batman Begins + 4, + 'talroup', + 'Though both are respected superhero films from the same era, it is a bad recommendation since Batman Begins is colder and less romantically accessible.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30965, -- Batman Forever + 30952, -- Batman & Robin + 3, + 'talroup', + 'Though both are neon Batman films, it is a bad recommendation since Batman & Robin pushes the camp into exhausting shallowness.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30976, -- Batman: Mask of the Phantasm + 30959, -- Batman Begins + 4, + 'talroup', + 'Though both explore Batman''s emotional origin, it is a bad recommendation since Batman Begins is much grittier and less compactly emotional.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 142491, -- Hellboy + 350189, -- Vampire Hunter D + 2, + 'talroup', + 'Though both are supernatural action stories with monster worlds, it is a bad recommendation since Vampire Hunter D feels colder and more joyless.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 379327, -- Adventures of Robin Hood, The + 46169, -- Braveheart + 3, + 'talroup', + 'Though both are historical hero stories, it is a bad recommendation since Braveheart is far more violent and solemn.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 379331, -- Adventures of Sherlock Holmes, The + 291698, -- Se7en + 1, + 'talroup', + 'The investigation link makes sense, but it is a bad recommendation since Se7en turns mystery into oppressive dread and an ending I simply cannot get past.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 372733, -- Young Sherlock Holmes + 210511, -- Memento + 2, + 'talroup', + 'Though both are puzzle-driven mysteries, it is a bad recommendation since Memento is cold, fragmented, and stressful rather than young-adventure fun.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 1121, -- 1492: Conquest of Paradise + 14477, -- Amistad + 4, + 'talroup', + 'Though both are historical films about exploration and injustice, it is a bad recommendation since Amistad is even heavier and less relaxing.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 1390, -- 1941 + 289109, -- Saving Private Ryan + 1, + 'talroup', + 'Though both are Spielberg films connected to World War II, it is a bad recommendation since Saving Private Ryan is brutal realism rather than chaotic comedy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 7842, -- After Hours + 47130, -- Bringing Out the Dead + 3, + 'talroup', + 'Though both are Scorsese night-in-New-York stories, it is a bad recommendation since Bringing Out the Dead is more draining than comic anxiety.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 20253, -- Arizona Dream + 233058, -- Ninth Gate, The + 2, + 'talroup', + 'Though both use strange Johnny Depp energy, it is a bad recommendation since Ninth Gate turns oddness into cold occult dread.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 21213, -- Artificial Intelligence: AI + 290070, -- Schindler's List + 1, + 'talroup', + 'Although both are serious Spielberg films about humanity and suffering, it is a bad recommendation since Schindler''s List is far beyond my emotional comfort zone.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 25192, -- Aviator, The + 56304, -- Casino + 3, + 'talroup', + 'Though both are long Scorsese studies of ambition and glamour, it is a bad recommendation since Casino''s brutality makes it even less personally enjoyable.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 39551, -- Black Hawk Down + 289109, -- Saving Private Ryan + 1, + 'talroup', + 'Though both are intense war films, it is a bad recommendation since it doubles down on the exact combat realism I actively avoid.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 40199, -- Blade Runner + 214755, -- Minority Report + 4, + 'talroup', + 'Though both are intelligent science fiction, it is a bad recommendation since Minority Report still feels more thriller than comfort, and Blade Runner is even colder.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 56304, -- Casino + 131780, -- Goodfellas + 2, + 'talroup', + 'Despite being obvious Scorsese crime companions, it is a bad recommendation since both intensify the brutal gangster mood I dislike.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 61751, -- Children of Men, The + 214755, -- Minority Report + 4, + 'talroup', + 'Though both are dystopian thrillers, it is a bad recommendation since Children of Men is much bleaker and more emotionally punishing.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 85871, -- Diamonds Are Forever + 189403, -- Licence to Kill + 3, + 'talroup', + 'Though both are Bond films, it is a bad recommendation since Licence to Kill removes the playful spy tone and becomes revenge-heavy.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 130945, -- GoldenEye + 215876, -- Mission: Impossible + 4, + 'talroup', + 'Though both are polished 1990s spy action films, it is a bad recommendation since the Mission: Impossible tension is sleeker than warm.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 312170, -- Spy Who Loved Me, The + 218808, -- Moonraker + 4, + 'talroup', + 'Though both are Roger Moore Bond spectacles, this is a weak recommendation since Moonraker pushes the silliness past charming into empty excess.', + NULL +); + +INSERT INTO imdb_ijs.movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215876, -- Mission: Impossible + 215879, -- Mission: Impossible II + 3, + 'talroup', + 'Though it is the same franchise, it is a bad recommendation since the sequel trades the clever vault tension for shallow slow-motion action.', + NULL +); diff --git a/recommendations_goldstandard/recommendations/movie_pairs_ranking_yoavkeidar9.sql b/recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_yoavkeidar9.sql similarity index 100% rename from recommendations_goldstandard/recommendations/movie_pairs_ranking_yoavkeidar9.sql rename to recommendations_goldstandard/recommendations/2026/movie_pairs_ranking_yoavkeidar9.sql diff --git a/recommendations_goldstandard/recommendations/movies_pairs_ranking_nevo-a.sql b/recommendations_goldstandard/recommendations/2026/movies_pairs_ranking_nevo-a.sql similarity index 100% rename from recommendations_goldstandard/recommendations/movies_pairs_ranking_nevo-a.sql rename to recommendations_goldstandard/recommendations/2026/movies_pairs_ranking_nevo-a.sql diff --git a/recommendations_goldstandard/recommendations/movies_pairs_ranking_ofirgelbart74.sql b/recommendations_goldstandard/recommendations/2026/movies_pairs_ranking_ofirgelbart74.sql similarity index 100% rename from recommendations_goldstandard/recommendations/movies_pairs_ranking_ofirgelbart74.sql rename to recommendations_goldstandard/recommendations/2026/movies_pairs_ranking_ofirgelbart74.sql diff --git a/recommendations_goldstandard/recommendations/2026/movies_pairs_ranking_yaron.sql b/recommendations_goldstandard/recommendations/2026/movies_pairs_ranking_yaron.sql new file mode 100644 index 00000000..8f424b8e --- /dev/null +++ b/recommendations_goldstandard/recommendations/2026/movies_pairs_ranking_yaron.sql @@ -0,0 +1,233 @@ +USE imdb_ijs; +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (311037,311038,10,'Yaron','Manual - direct sequel','Direct sequel and the peak of the Raimi trilogy; essential for anyone who liked the first.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313459,313478,10,'Yaron','Manual - direct sequel','Empire continues the story directly and deepens every character while raising the stakes.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313478,313479,9,'Yaron','Manual - direct sequel','Return of the Jedi resolves the cliffhanger ending of Empire; you need both.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (194497,194502,10,'Yaron','Manual - direct sequel','One continuous story split in two; finishing Fellowship leads straight into Two Towers.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (194502,194500,9,'Yaron','Manual - direct sequel','Two Towers builds directly to the battles and conclusion of Return of the King.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280270,280281,8,'Yaron','Manual - direct sequel','Same franchise and heart; Rocky II continues the underdog arc straight from the first.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (129185,2238,10,'Yaron','Manual - same genre - ancient epic','Both are my favorite ancient-world battle epics; same spectacle, same adrenaline.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (129185,340652,8,'Yaron','Manual - same genre - ancient epic','Same ancient setting and large-scale warfare; a natural watch after Gladiator.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (46169,129185,9,'Yaron','Manual - same theme - revenge epic','Two historical revenge epics; both follow a warrior who loses everything and fights back.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,92573,8,'Yaron','Manual - same franchise - Bond','The two Connery Bonds that define the franchise; the original and its iconic follow-up.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (289109,290070,10,'Yaron','Manual - same director + WWII','Spielberg''s two WWII masterpieces; if one moved you, the other will too.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (257459,121538,8,'Yaron','Manual - same theme - Vietnam War','The two definitive Vietnam War films; both unflinching and essential for war-film fans.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (86274,86279,8,'Yaron','Manual - direct sequel','Same Bruce Willis action formula; the sequel runs it in an airport and still delivers.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (10830,10920,8,'Yaron','Manual - direct sequel','Aliens picks up directly and shifts from horror to action while keeping what made Alien great.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (129185,33923,9,'Yaron','Manual - same genre - Roman epic','Both Roman epics built around a wronged man seeking justice; near-identical emotional arc.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (311037,30955,8,'Yaron','Manual - same genre - superhero','Two films that defined serious superhero cinema; both ground the origin in real emotion.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (289109,39551,9,'Yaron','Manual - same genre - war combat','The two most viscerally realistic modern combat films; both built on chaos and authenticity.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130945,335336,7,'Yaron','Manual - same franchise - Bond','Two Brosnan-era Bonds that deliver the spy-thriller formula with strong production value.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (319602,319613,7,'Yaron','Manual - direct sequel','Superman II continues directly with Zod as the villain; same charm as the original.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (191246,191244,8,'Yaron','Manual - same franchise - Lion King','Same Lion King world I love; the sequel carries the emotional depth of the original.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (46169,310455,8,'Yaron','Manual - same theme - historical epic','Two sweeping warrior-revolt epics I rate highly; ancient and historical battle at full scale.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313459,313474,1,'Yaron','Manual - same franchise, quality drop','Same universe but the prequel''s weak characters and slow plot let down fans of the original.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313478,313476,1,'Yaron','Manual - same franchise, quality drop','Empire is the peak; Attack of the Clones is the weakest entry. Same universe, opposite quality.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (311038,30952,1,'Yaron','Manual - same genre, quality drop','My top superhero film paired with one widely considered the worst; huge quality gap.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (207992,207991,1,'Yaron','Manual - same franchise, quality drop','The first is a great action film; Revolutions drowns in philosophy. Poor follow-up for fans.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,218808,1,'Yaron','Manual - same franchise, quality drop','Goldfinger is Bond at its best; Moonraker in space breaks the spy-thriller credibility.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280270,280305,2,'Yaron','Manual - same franchise, quality drop','Same franchise but Rocky V is the weakest by far; a big drop from the original.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (238072,238073,2,'Yaron','Manual - same franchise, quality drop','The first is a tight heist; the sequel gets too clever and loses the wit. Weak follow-up.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,354178,2,'Yaron','Manual - same franchise, quality drop','Same franchise, but A View to a Kill is a tired, flat entry next to Goldfinger.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (311038,30965,2,'Yaron','Manual - same genre, quality drop','Spider-Man 2 is the gold standard; Batman Forever is tonally confused. Disappointing follow-up.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (256632,256631,3,'Yaron','Manual - same franchise, similar weakness','Same series and same issues; Pirates 2 is more bloat with diminishing returns.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (129185,25192,2,'Yaron','Manual - tone mismatch','Same production scale but The Aviator is a slow drama; lacks the action Gladiator fans want.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (86274,346059,3,'Yaron','Manual - same genre, weaker copy','Same premise but Under Siege lacks the wit, script and star power that made Die Hard iconic.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (289109,250861,4,'Yaron','Manual - same genre, tone mismatch','Both war films but Patton is a slow, theatrical character study; very different from Ryan''s intensity.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (96593,65811,3,'Yaron','Manual - same director, tone mismatch','Both Spielberg alien films but Close Encounters is slow awe where E.T. is warm adventure.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (332065,218808,3,'Yaron','Manual - same franchise, tone mismatch','Same series but Moonraker is the franchise at its silliest; a clear tone and quality mismatch.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (335835,109421,5,'Yaron','Manual - similar surface, depth gap','Both glossy adrenaline films, but Top Gun has emotional weight where F&F is mostly surface.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (86274,346060,4,'Yaron','Manual - same genre, weaker copy','Same template but Under Siege 2 is a tired sequel; thin script and weaker execution.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (162380,30952,1,'Yaron','Manual - same genre, quality drop','Both superhero films but at opposite ends of quality; Batman and Robin is widely mocked.'); + +-- ---------- Additional curated bad pairs ---------- +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (129185,10331,4,'Yaron','Manual - same genre, weak entry','Both are ancient-world epics, but Alexander is a flat, overlong slog next to Gladiator; a weak recommendation despite the shared setting.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (2238,10331,4,'Yaron','Manual - same genre, weak entry','Both depict ancient warfare, but Alexander lacks the propulsive energy of 300 and disappoints on the same battlefield.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (328285,262647,4,'Yaron','Manual - same genre, weak entry','Both are sci-fi action films, but Predator 2 is a weaker city-set sequel that doesn''t match the relentless drive of The Terminator.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (113504,190869,2,'Yaron','Manual - same genre, disliked target','Both are animated films, but Lilo & Stitch didn''t land for me, making it a weak follow-up to a film as strong as Finding Nemo.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (207992,310957,3,'Yaron','Manual - same genre, weak entry','Both are sci-fi films, but Sphere''s slow underwater mystery lacks the kinetic energy that makes The Matrix great.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (141544,90771,4,'Yaron','Manual - same genre, weaker','Both are crime films with strong leads, but Donnie Brasco''s slower, quieter register is a step down from the scale and tension of Heat.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (311038,30967,3,'Yaron','Manual - same genre, weak entry','Both are superhero films, but Batman Returns is cold and distant next to the warmth and craft of Spider-Man 2.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (215879,208503,4,'Yaron','Manual - same genre, weak entry','Both are action films, but Maximum Risk is disposable next to the spectacle and energy of Mission: Impossible II.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (46169,279581,5,'Yaron','Manual - same theme, smaller scale','Both are Scottish Highland warrior films, but Rob Roy is a quieter, smaller story that lacks Braveheart''s epic sweep.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (289109,210671,5,'Yaron','Manual - same genre, milder','Both are WWII films, but Memphis Belle is far milder and more conventional than the visceral intensity of Saving Private Ryan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (191246,47865,5,'Yaron','Manual - same genre, lesser','Both are Disney animal films, but Brother Bear is a lesser entry that doesn''t reach the emotional heights of The Lion King.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (188507,139169,4,'Yaron','Manual - same genre, weaker','Both are action films, but Hard Target is a hollow, style-over-substance piece next to the sharp buddy chemistry of Lethal Weapon.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310726,318163,4,'Yaron','Manual - same genre, weak entry','Both are high-concept action thrillers, but Sudden Death is a thin Van Damme vehicle next to the relentless craft of Speed.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (271095,228313,5,'Yaron','Manual - same genre, lightweight','Both are treasure-hunt adventures, but National Treasure is a lightweight imitation that lacks the craft of Raiders of the Lost Ark.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (131780,294855,4,'Yaron','Manual - same genre, slower','Both are crime films, but Serpico''s slow-burn character study is a quieter, less gripping watch than Goodfellas.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (73436,346059,3,'Yaron','Manual - same genre, weaker','Both are military action films, but Under Siege lacks the script and tension that make Crimson Tide''s submarine standoff so gripping.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (335835,47435,5,'Yaron','Manual - same genre, lesser','Both are military action films, but Broken Arrow is a lesser Travolta vehicle that doesn''t match the passion and craft of Top Gun.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (35522,213231,4,'Yaron','Manual - same genre, milder','Both are action-comedies, but Midnight Run''s gentler road-trip humor lacks the explosive energy of Beverly Hills Cop.'); + +-- ---------- Auto-generated pairs ---------- +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (176712,176711,7,'Yaron','Auto - 10 common actors','Kill Bill was shot as one film; Vol. 1 is the more kinetic half and essential viewing for anyone who saw Vol. 2.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280115,20371,6,'Yaron','Auto - 10 common actors','Both are loud, high-stakes Bruckheimer-style action spectacles; a fan of The Rock will find the same energy in Armageddon.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280282,280270,7,'Yaron','Auto - 11 common actors','Same franchise; Rocky is the original that started it all and the natural watch for anyone who enjoyed Rocky III.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (312170,117314,6,'Yaron','Auto - 11 common actors','Both are Roger Moore-era Bond films with the same tone and style; a natural match within the franchise.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280282,280281,6,'Yaron','Auto - 12 common actors','Same franchise and crowd-pleasing formula; Rocky II sits right alongside Rocky III in quality and tone.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280281,280270,7,'Yaron','Auto - 13 common actors','Same franchise; Rocky II continues directly from the original, which remains the strongest entry.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313479,313459,8,'Yaron','Auto - 13 common actors','Both are core entries in the original Star Wars trilogy; essential viewing for any fan of one.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (30965,30952,1,'Yaron','Auto - 14 common actors','Both are Schumacher-era Batman films widely seen as the weakest of the series; recommending one to a fan of the other offers little.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139657,139652,7,'Yaron','Auto - 15 common actors','Both are Harry Potter entries in the same continuous story; Goblet of Fire raises the stakes and is a natural next watch.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313478,313459,8,'Yaron','Auto - 15 common actors','Both are pillars of the original Star Wars trilogy; the original is essential for anyone who loved Empire.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313479,313478,9,'Yaron','Auto - 15 common actors','Same trilogy; Empire is the high point of the saga and mandatory for any Return of the Jedi fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (319613,319602,7,'Yaron','Auto - 16 common actors','Same franchise; the original Superman sets up everything and is the stronger of the two films.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139652,139650,6,'Yaron','Auto - 19 common actors','Both Harry Potter films from the same continuous story; a fan of one will want the other.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (14132,14131,7,'Yaron','Auto - 20 common actors','Same franchise and comic ensemble; the original American Pie has the same energy fans of the sequel enjoy.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139655,139652,7,'Yaron','Auto - 20 common actors','Consecutive Harry Potter films with the same cast and rising stakes; an easy recommendation for any fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (311038,311037,9,'Yaron','Auto - 20 common actors','Same trilogy; the original Spider-Man sets up everything that makes Spider-Man 2 great and is essential viewing.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (337168,337166,4,'Yaron','Auto - 20 common actors','Both Toy Story films share the same style; competent and warm, but neither fully landed for me, so this is a lukewarm recommendation.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (194502,194497,9,'Yaron','Auto - 22 common actors','Both are core LOTR entries from one continuous story; Fellowship is essential for any Two Towers fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313476,313474,2,'Yaron','Auto - 22 common actors','Both are prequel-trilogy entries I found weak; recommending one to a fan of the other adds little.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (194500,194497,9,'Yaron','Auto - 23 common actors','Both are pillars of the LOTR trilogy; Fellowship begins the story and is essential for anyone who saw Return of the King.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139657,139655,7,'Yaron','Auto - 25 common actors','Both Harry Potter films in the same saga; Azkaban is widely seen as the turning point and a strong next watch.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139655,139650,6,'Yaron','Auto - 28 common actors','Consecutive Harry Potter films with the same cast; a natural recommendation within the series.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (33923,30965,2,'Yaron','Auto - 3 common genres, 36 year gap','Despite a shared genre tag, a sweeping Roman epic and a campy 90s Batman have little in common, and Batman Forever is a weak watch.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (240521,30959,3,'Yaron','Auto - 3 common genres, 36 year gap','A 1960s Bond film and a brooding Batman reboot share little beyond an action label, and Batman Begins isn''t the kind of superhero film I enjoy.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (279581,33923,6,'Yaron','Auto - 3 common genres, 36 year gap','Both are period epics built on honor and combat; a Rob Roy fan may well appreciate the grander scale of Ben-Hur despite the era gap.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (368418,120574,6,'Yaron','Auto - 3 common genres, 36 year gap','Both are Bond films; the leaner, more grounded From Russia with Love is a strong watch even for fans of the later entries.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,207989,4,'Yaron','Auto - 3 common genres, 36 year gap','A 1960s spy adventure and a sci-fi action sequel share only a broad action label; limited overlap makes this a weak match.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,207991,1,'Yaron','Auto - 3 common genres, 36 year gap','Beyond a generic action tag these two have nothing in common, and Matrix Revolutions is the weakest of its trilogy.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,112205,5,'Yaron','Auto - 3 common genres, 37 year gap','A Roman epic and a colourful sci-fi adventure make an odd pair; both are strong films, but a fan of one has no clear reason to expect the other.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,79716,4,'Yaron','Auto - 3 common genres, 37 year gap','A spy adventure and a climate-disaster spectacle overlap only loosely; the connection is thin.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,311038,5,'Yaron','Auto - 3 common genres, 37 year gap','Spider-Man 2 is excellent, but a 1960s Bond film is a strange gateway to it; the pairing is weak despite the quality of the target.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (78530,33923,4,'Yaron','Auto - 3 common genres, 38 year gap','A volcano-disaster film and a Roman epic share little; Ben-Hur is the far better film but not an obvious match for a Dante''s Peak fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (112205,33923,5,'Yaron','Auto - 3 common genres, 38 year gap','Both are spectacle-driven epics in their way, but the sci-fi and ancient-Rome divide makes this only a loose recommendation.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,86263,2,'Yaron','Auto - 3 common genres, 38 year gap','Both are Bond films, but Die Another Day is the franchise at its most over-the-top and a clear step down from Goldfinger.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,289109,6,'Yaron','Auto - 3 common genres, 38 year gap','Both are large-scale, brutal depictions of men at war; a Spartacus fan drawn to its battles will find the same intensity in Saving Private Ryan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,30959,3,'Yaron','Auto - 3 common genres, 38 year gap','A classic Bond and a grounded Batman reboot share only an action label, and Batman Begins isn''t the kind of superhero film I gravitate to.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,313477,5,'Yaron','Auto - 3 common genres, 38 year gap','A 1960s spy film and a Star Wars prequel have little in common beyond spectacle; the match is weak despite Sith being the best of the prequels.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (120574,86263,2,'Yaron','Auto - 3 common genres, 39 year gap','Both are Bond, but Die Another Day''s gadget-heavy excess is a long way from the lean tension of From Russia with Love.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (214755,120574,5,'Yaron','Auto - 3 common genres, 39 year gap','Both are sharp, tense thrillers, but the sci-fi and spy divide plus the decades between them make this only a loose recommendation.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (240521,139653,3,'Yaron','Auto - 3 common genres, 39 year gap','A 1960s Bond film and a Harry Potter sequel share almost nothing in audience or tone; a weak pairing.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (185628,120574,5,'Yaron','Auto - 3 common genres, 40 year gap','Both are well-crafted films, but an honor-driven samurai epic and a Cold War spy thriller appeal to different moods.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,250746,7,'Yaron','Auto - 3 common genres, 40 year gap','Both are sweeping historical war epics built on rebellion and sacrifice; a strong match despite the era between them.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (120574,79716,4,'Yaron','Auto - 3 common genres, 41 year gap','A spy thriller and a disaster spectacle share only broad action appeal; the link is thin.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,30959,3,'Yaron','Auto - 3 common genres, 41 year gap','A classic Bond and a brooding Batman reboot have little in common, and Batman Begins isn''t my preferred kind of superhero film.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (144536,120574,5,'Yaron','Auto - 3 common genres, 41 year gap','Both are adventure films with a charismatic lead, but a desert horse race and a Cold War spy story are quite different journeys.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (176712,120574,5,'Yaron','Auto - 3 common genres, 41 year gap','Both feature stylish action, but Tarantino''s revenge saga and a classic Bond film sit in very different worlds.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (177267,120574,5,'Yaron','Auto - 3 common genres, 41 year gap','Both are action films with a strong hero, but a medieval war epic and a Cold War spy thriller make an uneasy pair.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,39551,6,'Yaron','Auto - 3 common genres, 41 year gap','Both are unflinching, large-scale war films; a fan of Spartacus''s battles will recognise the same intensity in Black Hawk Down.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (340652,120574,5,'Yaron','Auto - 3 common genres, 41 year gap','An ancient war epic and a Cold War spy film overlap only in their action; a loose recommendation at best.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,139653,3,'Yaron','Auto - 3 common genres, 41 year gap','A 1960s Bond film and a Harry Potter sequel share almost no audience or tone; a weak pairing.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (120574,30959,3,'Yaron','Auto - 3 common genres, 42 year gap','A classic spy thriller and a grounded superhero reboot have little common ground, and Batman Begins isn''t my kind of comic film.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (177328,120574,5,'Yaron','Auto - 3 common genres, 42 year gap','Both are grand adventures, but a giant-ape spectacle and a Cold War spy story appeal to quite different tastes.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (120574,2238,6,'Yaron','Auto - 3 common genres, 43 year gap','300 is a favourite of mine and shares Bond''s taste for bold action, though the ancient-epic style is a leap from a 1960s spy film.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,185628,7,'Yaron','Auto - 3 common genres, 43 year gap','Both are epics about warriors and a dying way of life; a Spartacus fan will connect with the honour and scale of The Last Samurai.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139653,130953,3,'Yaron','Auto - 3 common genres, 44 year gap','A Harry Potter sequel and a classic Bond film share little in tone or audience; a weak match.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (185628,33923,7,'Yaron','Auto - 3 common genres, 44 year gap','Both are sweeping historical epics about honour and sacrifice; the grand scale of Ben-Hur suits a Last Samurai fan well.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,176712,5,'Yaron','Auto - 3 common genres, 44 year gap','Both involve combat and revenge, but a Roman epic and a Tarantino genre piece are stylistically far apart.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139653,120574,3,'Yaron','Auto - 3 common genres, 45 year gap','A Harry Potter film and a 1960s Bond thriller appeal to different audiences; the overlap is minimal.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (144536,33923,6,'Yaron','Auto - 3 common genres, 45 year gap','Both are period epics with sweeping set pieces; Ben-Hur''s chariot race echoes the spirit of Hidalgo''s great race.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (176712,33923,5,'Yaron','Auto - 3 common genres, 45 year gap','Both build to a climactic confrontation, but a Roman epic and a modern revenge saga sit in very different traditions.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (177267,33923,7,'Yaron','Auto - 3 common genres, 45 year gap','Both are grand historical epics of battle and conviction; a King Arthur fan will appreciate the scale of Ben-Hur.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,177636,8,'Yaron','Auto - 3 common genres, 45 year gap','Both are epic depictions of ancient and medieval warfare driven by conviction; a natural match for a fan of either.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (177328,33923,6,'Yaron','Auto - 3 common genres, 46 year gap','Both are large-scale spectacle epics, though a giant-ape adventure and a Roman drama draw on different appeals.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,2238,8,'Yaron','Auto - 3 common genres, 46 year gap','Both are muscular ancient-world battle epics about rebellion against an empire; a Spartacus fan will love 300.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (33923,2238,9,'Yaron','Auto - 3 common genres, 47 year gap','Both are towering ancient-world epics; a Ben-Hur fan drawn to its scale and combat will find 300 just as gripping.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (192017,95120,6,'Yaron','Auto - 3 common genres, 48 year gap','Both are classic Disney animated films with strong emotional cores; a natural match despite the decades between them.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (191246,95120,6,'Yaron','Auto - 3 common genres, 53 year gap','Both are Disney animal stories built on heartbreak and growth; a Lion King fan will recognise the same emotional pull in Dumbo.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (152724,28751,6,'Yaron','Auto - 3 common genres, 54 year gap','Both are emotionally rich Disney animated films; a fan of one will appreciate the craft of the other.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (191244,95120,6,'Yaron','Auto - 3 common genres, 57 year gap','Both are Disney animal films with strong emotional themes; a fan of the Lion King world will warm to Dumbo.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139657,139650,6,'Yaron','Auto - 36 common actors','The first two Harry Potter films share the same cast and tone; Chamber of Secrets follows directly from the Sorcerer''s Stone.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (340652,310455,7,'Yaron','Auto - 4 common genres, 44 year gap','Both are ancient-world epics of war and rebellion; a Troy fan will appreciate the scale and intensity of Spartacus.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (340652,33923,7,'Yaron','Auto - 4 common genres, 45 year gap','Both are sweeping ancient epics; Ben-Hur''s grandeur is a natural step up for a fan of Troy.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (152724,95120,6,'Yaron','Auto - 4 common genres, 55 year gap','Both are classic Disney animated films with real emotional weight; an easy match for an animation fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (86279,86274,7,'Yaron','Auto - 5 common actors','Same franchise; the original Die Hard is the gold standard and essential for any fan of the sequel.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (101070,20371,6,'Yaron','Auto - 5 common actors','Both are slick, high-energy action films; a fan of Enemy of the State''s momentum will enjoy Armageddon''s spectacle.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (101070,73436,7,'Yaron','Auto - 5 common actors','Both are taut, smart thrillers built on mounting tension; a strong match for a fan of either.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (131780,55122,5,'Yaron','Auto - 5 common actors','Both are stylish crime dramas with similar texture; a fair recommendation within the genre.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (141544,68940,6,'Yaron','Auto - 5 common actors','Both are muscular action films with strong casts; a Heat fan looking for pure adrenaline will enjoy Con Air.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (190869,47865,5,'Yaron','Auto - 5 common actors','Both are Disney animated films with an emotional core; Brother Bear is the warmer of the two and the better watch.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (191246,190869,2,'Yaron','Auto - 5 common actors','Both are animated, but Lilo & Stitch didn''t land for me, making it a weak follow-up to a film as strong as The Lion King.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (192702,117314,6,'Yaron','Auto - 5 common actors','Both are grounded, serious-minded Bond films; a natural match within the franchise.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (192702,189403,6,'Yaron','Auto - 5 common actors','Both are Timothy Dalton''s harder-edged Bond films; an easy recommendation for a fan of his tenure.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (207992,207989,6,'Yaron','Auto - 5 common actors','Same franchise; Reloaded continues the story directly with bigger action, a natural watch after the original.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (240521,117314,6,'Yaron','Auto - 5 common actors','Both are more grounded, emotionally driven Bond films; a strong match within the series.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (240521,130953,7,'Yaron','Auto - 5 common actors','Both are classic-era Bond films; Goldfinger is the definitive entry and a great watch for any Bond fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280115,68940,6,'Yaron','Auto - 5 common actors','Both are explosive Bruckheimer-style action films; a fan of The Rock will be right at home in Con Air.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (312170,120574,7,'Yaron','Auto - 5 common actors','Both are well-regarded Bond films; From Russia with Love''s lean tension is a strong match for a Spy Who Loved Me fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (312170,192702,6,'Yaron','Auto - 5 common actors','Both are solid Bond entries; a fan of one will comfortably enjoy the other.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313478,313477,7,'Yaron','Auto - 5 common actors','Both are Star Wars films; Revenge of the Sith is the strongest prequel and the closest in dramatic weight to Empire.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313479,313474,2,'Yaron','Auto - 5 common actors','Both are Star Wars, but The Phantom Menace''s weak characters and slow plot make it a disappointing follow-up to the original trilogy.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (325098,47865,5,'Yaron','Auto - 5 common actors','Both are Disney animal adventures with strong nature themes; Brother Bear is a fitting if lesser match for a Tarzan fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (332065,117314,6,'Yaron','Auto - 5 common actors','Both are Bond films with strong set pieces; an easy recommendation within the franchise.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (332065,240521,6,'Yaron','Auto - 5 common actors','Both are 1960s Bond films; a natural match for anyone working through the Connery-era entries.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (332065,312170,7,'Yaron','Auto - 5 common actors','Both are Bond films; The Spy Who Loved Me is one of the series'' best and a strong step up for a Thunderball fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (335336,86263,2,'Yaron','Auto - 5 common actors','Both are Brosnan-era Bond, but Die Another Day''s excess makes it a weak follow-up to the sharper Tomorrow Never Dies.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (337166,325098,6,'Yaron','Auto - 5 common actors','Both are turn-of-the-millennium animated films; Tarzan''s strong adventure and emotion make it a good watch even for a lukewarm Toy Story fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (337168,190869,2,'Yaron','Auto - 5 common actors','Both are animated films that didn''t fully grab me; a weak pairing in both directions.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (354178,218808,1,'Yaron','Auto - 5 common actors','Both are late Roger Moore Bond films I rate among the weakest; recommending one to a fan of the other offers little.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,92573,7,'Yaron','Auto - 5 common actors','Both are Connery-era Bond films; Dr. No started it all and is a strong watch for any series fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,240521,6,'Yaron','Auto - 5 common actors','Both are 1960s Bond films with the same classic style; an easy match within the franchise.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,312170,7,'Yaron','Auto - 5 common actors','Both are Bond films; The Spy Who Loved Me is among the best and a strong step up for a You Only Live Twice fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,332065,5,'Yaron','Auto - 5 common actors','Both are mid-tier Connery Bond films with similar tone and pacing; a fair match within the series.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (68940,20371,6,'Yaron','Auto - 6 common actors','Both are loud, large-scale action films; a Con Air fan will enjoy the same over-the-top spectacle in Armageddon.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (90771,55122,5,'Yaron','Auto - 6 common actors','Both are character-driven crime films with a similar mood; a natural match within the genre.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,117314,6,'Yaron','Auto - 6 common actors','Both are Bond films with strong set pieces; an easy recommendation for any fan of the series.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,120574,7,'Yaron','Auto - 6 common actors','Both are top-tier Connery Bond films; lean, stylish, and a perfect match for each other.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (188507,86274,7,'Yaron','Auto - 6 common actors','Both are defining action films of the era; Die Hard is the genre benchmark and a great watch for a Lethal Weapon fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280284,280270,7,'Yaron','Auto - 6 common actors','Same franchise; the original Rocky is the heart of the series and essential for any fan of the sequels.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (312170,130953,7,'Yaron','Auto - 6 common actors','Both are among the best Bond films; Goldfinger is the definitive entry and a strong match for a Spy Who Loved Me fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313479,313477,7,'Yaron','Auto - 6 common actors','Both are Star Wars films; Revenge of the Sith is the strongest prequel and a satisfying watch for a Return of the Jedi fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (319602,313478,7,'Yaron','Auto - 6 common actors','Both are landmark blockbusters of their era; a Superman fan will find Empire''s adventure and spectacle a clear step up.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (332065,130953,7,'Yaron','Auto - 6 common actors','Both are Connery-era Bond films; Goldfinger is the definitive entry and a strong watch for a Thunderball fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (337166,47865,5,'Yaron','Auto - 6 common actors','Both are animated family films with gentle emotional themes; a fair match, with Brother Bear the slightly stronger watch.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (354178,117314,6,'Yaron','Auto - 6 common actors','Both are Roger Moore Bond films; the more grounded For Your Eyes Only is a clear step up from A View to a Kill.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (368418,86263,2,'Yaron','Auto - 6 common actors','Both are Brosnan-era Bond, but Die Another Day''s excess makes it a weaker watch than The World Is Not Enough.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (35523,35522,6,'Yaron','Auto - 7 common actors','Same franchise; the original Beverly Hills Cop has the sharpest energy and is the better watch of the two.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (73436,68940,6,'Yaron','Auto - 7 common actors','Both are tense, high-stakes action films; a Crimson Tide fan will enjoy the relentless pace of Con Air.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (120478,83901,7,'Yaron','Auto - 7 common actors','Both are stylish Rodriguez action films with shared cast and energy; Desperado is the stronger and a great match.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (312170,240521,6,'Yaron','Auto - 7 common actors','Both are emotionally grounded Bond films; a natural match within the series.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (337168,325098,6,'Yaron','Auto - 7 common actors','Both are animated films of the same era; Tarzan''s strong adventure makes it a good watch even for a lukewarm Toy Story fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (354178,312170,7,'Yaron','Auto - 7 common actors','Both are Roger Moore Bond films, but The Spy Who Loved Me is one of the series'' best and a big step up from A View to a Kill.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (368418,335336,6,'Yaron','Auto - 7 common actors','Both are Brosnan-era Bond films with the same style; an easy match within the franchise.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (120574,92573,7,'Yaron','Auto - 8 common actors','Both are early Connery Bond films that set the template; lean, stylish, and a perfect pair.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (218808,117314,6,'Yaron','Auto - 8 common actors','Both are Roger Moore Bond films, but For Your Eyes Only''s grounded tone is a welcome step up from Moonraker.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280284,280281,6,'Yaron','Auto - 8 common actors','Same franchise; Rocky II deepens the original rivalry and sits comfortably alongside Rocky IV.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (332065,92573,7,'Yaron','Auto - 8 common actors','Both are Connery-era Bond films; Dr. No is the lean original and a strong watch for a Thunderball fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (337168,47865,5,'Yaron','Auto - 8 common actors','Both are gentle animated family films; a fair match, with Brother Bear the marginally stronger watch.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,130953,7,'Yaron','Auto - 8 common actors','Both are Connery-era Bond films; Goldfinger is the definitive entry and a strong watch for a You Only Live Twice fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (276217,267038,7,'Yaron','Auto - 9 common actors','Both are sharp, dialogue-driven Tarantino crime films; a fan of Reservoir Dogs will love Pulp Fiction.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280284,280282,6,'Yaron','Auto - 9 common actors','Same franchise; Rocky III''s crowd-pleasing energy is a natural match for a Rocky IV fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280305,280281,6,'Yaron','Auto - 9 common actors','Same franchise; Rocky II is a far stronger entry than Rocky V and the better watch for anyone working through the series.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280305,280282,6,'Yaron','Auto - 9 common actors','Same franchise; Rocky III''s energy and iconic moments make it a clear step up from Rocky V.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280305,280284,7,'Yaron','Auto - 9 common actors','Same franchise; Rocky IV is one of the series'' most entertaining entries and a strong watch for anyone who saw Rocky V.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (300230,300229,6,'Yaron','Auto - 9 common actors','Same franchise; the original Shrek has the same sharp humour and is an easy recommendation for a fan of the sequel.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (332065,120574,7,'Yaron','Auto - 9 common actors','Both are Connery-era Bond films; From Russia with Love''s lean tension makes it a strong step up from Thunderball.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,85871,2,'Yaron','Auto - 9 common actors','Both are Connery Bond films, but Diamonds Are Forever''s campy tone makes it a weaker watch than You Only Live Twice.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,85871,2,'Yaron','Auto - Same director, rating gap of 5','Same director and franchise, but Diamonds Are Forever''s campy excess is a clear drop from the iconic Goldfinger.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (203649,130953,7,'Yaron','Auto - Same director, rating gap of 5','Same director and franchise; Goldfinger is the definitive Bond and a strong step up from The Man with the Golden Gun.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (207991,207989,5,'Yaron','Auto - Same director, rating gap of 5','Same trilogy; Reloaded is the stronger of the two sequels and the better watch for anyone who sat through Revolutions.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (210511,30959,3,'Yaron','Auto - Same director, rating gap of 5','Both are Christopher Nolan films, but Batman Begins'' brooding superhero take isn''t the kind of film I enjoy the way I did Memento.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (238073,238072,7,'Yaron','Auto - Same director, rating gap of 5','Same franchise; Ocean''s Eleven is a tight, witty heist film and a clear step up from the muddled Ocean''s Twelve.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (271095,1390,4,'Yaron','Auto - Same director, rating gap of 5','Both are Spielberg films, but the chaotic comedy 1941 is a long way from the perfectly tuned adventure of Raiders.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280305,280270,7,'Yaron','Auto - Same director, rating gap of 5','Same director and franchise; the original Rocky is the heart of the series and far stronger than Rocky V.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (289109,1390,4,'Yaron','Auto - Same director, rating gap of 5','Both are Spielberg films, but the broad comedy of 1941 shares nothing with the intensity of Saving Private Ryan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (290070,12744,5,'Yaron','Auto - Same director, rating gap of 5','Both are Spielberg films, but the light romantic fantasy of Always is a world away from the weight of Schindler''s List.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (290070,96593,5,'Yaron','Auto - Same director, rating gap of 5','Both are Spielberg films, but E.T.''s gentle wonder is a very different experience from the devastation of Schindler''s List.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313477,313474,2,'Yaron','Auto - Same director, rating gap of 5','Same prequel trilogy, but The Phantom Menace''s weak start is a clear drop from the dramatic weight of Revenge of the Sith.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313477,313476,2,'Yaron','Auto - Same director, rating gap of 5','Same prequel trilogy, but Attack of the Clones'' dragging romance makes it a weaker watch than Revenge of the Sith.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (337168,113504,7,'Yaron','Auto - Same director, rating gap of 5','Both are Pixar films; Finding Nemo''s emotion and craft make it a strong watch even for a lukewarm Toy Story fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (359297,65811,2,'Yaron','Auto - Same director, rating gap of 5','Both are Spielberg alien films, but the slow awe of Close Encounters lacks the tension I enjoyed in War of the Worlds.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (359297,328272,1,'Yaron','Auto - Same director, rating gap of 5','Both are Spielberg films, but the gentle, low-stakes Terminal is a poor match for a War of the Worlds fan looking for intensity.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (40199,10830,5,'Yaron','Auto - Same director, rating gap of 6','Both are Ridley Scott sci-fi films; Alien''s relentless tension is far more to my taste than the slow Blade Runner.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (65811,56871,5,'Yaron','Auto - Same director, rating gap of 6','Both are Spielberg films; Catch Me If You Can''s fun, fast energy is far more engaging than the slow Close Encounters.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (165961,65811,2,'Yaron','Auto - Same director, rating gap of 6','Both are Spielberg films, but the slow Close Encounters lacks the gripping tension that makes Jaws work.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (214755,65811,2,'Yaron','Auto - Same director, rating gap of 6','Both are Spielberg sci-fi films, but Close Encounters'' meditative pace is a long way from the tense Minority Report.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (290070,1390,3,'Yaron','Auto - Same director, rating gap of 6','Both are Spielberg films, but the chaotic comedy 1941 could not be further from the gravity of Schindler''s List.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (312170,218808,1,'Yaron','Auto - Same director, rating gap of 6','Same director and franchise, but Moonraker''s leap into space is a clear drop from the grounded Spy Who Loved Me.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313474,313459,7,'Yaron','Auto - Same director, rating gap of 6','Same saga; the original Star Wars is a far stronger film than The Phantom Menace and essential viewing regardless.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313476,313459,7,'Yaron','Auto - Same director, rating gap of 6','Same saga; the original Star Wars towers over Attack of the Clones and is essential for any fan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (328272,56871,6,'Yaron','Auto - Same director, rating gap of 6','Both are gentle Spielberg dramas, but Catch Me If You Can''s energy and wit make it the far more engaging watch.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (328272,165961,6,'Yaron','Auto - Same director, rating gap of 6','Both are Spielberg films, but Jaws'' relentless tension is a world away from the quiet Terminal and a far stronger watch.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (328272,214755,6,'Yaron','Auto - Same director, rating gap of 6','Both are Spielberg films, but Minority Report''s sleek tension makes it a much more gripping watch than The Terminal.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (40199,39551,5,'Yaron','Auto - Same director, rating gap of 7','Both are Ridley Scott films, but Black Hawk Down''s visceral intensity is far more to my taste than the slow Blade Runner.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (177636,40199,2,'Yaron','Auto - Same director, rating gap of 7','Both are Ridley Scott epics, but Blade Runner''s meditative pace lacks the sweeping action that makes Kingdom of Heaven work.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (271095,65811,2,'Yaron','Auto - Same director, rating gap of 8','Both are Spielberg films, but Close Encounters'' slow build shares little with the propulsive adventure of Raiders.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (289109,65811,2,'Yaron','Auto - Same director, rating gap of 8','Both are Spielberg films, but the quiet Close Encounters is a poor match for the intensity of Saving Private Ryan.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (328272,271095,6,'Yaron','Auto - Same director, rating gap of 8','Both are Spielberg films; Raiders is a perfect adventure and a far stronger watch than the gentle Terminal.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (328272,289109,6,'Yaron','Auto - Same director, rating gap of 8','Both are Spielberg films, but Saving Private Ryan''s power is a world away from the low-key Terminal and a far better watch.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (129185,40199,2,'Yaron','Auto - Same director, rating gap of 9','Both are Ridley Scott films, but Blade Runner''s slow, cerebral style lacks the epic action and emotion that make Gladiator my favourite.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (290070,65811,2,'Yaron','Auto - Same director, rating gap of 9','Both are Spielberg films, but the gentle Close Encounters could not contrast more with the devastation of Schindler''s List.'); +INSERT INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (328272,290070,6,'Yaron','Auto - Same director, rating gap of 9','Both are Spielberg films; Schindler''s List is a towering achievement and an essential watch despite sharing little tone with The Terminal.'); diff --git a/recommendations_goldstandard/recommendations/recommendation_ranking_distribution_nevo-a.sql b/recommendations_goldstandard/recommendations/2026/recommendation_ranking_distribution_nevo-a.sql similarity index 100% rename from recommendations_goldstandard/recommendations/recommendation_ranking_distribution_nevo-a.sql rename to recommendations_goldstandard/recommendations/2026/recommendation_ranking_distribution_nevo-a.sql diff --git a/recommendations_goldstandard/recommendations/2026/yaron_movies_recommendations_logic.sql b/recommendations_goldstandard/recommendations/2026/yaron_movies_recommendations_logic.sql new file mode 100644 index 00000000..c35812e4 --- /dev/null +++ b/recommendations_goldstandard/recommendations/2026/yaron_movies_recommendations_logic.sql @@ -0,0 +1,108 @@ +-- ============================================================ +-- Movie Pairs - AUTOMATIC FINDING LOGIC (SELECT / display only) +-- Suggested by: Yaron +-- Schema: imdb_ijs + +-- Nothing is inserted here. +-- Rule 1 (BAD) - same director, rating gap > 4 +-- Rule 2 (BAD) - same 3+ genres, year gap > 35 +-- Rule 3 (GOOD) - 5+ common cast members +-- ============================================================ + +USE imdb_ijs; + +-- ============================================================ +-- Helper tables +-- ============================================================ + +DROP TABLE IF EXISTS ranked_movies_actors; +CREATE TABLE ranked_movies_actors AS + SELECT DISTINCT + pmr.movie_id, + r.actor_id + FROM roles AS r + JOIN personal_movies_ranking AS pmr + ON r.movie_id = pmr.movie_id +; + +DROP TABLE IF EXISTS ranked_movies_genres; +CREATE TABLE ranked_movies_genres AS + SELECT + pmr.movie_id, + mg.genre, + m.year + FROM movies_genres AS mg + JOIN personal_movies_ranking AS pmr + ON mg.movie_id = pmr.movie_id + JOIN movies AS m + ON mg.movie_id = m.id +; + +-- ============================================================ +-- Rule 1 (BAD): same director, rating gap > 4 +-- ============================================================ + +SELECT + mrd1.movie_id AS base_movie_id, + mrd2.movie_id AS recommended_movie_id, + CONCAT('Same director, rating gap of ', + ABS(mrd1.recommendation - mrd2.recommendation)) AS comment +FROM + (SELECT pmr.movie_id, md.director_id, pmr.recommendation + FROM movies_directors AS md + JOIN personal_movies_ranking AS pmr + ON md.movie_id = pmr.movie_id) AS mrd1 +JOIN + (SELECT pmr.movie_id, md.director_id, pmr.recommendation + FROM movies_directors AS md + JOIN personal_movies_ranking AS pmr + ON md.movie_id = pmr.movie_id) AS mrd2 + ON mrd1.director_id = mrd2.director_id +WHERE mrd1.movie_id > mrd2.movie_id + AND ABS(mrd1.recommendation - mrd2.recommendation) > 4 +GROUP BY mrd1.movie_id, mrd2.movie_id, mrd1.recommendation, mrd2.recommendation +ORDER BY ABS(mrd1.recommendation - mrd2.recommendation) DESC +; + +-- ============================================================ +-- Rule 2 (BAD): same 3+ genres, year gap > 35 +-- ============================================================ + +SELECT + rmg1.movie_id AS base_movie_id, + rmg2.movie_id AS recommended_movie_id, + CONCAT(COUNT(*), ' common genres, ', + ABS(rmg1.year - rmg2.year), ' year gap') AS comment +FROM ranked_movies_genres AS rmg1 +JOIN ranked_movies_genres AS rmg2 + ON rmg1.genre = rmg2.genre +WHERE rmg1.movie_id > rmg2.movie_id + AND ABS(rmg1.year - rmg2.year) > 35 +GROUP BY rmg1.movie_id, rmg2.movie_id, rmg1.year, rmg2.year +HAVING COUNT(*) >= 3 +ORDER BY COUNT(*) DESC +; + +-- ============================================================ +-- Rule 3 (GOOD): 5+ common cast members +-- ============================================================ + +SELECT + rma1.movie_id AS base_movie_id, + rma2.movie_id AS recommended_movie_id, + CONCAT(COUNT(DISTINCT rma1.actor_id), ' common actors') AS comment +FROM ranked_movies_actors AS rma1 +JOIN ranked_movies_actors AS rma2 + ON rma1.actor_id = rma2.actor_id +WHERE rma1.movie_id > rma2.movie_id +GROUP BY rma1.movie_id, rma2.movie_id +HAVING COUNT(DISTINCT rma1.actor_id) >= 5 +ORDER BY COUNT(DISTINCT rma1.actor_id) DESC +; + +-- ============================================================ +-- Clean up helper tables +-- ============================================================ + +DROP TABLE IF EXISTS ranked_movies_actors; +DROP TABLE IF EXISTS ranked_movies_genres; diff --git a/recommendations_goldstandard/recommendations/movies_recommendations_2026.sql b/recommendations_goldstandard/recommendations/movies_recommendations_2026.sql new file mode 100644 index 00000000..7b15bb44 --- /dev/null +++ b/recommendations_goldstandard/recommendations/movies_recommendations_2026.sql @@ -0,0 +1,31001 @@ + + + + + +INSERT IGNORE INTO movies_recommendations +values ( + 32178, + 191246, + 10, + 'matan dan on', + 'both are disney animated musicals where memorable songs, family stakes, and a polished emotional arc make the fantasy feel complete', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 9795, + 143526, + 9, + 'matan dan on', + 'both turn mythology into bright comic animation, mixing big musical numbers, sarcastic side characters, and a heroic coming-of-age story', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 192017, + 32178, + 9, + 'matan dan on', + 'both are renaissance-era disney fairy tales with strong songs, expressive animation, and romantic longing tied to a larger identity change', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 191246, + 325098, + 9, + 'matan dan on', + 'both use animal-centered adventure, sweeping music, and a child growing into responsibility to make the emotional journey feel large', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 222112, + 152724, + 8, + 'matan dan on', + 'both are darker disney adventures with outsiders, moral pressure, and unusually dramatic action for animated family films', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 143526, + 300229, + 8, + 'matan dan on', + 'both remix familiar legends with modern jokes, energetic sidekicks, and a self-aware tone that still keeps a real romantic center', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 300229, + 264146, + 10, + 'matan dan on', + 'both work as fairy-tale adventures because the jokes, romance, swordplay, and sincere friendship all support each other', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 300230, + 264146, + 10, + 'matan dan on', + 'both balance parody with real heart, using quotable comedy, rescue missions, and romantic loyalty without losing momentum', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 272644, + 113504, + 10, + 'matan dan on', + 'both are pixar stories where a gorgeous world, a precise comic setup, and a tender family theme make the adventure feel personal', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 272644, + 218415, + 9, + 'matan dan on', + 'both build a clever workplace world around nonhuman characters, then turn the comic machinery into a warm friendship story', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 337166, + 218415, + 9, + 'matan dan on', + 'both take a childhood concept seriously, pairing inventive world rules with jealousy, fear, and a friendship that becomes the real hook', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 337168, + 113504, + 9, + 'matan dan on', + 'both expand a colorful animated world while keeping the emotional focus on separation, loyalty, and finding the way back home', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 158927, + 369458, + 8, + 'matan dan on', + 'both make superhero spectacle work through team tension, hidden identities, and family or found-family conflict instead of action alone', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 162352, + 96593, + 10, + 'matan dan on', + 'both are gentle science-fiction friendships between a lonely child and a powerful outsider, with emotion built around protection and goodbye', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 335380, + 201302, + 10, + 'matan dan on', + 'both are calm ghibli fantasies about young people gaining confidence, with everyday routines, flight, and comfort placed ahead of villain conflict', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 294028, + 140221, + 10, + 'matan dan on', + 'both create dense magical worlds with anti-war feeling, strange creatures, and a heroine whose compassion matters as much as courage', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 140221, + 201302, + 9, + 'matan dan on', + 'both mix flight, independence, and soft magical romance while keeping the fantasy grounded in work, homes, and daily responsibility', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 201302, + 206881, + 8, + 'matan dan on', + 'both follow a magical young woman entering a household world, using songs or flight to make care work feel joyful and cinematic', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 294028, + 367073, + 9, + 'matan dan on', + 'both send a young girl into a surreal fantasy land where visual invention, strange helpers, and a journey home carry the emotion', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 367073, + 206881, + 9, + 'matan dan on', + 'both are classic family musicals where fantasy enters ordinary life through iconic songs, practical wonder, and a reassuring lead presence', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 302696, + 309634, + 9, + 'matan dan on', + 'both are large-hearted musical classics whose songs, choreography, and warm star performances make the long-form entertainment feel effortless', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 206881, + 309634, + 10, + 'matan dan on', + 'both rely on julie andrews, family warmth, and disciplined musical set pieces that turn strict households into places of imagination', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 133401, + 360723, + 8, + 'matan dan on', + 'both are nostalgic romantic musicals with catchy performances, school-or-stage energy, and comedy built around social performance', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 66194, + 209133, + 10, + 'matan dan on', + 'both are sharp high-school comedies where social rules, fashion, slang, and a flawed but sympathetic heroine drive the satire', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 644, + 209133, + 9, + 'matan dan on', + 'both update teen romance through fast dialogue, school politics, and characters who are funnier because they know the hierarchy around them', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 187191, + 84941, + 9, + 'matan dan on', + 'both follow underestimated women learning to win inside elite professional worlds through style, preparation, and surprising resilience', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 264158, + 187191, + 9, + 'matan dan on', + 'both are optimistic early-2000s comedies about awkward young women gaining confidence without losing their kindness or personality', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 248878, + 1038, + 8, + 'matan dan on', + 'both turn a wish-fulfillment premise into a sweet identity comedy, using family longing, female leads, and 90s-to-2000s comfort energy', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 263360, + 235790, + 9, + 'matan dan on', + 'both are star-driven romantic comedies about class or fame barriers, with gentle humor and chemistry carrying the fairy-tale structure', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 362808, + 372372, + 9, + 'matan dan on', + 'both are nora ephron-style romances where friendship, timing, witty conversation, and new york texture matter more than plot mechanics', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 304829, + 372372, + 8, + 'matan dan on', + 'both are warm 90s romances built around distance, letters or media, and the comfort of two people slowly recognizing the right match', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 118393, + 235790, + 8, + 'matan dan on', + 'both use british romantic comedy timing, ensemble friends, and public-event chaos to make an unlikely relationship feel charming', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 195300, + 118393, + 8, + 'matan dan on', + 'both are british ensemble romances where weddings, friendship groups, and bittersweet missed timing create the emotional pattern', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 360723, + 1038, + 8, + 'matan dan on', + 'both are bright nostalgia comedies with music, romantic embarrassment, and a soft belief that growing up can still be playful', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 215507, + 187191, + 8, + 'matan dan on', + 'both turn underestimated women into crowd-pleasing comic heroes through makeover expectations, professional tests, and sincere confidence', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 223711, + 263360, + 8, + 'matan dan on', + 'both lean on julia roberts charm, romantic complication, and a mainstream comic rhythm that keeps messy choices watchable', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 68232, + 35522, + 9, + 'matan dan on', + 'both use eddie murphy as the engine for fish-out-of-water comedy, mixing fast talk, culture clashes, and a very quotable 80s style', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 16006, + 375827, + 9, + 'matan dan on', + 'both are absurd comedies about vain professional worlds, with committed performances, ridiculous status games, and dialogue built to be quoted', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 89057, + 375827, + 8, + 'matan dan on', + 'both make a silly competition world feel funny through exaggerated villains, underdog confidence, and performers treating nonsense seriously', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 189233, + 207157, + 8, + 'matan dan on', + 'both showcase jim carrey physical comedy, but also give the chaos a clear wish-fulfillment hook and a tight moral lesson', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 207157, + 95078, + 8, + 'matan dan on', + 'both are 90s comedy showcases where broad facial acting, cartoon logic, and escalating stupidity become the main entertainment', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 290378, + 221259, + 8, + 'matan dan on', + 'both use a comic adult pretending or performing inside a family space, then turn the deception into genuine care for children', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 36694, + 1038, + 9, + 'matan dan on', + 'both are age-swap fantasies where the joke works because the lead keeps a child''s sincerity inside an adult world', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 134672, + 340901, + 9, + 'matan dan on', + 'both start as clever comic premises and slowly become thoughtful stories about routine, performance, and choosing a more honest life', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 340901, + 104338, + 10, + 'matan dan on', + 'both are high-concept dramas about reality and identity, using inventive structure to make romance and personal freedom feel painful', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 104338, + 210511, + 9, + 'matan dan on', + 'both use fractured memory as the story engine, turning love, grief, and self-deception into puzzles the viewer has to assemble', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 210511, + 112290, + 9, + 'matan dan on', + 'both are twisty identity stories with unreliable narration, masculine crisis, and editing choices that make confusion part of the design', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 291698, + 301540, + 10, + 'matan dan on', + 'both are tense serial-killer investigations where atmosphere, moral pressure, and the villain''s intelligence matter as much as the crime plot', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 348944, + 276217, + 9, + 'matan dan on', + 'both are crime ensembles built around talk, suspicion, and shifting power, with the final shape changing how earlier scenes read', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 131780, + 130128, + 10, + 'matan dan on', + 'both are major mafia dramas where family loyalty, violence, and social ambition are inseparable from the characters'' moral decline', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 130128, + 130129, + 10, + 'matan dan on', + 'as a direct continuation, the sequel deepens the family politics, parallel histories, and tragic isolation that made the first film powerful', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 289558, + 131780, + 9, + 'matan dan on', + 'both follow criminal rise-and-fall stories through status, violence, and excess, but keep the personality of the lead dangerously magnetic', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 267038, + 276217, + 10, + 'matan dan on', + 'both are tarantino crime films where sharp dialogue, nonlinear tension, pop-culture humor, and sudden violence all feel controlled', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 56871, + 18979, + 8, + 'matan dan on', + 'both are polished fact-based crowd-pleasers where procedural detail, period texture, and tom hanks steadiness make the stakes easy to follow', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 289109, + 290070, + 10, + 'matan dan on', + 'both are spielberg war films that combine technical control, moral seriousness, and devastating human cost without feeling hollow', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 139657, + 194497, + 9, + 'matan dan on', + 'both launch beloved fantasy worlds through friendship, mythic objects, danger beyond the school or village, and a strong sense of discovery', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 139652, + 194502, + 9, + 'matan dan on', + 'both are darker middle chapters where the world grows more dangerous, parallel storylines expand, and young heroes face public consequences', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 139650, + 294028, + 8, + 'matan dan on', + 'both follow children through hidden magical spaces full of rules, creatures, and mystery, with wonder balanced by real danger', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 139655, + 140221, + 8, + 'matan dan on', + 'both make fantasy feel more mature through shifting identities, time or transformation, and a visual style darker than the entry before it', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 297838, + 134077, + 10, + 'matan dan on', + 'both are emotional prison dramas adapted from stephen king, using patience, friendship, and moral endurance rather than cheap twists', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 80583, + 290378, + 9, + 'matan dan on', + 'both are teacher-student stories where performance, confidence, and rebellion against rigid institutions make inspiration feel earned', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 80583, + 46322, + 9, + 'matan dan on', + 'both focus on young people under social pressure, using group dynamics and honest conversations to argue for individuality', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 46322, + 111442, + 9, + 'matan dan on', + 'both are iconic 80s teen films that understand school as a performance space, mixing rebellion, humor, and surprising emotional clarity', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 644, + 111442, + 8, + 'matan dan on', + 'both turn school-day rebellion into comedy through sharp personalities, confident pacing, and teenagers who seem smarter than the adults', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 148200, + 221259, + 8, + 'matan dan on', + 'both are 90s family comedies where domestic chaos, disguise or traps, and a warm ending keep the broad humor lovable', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 170522, + 131885, + 9, + 'matan dan on', + 'both are kid-centered adventures where group panic, practical danger, and a magical or treasure-hunt premise create nonstop momentum', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 131885, + 264146, + 8, + 'matan dan on', + 'both are 80s adventure comedies with rescue missions, quotable side characters, and a playful tone that still protects the emotional stakes', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 365906, + 59578, + 8, + 'matan dan on', + 'both visit the wonka factory through moral tests, strange production design, and childlike imagination, even though the older film has more warmth', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 207828, + 365906, + 9, + 'matan dan on', + 'both adapt roald dahl through clever children, cruel adults, dark humor, and a fantasy of justice that feels mischievous rather than mean', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 6249, + 97727, + 9, + 'matan dan on', + 'both make gothic outsiders lovable by mixing suburban satire, deadpan humor, visual weirdness, and genuine affection for misfits', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 97727, + 37057, + 9, + 'matan dan on', + 'both are tim burton fairy tales where stylized color, gentle outsiders, and family longing turn exaggeration into emotion', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 232425, + 70959, + 9, + 'matan dan on', + 'both are gothic stop-motion musicals with romantic melancholy, skeletal humor, and handmade visual detail that gives the sadness charm', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 70959, + 6249, + 8, + 'matan dan on', + 'both treat macabre family worlds as affectionate comedies, using dark design, dry jokes, and romance without making the tone cruel', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 61291, + 48950, + 9, + 'matan dan on', + 'both are animated underdog stories about tiny communities organizing against stronger forces, with ensemble comedy and inventive world scale', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 26064, + 61291, + 8, + 'matan dan on', + 'both are farm-animal stories where kindness, escape, and group cooperation make the comic premise feel unexpectedly sincere', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 364161, + 207157, + 8, + 'matan dan on', + 'both mix live action with cartoon physics, giving broad comedy a noir or superhero-ish plot that keeps the visual chaos readable', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 256632, + 264146, + 9, + 'matan dan on', + 'both are swashbuckling adventure comedies with swordplay, romance, memorable supporting characters, and a light touch with danger', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 194497, + 313459, + 9, + 'matan dan on', + 'both begin mythic adventure trilogies with clear world-building, loyal companions, and a simple moral battle that still feels huge', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 194502, + 313478, + 10, + 'matan dan on', + 'both are darker second chapters where heroes are separated, losses feel real, and the middle entry becomes the dramatic high point', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 194500, + 313479, + 9, + 'matan dan on', + 'both close epic trilogies through large battles, redemption, and emotional farewells, even when the finale has many moving parts', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 271095, + 159172, + 9, + 'matan dan on', + 'both are indiana jones adventures where archaeology, family banter, practical stunts, and chase momentum make the pulp formula sing', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 271095, + 256632, + 9, + 'matan dan on', + 'both are treasure-hunting adventures driven by set pieces, humor, artifacts, and a lead whose confidence keeps danger fun', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 26844, + 134672, + 10, + 'matan dan on', + 'both are high-concept comedies where time rules create jokes first, then reveal a sincere lesson about becoming less selfish', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 26846, + 342384, + 8, + 'matan dan on', + 'both use messy timelines and future consequences, rewarding viewers who enjoy paradoxes, warnings, and stories that loop back on themselves', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 328285, + 207992, + 10, + 'matan dan on', + 'both combine machine-threat science fiction with stylish action, paranoia about control, and a hero waking up to a hidden system', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 328277, + 10920, + 10, + 'matan dan on', + 'both are james cameron sequels that turn lean sci-fi horror into muscular action while adding protective family bonds', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 10830, + 262645, + 9, + 'matan dan on', + 'both are survival stories about a small group hunted by a nearly unstoppable creature, using tension, body horror, and tactical fear', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 10830, + 165961, + 9, + 'matan dan on', + 'both make an unseen predator terrifying through tight pacing, limited safe spaces, and ordinary professionals slowly realizing they are outmatched', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 10920, + 262645, + 9, + 'matan dan on', + 'both are 80s creature-action films where armed teams, macho confidence, and hostile environments collapse under a smarter monster', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 86274, + 310726, + 10, + 'matan dan on', + 'both are cleanly contained action thrillers where a simple physical constraint, quick decisions, and charismatic leads keep the pressure constant', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 86287, + 188507, + 8, + 'matan dan on', + 'both are buddy-action films where banter, urban danger, and personal grudges make the explosions feel attached to character chemistry', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 188507, + 35522, + 8, + 'matan dan on', + 'both are 80s cop movies that mix action with comedy, using personality clashes, fast dialogue, and a loose soundtrack-driven rhythm', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 46169, + 289109, + 9, + 'matan dan on', + 'both turn war violence into stories of leadership, sacrifice, and moral purpose, with battle scenes that feel physically punishing', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 129185, + 194500, + 8, + 'matan dan on', + 'both deliver grand battle spectacle while tying the fighting to loyalty, sacrifice, and a leader trying to earn a better world', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 311037, + 319602, + 9, + 'matan dan on', + 'both are sincere superhero origins where responsibility, romance, and a fundamentally decent hero matter more than cynicism', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 311038, + 30959, + 9, + 'matan dan on', + 'both strengthen superhero drama by making the hero''s personal burden, city responsibility, and villain psychology feel grounded', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 369458, + 345690, + 8, + 'matan dan on', + 'both treat superpowers as identity problems, using fear, isolation, and prejudice to give the comic-book premise human weight', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 369486, + 311038, + 9, + 'matan dan on', + 'both are early-2000s superhero sequels that improve the action while making the hero''s personal cost sharper', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 210739, + 112205, + 9, + 'matan dan on', + 'both are colorful 90s sci-fi adventures where weird alien bureaucracy, comic timing, and oddball production design keep the world playful', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 69895, + 96593, + 9, + 'matan dan on', + 'both approach alien contact through wonder and human emotion, favoring curiosity, communication, and awe over simple invasion spectacle', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 300229, + 300232, + 5, + 'matan dan on', + 'though both movies are a direct series match, it is a bad recommendation since the weaker parody, thinner new characters, and recycled fairy-tale jokes make it a much less satisfying recommendation', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 300230, + 300232, + 5, + 'matan dan on', + 'though both movies are connected by characters and a world that continue naturally, it is a bad recommendation since the third film loses the sequel''s sharp comic timing and turns the royal story into routine franchise filler', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 130128, + 130130, + 5, + 'matan dan on', + 'though both movies are connected by a family legacy and mafia politics that are relevant, it is a bad recommendation since the third film''s uneven pacing and softer dramatic control fall far below the original', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 130129, + 130130, + 5, + 'matan dan on', + 'though both movies are extensions of michael''s tragic arc, it is a bad recommendation since the final chapter is too uneven in performance and momentum to match the ambition of part ii', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 313459, + 313474, + 4, + 'matan dan on', + 'though both movies are connected by jedi lore, space politics, and franchise mythology, it is a bad recommendation since the stiff dialogue and trade plot make it a weak follow-up for this taste profile', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 313478, + 313476, + 4, + 'matan dan on', + 'though both movies are set inside the same saga and deal with anakin''s path, it is a bad recommendation since the romance writing and flat tension make attack of the clones a poor match', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 313479, + 313474, + 4, + 'matan dan on', + 'though both movies are connected by family mythology, it is a bad recommendation since the prequel''s comic side characters and procedural politics miss the clean adventure feeling of the original trilogy', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 313477, + 313476, + 5, + 'matan dan on', + 'though both movies are adjacent prequels, it is a bad recommendation since the second episode has far less tragic momentum and much more awkward romantic dialogue', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 328285, + 328281, + 4, + 'matan dan on', + 'though both movies are connected by machines, chase structure, and a future-war premise, it is a bad recommendation since the third film feels mechanical without the dread of the original', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 328277, + 328281, + 4, + 'matan dan on', + 'though both movies are connected because they follow the same protector-and-terminator formula, it is a bad recommendation since the emotional stakes and action invention are much weaker than judgment day', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 10830, + 10916, + 3, + 'matan dan on', + 'though both movies are connected by the alien lifecycle and franchise setting, it is a bad recommendation since resurrection turns tight horror into messy exaggeration and loses the original''s control', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 10920, + 10916, + 3, + 'matan dan on', + 'though both movies are continuations of ripley''s story with xenomorph action, it is a bad recommendation since resurrection lacks the military clarity, suspense, and emotional family stakes that made aliens work', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 30959, + 30952, + 2, + 'matan dan on', + 'though both movies are connected by batman branding and shared villain spectacle, it is a bad recommendation since the toy-like camp, constant puns, and flat character work make it a bad recommendation', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 30955, + 30965, + 3, + 'matan dan on', + 'though both movies are colorful batman entries with theatrical villains, it is a bad recommendation since the neon style and shouting performances are much less coherent than burton''s gotham', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 30955, + 30952, + 2, + 'matan dan on', + 'though both movies are based on famous villains and a stylized gotham, it is a bad recommendation since batman and robin pushes the camp so far that the character drama nearly disappears', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 30959, + 30967, + 4, + 'matan dan on', + 'though both movies are set in dark batman worlds, it is a bad recommendation since returns is so focused on grotesque villain spectacle that bruce wayne feels sidelined', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 311037, + 57064, + 1, + 'matan dan on', + 'though both movies are comic-book films about a masked hero balancing identity and action, it is a bad recommendation since catwoman''s plot logic and editing make the comparison collapse', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 311038, + 152426, + 5, + 'matan dan on', + 'though both movies are early-2000s marvel films about lonely heroes, it is a bad recommendation since hulk''s slow pacing and uneven effects make it only a neutral false positive', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 369458, + 57064, + 2, + 'matan dan on', + 'though both movies are connected by the superhero outsider angle, it is a bad recommendation since catwoman has none of x-men''s ensemble tension or social metaphor strength', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 319602, + 57064, + 2, + 'matan dan on', + 'though both movies are superhero star vehicles with transformation scenes, it is a bad recommendation since catwoman lacks the warmth, clarity, and noble center that make superman work', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 210739, + 210741, + 5, + 'matan dan on', + 'though both movies are connected by the returning agents and alien-comedy premise, it is a bad recommendation since the sequel feels smaller, less surprising, and more like a repeat than a fresh discovery', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 165961, + 165976, + 1, + 'matan dan on', + 'though both movies are connected by the shark threat and franchise name, it is a bad recommendation since the revenge premise removes the suspense that made jaws effective', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 96593, + 359297, + 5, + 'matan dan on', + 'though both movies are stories involving ordinary families facing aliens through spielberg spectacle, it is a bad recommendation since war of the worlds is harsher and its abrupt ending weakens the match', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 158999, + 359297, + 5, + 'matan dan on', + 'though both movies are connected by their alien-invasion scale, it is a bad recommendation since war of the worlds has less crowd-pleasing ensemble energy and a more uneven family drama', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 18979, + 20371, + 5, + 'matan dan on', + 'though both movies are focused on turning space danger into rescue drama, it is a bad recommendation since armageddon trades apollo 13''s procedural tension for louder sentiment and less believable detail', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 342685, + 20371, + 5, + 'matan dan on', + 'though both movies are 90s disaster spectacles with teams racing against nature, it is a bad recommendation since armageddon is more manipulative and much less cleanly focused', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 310726, + 20371, + 4, + 'matan dan on', + 'though both movies are promising high-pressure action under a ticking clock, it is a bad recommendation since armageddon is too bloated to match speed''s tight contained momentum', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 69895, + 359297, + 4, + 'matan dan on', + 'though both movies are imagining first contact with intelligence beyond earth, it is a bad recommendation since war of the worlds swaps thoughtful curiosity for panic and a less satisfying resolution', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 301391, + 359297, + 5, + 'matan dan on', + 'though both movies are putting alien fear inside a family crisis, it is a bad recommendation since war of the worlds is louder and less intimate than the farmhouse tension in signs', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 214755, + 155070, + 5, + 'matan dan on', + 'though both movies are connected by future-policing technology and questions about control, it is a bad recommendation since i, robot is more conventional and less conceptually sharp', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 207992, + 155070, + 5, + 'matan dan on', + 'though both movies are involving artificial intelligence and human freedom, it is a bad recommendation since i, robot simplifies the philosophical edge into a safer action mystery', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 207992, + 257296, + 3, + 'matan dan on', + 'though both movies are sci-fi worlds with rebellion and a twisty system, it is a bad recommendation since planet of the apes feels emotionally flat and confusing rather than mind-opening', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 328285, + 257296, + 3, + 'matan dan on', + 'though both movies are connected by the dystopian future and human-versus-nonhuman power shift, it is a bad recommendation since the remake lacks terminator''s clean suspense and purpose', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 271095, + 177328, + 5, + 'matan dan on', + 'though both movies are old-fashioned adventure spectacles with dangerous locations, it is a bad recommendation since king kong''s long runtime makes the excitement feel heavy', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 256632, + 177328, + 5, + 'matan dan on', + 'though both movies are connected by creature spectacle and period adventure, it is a bad recommendation since king kong is much slower and less playful than the pirate fantasy', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 159175, + 177328, + 5, + 'matan dan on', + 'though both movies are pulpy adventure films with exotic danger, it is a bad recommendation since king kong''s scale and length bury the lean serial-movie energy', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 222339, + 177328, + 5, + 'matan dan on', + 'though both movies are mixing creature thrills with adventure spectacle, it is a bad recommendation since king kong feels heavier and less charming than the mummy''s relaxed pace', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 222339, + 365498, + 3, + 'matan dan on', + 'though both movies are trying period adventure comedy with gadgets and villains, it is a bad recommendation since wild wild west is noisy where the mummy is breezy', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 256632, + 365498, + 3, + 'matan dan on', + 'though both movies are costumed action-comedies built around swagger and set pieces, it is a bad recommendation since wild wild west turns the spectacle into clutter', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 210739, + 365498, + 3, + 'matan dan on', + 'though both movies are connected by the will smith genre-comedy connection, it is a bad recommendation since the western gadgets and jokes feel much less clever than men in black''s alien bureaucracy', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 35522, + 365498, + 3, + 'matan dan on', + 'though both movies are star-driven action comedies, it is a bad recommendation since wild wild west lacks the loose comic rhythm and soundtrack personality that help beverly hills cop', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 112205, + 365498, + 4, + 'matan dan on', + 'though both movies are using colorful sci-fi design and broad humor, it is a bad recommendation since wild wild west is more chaotic than imaginative', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 26847, + 365498, + 4, + 'matan dan on', + 'though both movies are connected by their western setting, gadgets, and comic adventure, it is a bad recommendation since wild wild west is louder and less disciplined', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 170522, + 319416, + 3, + 'matan dan on', + 'though both movies are game-like family adventures with strange worlds, it is a bad recommendation since super mario bros. barely turns the source material into a satisfying story', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 312150, + 319416, + 3, + 'matan dan on', + 'though both movies are aiming for kid-friendly gadget adventure, it is a bad recommendation since super mario bros. is too awkward and grimy to match spy kids'' playful invention', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 207157, + 319416, + 3, + 'matan dan on', + 'though both movies are using cartoonish 90s effects and exaggerated worlds, it is a bad recommendation since super mario bros. feels bizarre without the mask''s comic control', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 279888, + 319416, + 3, + 'matan dan on', + 'though both movies are leaning on mechanical fantasy and bright design, it is a bad recommendation since super mario bros. has far less charm and adventure clarity', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 232425, + 319416, + 2, + 'matan dan on', + 'though both movies are connected by strange production design, it is a bad recommendation since super mario bros. lacks the musical structure and emotional identity of nightmare', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 300229, + 297650, + 4, + 'matan dan on', + 'though both movies are dreamworks animated comedies full of pop-culture jokes, it is a bad recommendation since shark tale feels thinner and more dated than shrek''s fairy-tale parody', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 300230, + 297650, + 4, + 'matan dan on', + 'though both movies are connected by studio style and celebrity comedy overlap, it is a bad recommendation since shark tale cannot match shrek 2''s sharper jokes or stronger emotional payoff', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 113504, + 297650, + 3, + 'matan dan on', + 'though both movies are underwater animated films, it is a bad recommendation since shark tale replaces finding nemo''s tender parent-child rescue with noisy celebrity references', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 218415, + 297650, + 4, + 'matan dan on', + 'though both movies are building comic worlds around nonhuman communities, it is a bad recommendation since shark tale''s story is much weaker and its jokes age faster', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 48950, + 297650, + 4, + 'matan dan on', + 'though both movies are anthropomorphizing small or hidden societies, it is a bad recommendation since shark tale has less underdog structure and much less visual cleverness', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 155213, + 297650, + 5, + 'matan dan on', + 'though both movies are early-2000s animal ensemble comedies, it is a bad recommendation since shark tale''s pop-culture focus makes it a neutral rather than strong recommendation', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 199255, + 297650, + 5, + 'matan dan on', + 'though both movies are connected by the dreamworks animal-comedy energy, it is a bad recommendation since shark tale is more dependent on celebrity voices than character momentum', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 337166, + 310130, + 4, + 'matan dan on', + 'though both movies are mixing childhood nostalgia with animated characters, it is a bad recommendation since space jam''s novelty is far thinner than toy story''s friendship story', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 337168, + 310130, + 4, + 'matan dan on', + 'though both movies are revisiting toys, games, and childhood culture, it is a bad recommendation since space jam lacks toy story 2''s emotional ideas about abandonment and purpose', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 364161, + 310130, + 5, + 'matan dan on', + 'though both movies are combining live action with classic cartoons, it is a bad recommendation since space jam has a much thinner mystery and mostly works as a novelty', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 207157, + 310130, + 5, + 'matan dan on', + 'though both movies are using live-action cartoon physics, it is a bad recommendation since space jam is built more around branding than the mask''s character-driven wish fulfillment', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 158927, + 310130, + 4, + 'matan dan on', + 'though both movies are family-friendly action comedies with animated exaggeration, it is a bad recommendation since space jam has little of the family conflict that makes incredibles land', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 32178, + 258509, + 5, + 'matan dan on', + 'though both movies are disney musical romances, it is a bad recommendation since pocahontas has thinner characterization and a simplified historical frame that weakens the recommendation', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 191246, + 258509, + 5, + 'matan dan on', + 'though both movies are using songs and a serious animated tone, it is a bad recommendation since pocahontas does not reach the same mythic emotional force as the lion king', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 222112, + 258509, + 5, + 'matan dan on', + 'though both movies are disney stories about identity and duty, it is a bad recommendation since pocahontas feels less precise in character growth and action momentum', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 192017, + 258509, + 5, + 'matan dan on', + 'though both movies are centering a young woman drawn toward another world, it is a bad recommendation since pocahontas has less energy and personality than the little mermaid', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 325098, + 258509, + 5, + 'matan dan on', + 'though both movies are nature-focused disney dramas with big songs, it is a bad recommendation since pocahontas feels more simplified and less emotionally exciting', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 152724, + 258509, + 5, + 'matan dan on', + 'though both movies are visually serious disney films about outsiders and prejudice, it is a bad recommendation since pocahontas softens the conflict in ways that make it less powerful', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 9795, + 258509, + 5, + 'matan dan on', + 'though both movies are 90s disney musicals with romance across cultures, it is a bad recommendation since pocahontas misses aladdin''s comic spark and stronger side characters', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 148200, + 148203, + 5, + 'matan dan on', + 'though both movies are connected by family, traps, and christmas chaos, it is a bad recommendation since the sequel repeats the formula without the same freshness or tight suburban setup', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 221259, + 148203, + 5, + 'matan dan on', + 'though both movies are broad 90s family comedies built on adult-child chaos, it is a bad recommendation since home alone 2 feels more like an inflated repeat', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 248878, + 148203, + 5, + 'matan dan on', + 'though both movies are using clever children and family separation, it is a bad recommendation since home alone 2 has less emotional charm and more recycled prank machinery', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 360723, + 303545, + 5, + 'matan dan on', + 'though both movies are connecting 80s teen romance to comedy, it is a bad recommendation since sixteen candles feels more dated and less warmly balanced', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 46322, + 303545, + 5, + 'matan dan on', + 'though both movies are connected by the high-school setting and john hughes voice, it is a bad recommendation since sixteen candles has less ensemble insight and more uncomfortable aging', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 111442, + 303545, + 5, + 'matan dan on', + 'though both movies are 80s teen comedies about social pressure, it is a bad recommendation since sixteen candles is less sharp and less generous than ferris bueller', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 209133, + 303545, + 5, + 'matan dan on', + 'though both movies are studying high-school status and embarrassment, it is a bad recommendation since sixteen candles lacks mean girls'' satirical precision and modern bite', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 644, + 303545, + 5, + 'matan dan on', + 'though both movies are teen romances with social humiliation, it is a bad recommendation since sixteen candles feels more dated and less witty than 10 things i hate about you', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 24430, + 24429, + 5, + 'matan dan on', + 'though both movies are connected by spy parody, costumes, and recurring characters, it is a bad recommendation since goldmember stretches familiar jokes thinner than the first film', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 24432, + 24429, + 5, + 'matan dan on', + 'though both movies are connected because it keeps dr. evil and the sequel''s silly chemistry, it is a bad recommendation since goldmember feels more recycled and less sharp', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 24430, + 9125, + 5, + 'matan dan on', + 'though both movies are broad genre parodies, it is a bad recommendation since airplane''s relentless deadpan gag density can feel exhausting rather than playful', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 16006, + 9125, + 5, + 'matan dan on', + 'though both movies are quote-heavy absurd comedies, it is a bad recommendation since airplane is more rapid-fire and less character-based than anchorman', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 95078, + 5573, + 5, + 'matan dan on', + 'though both movies are depending on jim carrey''s extreme physical comedy, it is a bad recommendation since ace ventura is more abrasive and less broadly lovable', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 207157, + 5573, + 5, + 'matan dan on', + 'though both movies are showing carrey at full cartoon volume, it is a bad recommendation since ace ventura has less visual imagination and a rougher comic style', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 189233, + 5573, + 5, + 'matan dan on', + 'though both movies are carrey comedies about exaggerated personalities, it is a bad recommendation since ace ventura is less structured around a satisfying emotional lesson', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 89057, + 227549, + 5, + 'matan dan on', + 'though both movies are outsider comedies with oddball confidence, it is a bad recommendation since napoleon dynamite is so dry and slow that it is only a neutral match', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 16006, + 227549, + 5, + 'matan dan on', + 'though both movies are quote-machine comedies, it is a bad recommendation since napoleon dynamite''s tiny deadpan rhythm is much narrower than anchorman''s ensemble chaos', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 68232, + 127627, + 1, + 'matan dan on', + 'though both movies are romantic star vehicles built around personality clashes, it is a bad recommendation since gigli''s tone and dialogue make the relationship impossible to invest in', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 263360, + 127627, + 1, + 'matan dan on', + 'though both movies are mainstream romances about unlikely chemistry, it is a bad recommendation since gigli fails where pretty woman succeeds by never making the central couple believable', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 235790, + 127627, + 1, + 'matan dan on', + 'though both movies are asking the viewer to enjoy a celebrity romance fantasy, it is a bad recommendation since gigli''s awkward tone makes it a very poor recommendation', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 223711, + 127627, + 2, + 'matan dan on', + 'though both movies are involving romantic messiness and bad choices, it is a bad recommendation since gigli lacks the comic timing and charm that keep my best friend''s wedding watchable', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 195300, + 127627, + 1, + 'matan dan on', + 'though both movies are romance ensembles concerned with messy love, it is a bad recommendation since gigli has none of love actually''s tonal variety or warmth', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 187191, + 57064, + 2, + 'matan dan on', + 'though both movies are female-led studio films with makeover imagery, it is a bad recommendation since catwoman turns empowerment into incoherent superhero posing', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 215507, + 57064, + 2, + 'matan dan on', + 'though both movies are involving an underestimated woman entering a heightened action-comedy world, it is a bad recommendation since catwoman wastes the premise with weak plotting', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 84941, + 57064, + 2, + 'matan dan on', + 'though both movies are connected by the fashion surface and female lead, it is a bad recommendation since catwoman has none of the workplace tension or character growth', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 30967, + 30952, + 2, + 'matan dan on', + 'though both movies are exaggerated batman sequels, it is a bad recommendation since batman and robin removes even more dramatic weight and leaves mostly puns and plastic spectacle', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 30965, + 30952, + 2, + 'matan dan on', + 'though both movies are connected by the neon villains and camp style, it is a bad recommendation since batman and robin pushes those traits into an exhausting low point', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 40187, + 57064, + 2, + 'matan dan on', + 'though both movies are comic-book action films with leather costumes and nocturnal heroes, it is a bad recommendation since catwoman lacks blade''s cool identity and momentum', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 40187, + 152426, + 5, + 'matan dan on', + 'though both movies are marvel-adjacent early superhero films, it is a bad recommendation since hulk is slower, heavier, and less satisfying as action', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 345690, + 152426, + 5, + 'matan dan on', + 'though both movies are trying to make superheroes psychologically serious, it is a bad recommendation since hulk''s pacing and effects make the drama harder to enjoy', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 313459, + 313476, + 4, + 'matan dan on', + 'though both movies are connected by jedi mythology and galaxy politics, it is a bad recommendation since attack of the clones is too stiff to recommend strongly to fans of the original', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 290070, + 131240, + 5, + 'matan dan on', + 'though both movies are major historical prestige films, it is a bad recommendation since gone with the wind''s length and dated worldview make it only a cautious neutral match', + null +); + +INSERT IGNORE INTO movies_recommendations +values ( + 56044, + 131240, + 5, + 'matan dan on', + 'though both movies are classic wartime romances, it is a bad recommendation since gone with the wind is much longer and more dated than casablanca''s clean sacrifice story', + null +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 644, + 66194, + 10, + 'Noa', + 'Both are smart, funny teen comedies with strong female leads and a very rewatchable romantic style', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 1038, + 151616, + 10, + 'Noa', + 'Both are light romantic comedies with a fun early-2000s feeling and easy chemistry', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 151616, + 263360, + 10, + 'Noa', + 'Both are popular romantic comedies with playful dating energy and a light feel-good style', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 46878, + 283410, + 10, + 'Noa', + 'Both are romantic comedies with messy relationships, awkward situations and a familiar comfort-movie style', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 62460, + 33492, + 10, + 'Noa', + 'Both are emotional food-centered dramas with a warm atmosphere and strong character relationships', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 33492, + 10702, + 8, + 'Noa', + 'Both focus on women going through personal change while dealing with work, independence, and meaningful relationships', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 34104, + 97727, + 10, + 'Noa', + 'Both tell heartfelt stories about misunderstood outsider characters struggling to connect with others', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 31715, + 67395, + 10, + 'Noa', + 'Both explore powerful female relationships, emotional struggles, and personal growth across different stages of life', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 118980, + 10702, + 9, + 'Noa', + 'Both focus on emotionally complex relationships and personal growth in realistic everyday settings', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 12744, + 96593, + 10, + 'Noa', + 'Both tell emotional stories about unusual visitors who form deep bonds with people and eventually have to say goodbye', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 66194, + 283410, + 10, + 'Noa', + 'Both are fun romantic comedies with strong female characters and easy mainstream humor', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 74259, + 97727, + 10, + 'Noa', + 'Both focus on misunderstood outsider characters who challenge the conformity of suburban society through unusual romantic relationships', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 59578, + 32180, + 9, + 'Noa', + 'Both are fantasy family movies with a magical style and strong visual appeal', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 96593, + 65811, + 10, + 'Noa', + 'Both focus on emotionally driven encounters between ordinary people and mysterious extraterrestrial beings', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 149287, + 131885, + 10, + 'Noa', + 'Both are adventurous fantasy films that capture childhood imagination through treasure hunts, escapism, and emotional family themes', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 131885, + 337166, + 8, + 'Noa', + 'Both focus on groups of loyal friends who go on imaginative adventures filled with danger, humor, and emotional bonds', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139657, + 139650, + 10, + 'Noa', + 'As a direct sequel, it naturally continues the magical world, characters, and adventures of the first film while expanding the mystery and maintaining the same successful atmosphere', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139650, + 139655, + 10, + 'Noa', + 'As a successful sequel, it continues the story and characters while introducing a darker and more mature magical atmosphere', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139655, + 139652, + 10, + 'Noa', + 'This is a strong next step in the series, with darker tone and bigger stakes', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139652, + 139654, + 10, + 'Noa', + 'As a direct sequel, it expands the darker magical world and the escalating conflict surrounding Harry and Voldemort', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30959, + 30955, + 9, + 'Noa', + 'Both offer dark cinematic interpretations of Batman, combining gothic atmosphere, crime, and the transformation of Bruce Wayne into a hero', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30955, + 30967, + 10, + 'Noa', + 'As a direct continuation, it preserves the gothic visual style, dark tone, and eccentric villains that defined the first Batman film', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30967, + 30976, + 10, + 'Noa', + 'Both focus on the darker emotional side of Batman through gothic visuals, psychological conflict, and mysterious villains', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + + 30976, + 30951, + 10, + 'Noa', + 'As part of the same animated Batman series, it naturally continues the noir inspired Gotham atmosphere and emotionally driven storytelling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 10830, + 10920, + 9, + 'Noa', + 'As a direct sequel featuring the same main character, it continues Ripley’s struggle for survival while expanding the terrifying alien universe of the original film', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 10920, + 40199, + 9, + 'Noa', + 'Both are dark science-fiction films that combine futuristic worlds, tension, and themes of survival and humanity', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 21213, + 214755, + 9, + 'Noa', + 'Both combine emotional storytelling with futuristic technology-driven worlds that challenge ideas of humanity and personal choice', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 25192, + 56871, + 9, + 'Noa', + 'Both star Leonardo DiCaprio as ambitious and charismatic men navigating fame, obsession, and extraordinary lives based on true stories', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 56871, + 328272, + 9, + 'Noa', + 'Both are Steven Spielberg films that combine emotionally engaging storytelling with resourceful protagonists navigating unusual situations', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 129185, + 340652, + 9, + 'Noa', + 'Both are large historical epics with battles, honor and dramatic stakes', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 46169, + 129185, + 9, + 'Noa', + 'Both focus on brave fighters who become symbols of freedom while dealing with betrayal, loss, and violent battles against corrupt leaders', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 39551, + 289109, + 9, + 'Noa', + 'Both focus on soldiers trapped in extremely dangerous war situations where teamwork and survival become the main goal', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 40199, + 214755, + 9, + 'Noa', + 'Both explore futuristic societies where technology and surveillance blur the line between humanity, control, and free choice', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 100130, + 290070, + 9, + 'Noa', + 'Both are emotional Steven Spielberg war dramas showing how ordinary people struggle to survive and preserve humanity during World War II', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 869, + 209158, + 8, + 'Noa', + 'Both focus on people living on the margins of society while dealing with unstable relationships, risky choices, and harsh urban environments', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 113506, + 34104, + 9, + 'Noa', + 'Both star Johnny Depp as imaginative and unconventional characters who form emotional connections with people around them', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 67395, + 14477, + 9, + 'Noa', + 'Both are emotional historical dramas directed by Steven Spielberg that focus on racism, oppression, and the struggle for freedom', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 10702, + 8183, + 7, + 'Noa', + 'Both are emotional relationship dramas about people struggling between personal desires and the expectations placed on them by society', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 8183, + 113506, + 7, + 'Noa', + 'Both are emotional period dramas about restrained relationships, personal sacrifice, and characters struggling with unfulfilled desires', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 14477, + 290070, + 9, + 'Noa', + 'Both are emotional historical dramas directed by Steven Spielberg about people struggling for freedom and humanity', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 32707, + 336445, + 9, + 'Noa', + 'Both tell emotional stories about unconventional writers struggling with identity, passion, and the pressures of society', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 41518, + 56871, + 9, + 'Noa', + 'Both tell true stories about intelligent and charming men who live outside the law and eventually face the consequences of their choices', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 56304, + 131780, + 9, + 'Noa', + 'Both are Martin Scorsese crime dramas about ambitious men rising in the mafia world while greed, violence, and betrayal slowly destroy their lives', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 131780, + 297838, + 9, + 'Noa', + 'Both are character driven crime dramas about men adapting to harsh systems shaped by violence, power, and survival', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 123849, + 209158, + 9, + 'Noa', + 'Both are Martin Scorsese crime dramas about violent street life in New York and characters struggling with loyalty, power, and survival', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 123435, + 210511, + 9, + 'Noa', + 'Both are psychological thrillers that play with control, identity and uncertainty', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 69812, + 247579, + 9, + 'Noa', + 'Both focus on psychologically intense mysteries where the main character slowly uncovers the truth while questioning reality', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 54209, + 291698, + 9, + 'Noa', + 'Both focus on psychologically disturbing criminals whose actions create constant fear, tension, and emotional pressure', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 94741, + 318388, + 9, + 'Noa', + 'Both are Steven Spielberg road thrillers built around intense chases, constant tension, and characters trapped in dangerous situations on the road', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 97727, + 70959, + 9, + 'Noa', + 'Both have Tim Burton style, outsider emotion and a dark fairy tale feeling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 97360, + 304862, + 9, + 'Noa', + 'Both have a gothic Tim Burton feeling and Johnny Depp in a strange world', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 120506, + 304862, + 9, + 'Noa', + 'Both are dark period mysteries with murder, atmosphere and gothic visuals', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 47130, + 326155, + 9, + 'Noa', + 'Both are dark Martin Scorsese dramas about emotionally exhausted men working night jobs while slowly losing their mental stability in violent New York streets', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 112290, + 291698, + 9, + 'Noa', + 'Both are dark David Fincher films about psychologically unstable characters, violence, and people losing control within a bleak modern society', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 61751, + 359297, + 7, + 'Noa', + 'Both are sci-fi survival stories about fear and survival in collapsing worlds', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 70959, + 218219, + 7, + 'Noa', + 'Both are emotional fantasy animations about characters caught between the human world and supernatural forces', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 65811, + 165961, + 9, + 'Noa', + 'Both are suspenseful Steven Spielberg films about ordinary people facing mysterious and terrifying forces beyond their control', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 67388, + 270971, + 9, + 'Noa', + 'Both are sports related dramas with ambition, ego and strong character conflict', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 85871, + 130953, + 9, + 'Noa', + 'Both are classic James Bond movies known for their stylish spy missions, memorable villains, and entertaining action', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 92573, + 130953, + 9, + 'Noa', + 'Both are classic early James Bond movies starring Sean Connery and featuring stylish spy missions and villains', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 120574, + 92573, + 9, + 'Noa', + 'Both are classic early James Bond films starring Sean Connery and focusing on stylish spy missions and Cold War espionage', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 117314, + 312170, + 9, + 'Noa', + 'Both capture the entertaining Roger Moore Bond style through international spy adventures, action, and charismatic humor', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 130953, + 332065, + 9, + 'Noa', + 'Both continue the classic Bond formula with international spy missions, memorable villains, and luxurious adventure settings', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 130945, + 335336, + 9, + 'Noa', + 'Both are Pierce Brosnan James Bond films, stylish action, and modern international spy threats', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 86263, + 368418, + 9, + 'Noa', + 'Both are modern Pierce Brosnan Bond movies known for high-tech spy missions, stylish action, and international threats', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 1390, + 318388, + 9, + 'Noa', + 'Both are chaotic Steven Spielberg films about ordinary people getting caught in increasingly out-of-control situations involving long pursuits and public disorder', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 7842, + 230947, + 9, + 'Noa', + 'Both focus on unusual and emotionally chaotic experiences happening in the unique atmosphere of New York City', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30686, + 330670, + 9, + 'Noa', + 'Both are Leonardo DiCaprio movies about troubled teenagers struggling with difficult family situations and personal instability', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 15187, + 240327, + 7, + 'Noa', + 'Both create dark and suspenseful atmospheres centered around deadly threats that slowly spread fear and panic', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 20253, + 34104, + 9, + 'Noa', + 'Both star Johnny Depp as quirky and emotionally sensitive outsider characters in unusual and dreamlike romantic stories', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 28631, + 90837, + 6, + 'Noa', + 'Both are surreal short films that create psychological tension through strange and unsettling situations', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 56282, + 257744, + 8, + 'Noa', + 'Both tell emotional and romantic stories about people struggling with loneliness and personal relationships', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 65522, + 247579, + 8, + 'Noa', + 'Both are tense kidnapping/home invasion style thrillers with contained suspense', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 69469, + 212104, + 8, + 'Noa', + 'Both are dialogue-driven relationship dramas focused on emotionally awkward characters and intimate personal conversations', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 80969, + 244421, + 8, + 'Noa', + 'Both are lighter mainstream comedies with sentimental family or relationship elements', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 22651, + 256839, + 6, + 'Noa', + 'Both focus on fear, survival, and mysterious non-human threats in tense sci-fi settings', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 58084, + 210511, + 8, + 'Noa', + 'Both create psychological tension through confused protagonists dealing with distorted memories and uncertain reality', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 116556, + 210511, + 8, + 'Noa', + 'Both are Christopher Nolan thrillers with mystery structure and psychological tension', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 121552, + 350189, + 8, + 'Noa', + 'Both use supernatural horror elements and a darker genre mood', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 113459, + 56304, + 8, + 'Noa', + 'Both involve crime, court or justice themes and strong central characters', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 14132, + 14157, + 8, + 'Noa', + 'Both are part of the American Pie comedy world and share the same humor style', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 109421, + 370017, + 8, + 'Noa', + 'Both star Vin Diesel in fast paced action movies focused on adrenaline, rebellious characters, and extreme high risk situations', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 34077, + 350424, + 8, + 'Noa', + 'Both combine emotional storytelling with dreamlike elements involving memory, time, and personal identity', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 142491, + 311038, + 8, + 'Noa', + 'Both are comic book action movies with fantasy elements and heroic conflict', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 46167, + 45312, + 8, + 'Noa', + 'Both are dark dramas about desperate people living on the margins of society and becoming involved in dangerous criminal situations', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 121852, + 243587, + 6, + 'Noa', + 'Both are quirky independent comedies built around eccentric characters and awkward, unusual situations', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 68065, + 319027, + 8, + 'Noa', + 'Both are quiet independent dramas focused on personal emotions, everyday struggles, and intimate human relationships', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 116358, + 200521, + 8, + 'Noa', + 'Both focus on emotionally vulnerable people trying to deal with isolation, relationships, and personal struggles', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 105851, + 245699, + 7, + 'Noa', + 'Both are light relationship comedies with a playful mainstream style', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 32180, + 9813, + 8, + 'Noa', + 'Both are family fantasy stories with music, adventure and a magical feel', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 849, + 337166, + 8, + 'Noa', + 'Both are family friendly animated films built around memorable characters and light adventure', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 9813, + 379327, + 8, + 'Noa', + 'Both are family adventure stories with fantasy like excitement and a classic heroic feeling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 70960, + 231917, + 8, + 'Noa', + 'Both combine dark mystery elements with unusual and suspenseful stories involving death and strange situations', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 83470, + 256839, + 8, + 'Noa', + 'Both are intense survival horror films about groups trapped in darkness while trying to survive deadly creatures', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 78877, + 240327, + 7, + 'Noa', + 'Both are horror or dark suspense movies with a threatening atmosphere', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 89441, + 218219, + 7, + 'Noa', + 'Both are emotionally driven Japanese films with atmospheric storytelling and reflective themes', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 100241, + 282161, + 7, + 'Noa', + 'Both are quiet European dramas focused on personal emotions, relationships, and reflective storytelling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 101687, + 76231, + 7, + 'Noa', + 'Both are unconventional films about creativity, identity, and people trying to live outside ordinary expectations', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 102311, + 837, + 7, + 'Noa', + 'Both create a poetic and reflective atmosphere through emotional and visually expressive storytelling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 103755, + 254128, + 6, + 'Noa', + 'Both are intimate emotional dramas focused on personal relationships, emotional tension, and reflective storytelling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 104484, + 10702, + 4, + 'Noa', + 'Despite similar emotional themes, the storytelling style is very different', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 105587, + 31715, + 5, + 'Noa', + 'While both include strong emotional moments, they focus on very different kinds of relationships', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 110509, + 33492, + 4, + 'Noa', + 'Although both deal with emotional relationships, Feel Neil seems much more small-scale and indie, while Bella Martha has a warmer food-centered story', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 113814, + 34104, + 4, + 'Noa', + 'Despite both dealing with personal struggles and emotional healing, The Fire Inside is much more intense and melancholic while Benny & Joon remains lighthearted and eccentric', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 116829, + 46878, + 4, + 'Noa', + 'Despite both involving characters dealing with insecurity and personal failure, one film is significantly more upbeat while the other embraces darker humor', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 122277, + 59578, + 4, + 'Noa', + 'Despite both featuring eccentric characters and unusual humor, one film is much darker and more grounded while the other is highly fantastical and family-oriented', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 126792, + 62460, + 4, + 'Noa', + 'Despite both focusing on emotional relationships and personal change, one film is much warmer and more optimistic while the other is heavier and emotionally restrained', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 134680, + 66194, + 3, + 'Noa', + 'Despite both exploring friendship and self discovery, one film feels emotionally heavy and restrained while the other is energetic and highly comedic', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 138142, + 67395, + 4, + 'Noa', + 'Despite both focusing on hardship and personal struggle, one film is far more emotionally powerful and expansive while the other remains smaller and more restrained', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 142881, + 74259, + 5, + 'Noa', + 'Despite both mixing humor with outsider personalities, the emotional atmosphere and presentation differ significantly', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 146758, + 83470, + 5, + 'Noa', + 'Despite both centering on characters searching for meaning and connection, the overall mood and storytelling style differ significantly', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 152856, + 96593, + 3, + 'Noa', + 'Despite both focusing on loneliness and the need for connection, the emotional tone and target audience are very different', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 63125, + 97727, + 5, + 'Noa', + 'Despite both portraying emotional vulnerability and personal relationships, the overall style and atmosphere are far apart', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 65602, + 118980, + 4, + 'Noa', + 'Despite both dealing with personal struggles and relationships, the films create very different emotional experiences', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 65762, + 151616, + 5, + 'Noa', + 'Despite both centering on comedic misunderstandings between characters, one story is much more cynical and bizarre in its execution', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 75646, + 240327, + 5, + 'Noa', + 'Despite both focusing on paranoia and unsettling discoveries, one story relies more on suspense and investigation than horror elements', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 79593, + 254128, + 4, + 'Noa', + 'Despite both focusing on intimacy and emotionally complicated relationships, one film is far more explicit and psychologically heavy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 79678, + 256839, + 5, + 'Noa', + 'Despite both portraying groups dealing with fear and uncertainty, one film creates a much more intense and aggressive atmosphere', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 82868, + 263360, + 4, + 'Noa', + 'Despite both dealing with characters redefining themselves through human connection, one film is grounded in cultural and emotional realism while the other is intentionally escapist', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 85117, + 283410, + 5, + 'Noa', + 'Despite both portraying characters struggling to understand what they want romantically, one film focuses much more on emotional frustration and confusion', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 86399, + 7842, + 5, + 'Noa', + 'Despite both portraying characters struggling to fit into unfamiliar situations, one film feels far more tense and surreal', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 89823, + 8183, + 4, + 'Noa', + 'Despite both portraying elegant social worlds hiding emotional tension, one movie is significantly colder and less emotionally engaging', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 93829, + 10830, + 4, + 'Noa', + 'Despite both featuring characters trapped in tense and unfamiliar situations, one story is much more abstract and bizarre in its execution', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 96193, + 10920, + 4, + 'Noa', + 'Despite both involving fear, tension, and survival, Aliens builds suspense through military science fiction whereas La Drive de l''Atlantic focuses more on emotional conflict and discomfort', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 99875, + 1121, + 5, + 'Noa', + 'Despite both portraying characters adapting to unfamiliar environments, 1492: Conquest of Paradise relies heavily on grand historical drama while Emigranti is much more grounded and restrained', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 104266, + 1390, + 4, + 'Noa', + 'Both include survival instincts, but the sense of realism is different between the two movies, so the match is interesting but not natural enough', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 105697, + 14477, + 4, + 'Noa', + 'Despite both focusing on power struggles and moral conflicts, Amistad is rooted in historical injustice while The Exec deals with corporate ambition and competition', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 113547, + 20253, + 5, + 'Noa', + 'Despite both featuring eccentric characters and uncomfortable romantic dynamics, Arizona Dream is much more surreal and dreamlike while The Fine Line Between Cute and Creepy focuses on awkward realism', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 114955, + 21213, + 5, + 'Noa', + 'Both movies deal with moral choices and personal struggles, but the storytelling style and suspense level are very different', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 123371, + 22651, + 4, + 'Noa', + 'Despite both focusing on pressure and strained personal relationships, The Astronaut''s Wife builds tension through paranoia and science fiction elements that are absent from Game Day', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 129887, + 14132, + 4, + 'Noa', + 'Despite both centering on friendship and youthful competition, Goal Club is far more sports-oriented while American Pie 2 focuses mainly on partying and romance', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 133608, + 1038, + 5, + 'Noa', + 'Despite both involving characters learning about adulthood and relationships, 13 Going On 30 is significantly more optimistic and mainstream than The Great Gabble', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 137958, + 644, + 5, + 'Noa', + 'Despite both focusing on emotionally conflicted characters, Hammer and Cycle 2004 is much more dark satire while 10 Things I Hate About You 1999 leans into sentimental storytelling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 143582, + 215875, + 4, + 'Noa', + 'While both use action and tension, Here Comes Dr. Tran feels far too chaotic and comedic compared to the grounded espionage style of Mission: Impossible', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 146943, + 215879, + 5, + 'Noa', + 'Although both involve characters under pressure and unstable relationships, Hitting Zero is much more awkward and emotionally restrained compared to the exaggerated action style of Mission: Impossible II', +NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 2057, + 215880, + 4, + 'Noa', + 'While both involve awkward relationships, 2wks, 1yr 2002 feels far more dark satire than the more sentimental storytelling approach of Mission: Impossible III 2006', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 2352, + 214755, + 4, + 'Noa', + 'Although both deal with uncertainty and pressure, 36K feels much more abstract and awkward compared to the fast paced futuristic thriller style of Minority Report', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 2656, + 200521, + 5, + 'Noa', + 'Although both deal with personal struggles and relationships, 5 Card Stud is much more awkward and uneven compared to Magnolia', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 4948, + 350424, + 4, + 'Noa', + 'Although both explore personal confusion and relationships, Able''s House Is Green is far more awkward and low-key compared to Vanilla Sky', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 5889, + 310168, + 4, + 'Noa', + 'While both try to create a fun experience, the classic comedy style of Act Your Age feels completely different from the documentary spectacle of Space Station 3D', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 8820, + 280270, + 4, + 'Noa', +'Although both deal with lonely characters trying to improve their lives, Ai-Fak lacks the inspirational sports energy that defines Rocky', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 16730, + 280281, + 4, + 'Noa', +'While both involve comeback-style stories, Angel on My Shoulder is far more lighthearted and supernatural compared to the grounded drama of Rocky II', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 19433, + 280282, + 5, + 'Noa', + 'Although both involve characters overcoming difficulties, Aquarium lacks the competitive energy that makes Rocky III appealing', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 24235, + 280284, + 5, + 'Noa', + 'Although both explore identity struggles, Aunt Tiger 2000 relies more on grounded realism whereas Rocky IV 1985 emphasizes fantasy driven storytelling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 24259, + 280305, + 4, + 'Noa', + 'Although both focus on personal insecurity and people trying to rebuild themselves, Aura is much quieter and emotionally distant compared to the dramatic motivational style of Rocky V', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 28085, + 28631, + 5, + 'Noa', + 'Despite both focusing on emotional relationships and personal reflection, Bakit may kahapon pa? is too serious and restrained to feel like a natural match for Balloon', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 33965, + 38743, + 4, + 'Noa', + 'Even though both center on unusual characters, Bendita seas 1948 is driven more by abstract storytelling while Birthmark, The 1987 is built around traditional narrative structure', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 38743, + 198835, + 4, + 'Noa', +'While both deal with disturbing situations, the quieter drama style of The Birthmark makes it a weak follow-up to Macabre Pair of Shorts', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 45377, + 258132, + 5, + 'Noa', + 'Although both involve personal struggles and isolation, Boy lacks the psychological suspense that makes Plenilunio appealing', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 50012, + 268034, + 4, + 'Noa', + 'Although both involve emotionally frustrated characters, Burning the Grump lacks the mystery and tension that define The Puzzle', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 51413, + 319710, + 4, + 'Noa', + 'Despite both creating uneasy emotional atmospheres, C''est le vent is too quiet and reflective to satisfy someone expecting the darker supernatural tension of Superstition', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 54879, + 320669, + 4, + 'Noa', + 'Despite both focusing on unusual characters, Card Sharks (2001/II) 2001 is much more abstract storytelling while Sveto mesto 1990 leans into traditional narrative structure', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 59656, + 9813, + 5, + 'Noa', + 'Both films deal with social pressure, but Charlie the Ox 2004 approaches it through grounded realism while Aladdin in Nasira''s Revenge 2001 focuses on fantasy driven storytelling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 60408, + 13343, + 4, + 'Noa', + 'Despite both involving characters dealing with responsibility and difficult situations, Chek is far too grounded and restrained to satisfy someone expecting the action and excitement of Amazing Adventures of Spider-Man', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 70507, + 13395, + 4, + 'Noa', + 'Even though both center on outsider protagonists, Copi, je t''aime 2002 is driven more by quiet introspection while Amazing Stories: Book Four 1992 is built around fast paced spectacle', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 74133, + 13396, + 5, + 'Noa', + 'While both deal with difficult experiences and emotional tension, the dark realistic tone of Crutch clashes with the lighter fantasy style of Amazing Stories: Book One', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 78702, + 405119, + 3, + 'Noa', + 'Although both follow characters dealing with complicated situations, Dari Jemapoh ke Manchestee lacks the mystery and detective atmosphere of Sherlock Holmes', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 96681, + 406158, + 4, + 'Noa', + 'Despite both involving characters dealing with responsibility and isolation, Earl''s Your Uncle lacks the action and mainstream energy that people would expect after Spider-Man', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 99633, + 406411, + 5, + 'Noa', + 'Although both involve science fiction and conflict, Elysium lacks the large scale adventure and action that define Star Wars: Clone Wars', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 102108, + 359297, + 4, + 'Noa', + 'Although both involve large scale production and adventure themes, Epic at Sea is too documentary focused to satisfy someone expecting the suspense and action of War of the Worlds', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 137709, + 383395, + 5, + 'Noa', + 'Although both involve patriotic action heroes battling large threats, Halo lacks the simple adventurous tone that defines Captain America', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 400853, + 393012, + 4, + 'Noa', + 'Although both involve central characters dealing with pressure and expectations, Parenthood lacks the adventurous comic-book energy that defines Iron Man', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 406158, + 398232, + 5, + 'Noa', + 'Although both involve lovable outsiders trying to fit into normal society, Spider-Man lacks the light comedic tone that defines Mork & Mindy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 406411, + 398571, + 5, + 'Noa', + 'While both center on leadership and pressure, the futuristic war setting of Star Wars: Clone Wars clashes with the grounded workplace comedy style of Murphy Brown', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 121, + 399427, + 5, + 'Noa', + 'Although both focus on suspense and strange encounters, The High Sign lacks the unsettling supernatural tone that defines Night Gallery', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 263, + 400853, + 5, + 'Noa', + 'Despite both focusing on adults struggling with relationships and life decisions, ''Til There Was You feels too polished and romantic to satisfy someone who liked the chaotic family realism of Parenthood', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 370, + 390691, + 4, + 'Noa', + 'Although both involve lighthearted characters and comedy, continuavano a chiamarlo Trinit lacks the family-centered atmosphere that defines Growing Pains', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 517, + 391006, + 3, + 'Noa', + 'While both center on friendship and growing up, the intense virtual fantasy world of .hack//Quarantine clashes with the simple sitcom style of Happy Days', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 675, + 395271, + 4, + 'Noa', + 'Despite both focusing on relationships and everyday struggles, 100 Days feels far more serious and grounded compared to the exaggerated sitcom style of Laverne & Shirley', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 676, + 15187, + 5, + 'Noa', + 'Despite both involving tense and uncomfortable situations, 100 Days feels much slower and more experimental compared to the direct thriller style of Amsterdamned', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 818, + 14157, + 4, + 'Noa', + 'Despite both focusing on awkward relationships and personal insecurity, 1000 Marys is much more quiet and emotionally restrained compared to the loud comedy style of American Reunion', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 837, + 16730, + 5, + 'Noa', + 'Despite both mixing fantasy elements with personal struggles, 1001 Nights feels much darker and stranger compared to the lighter emotional tone of Angel on My Shoulder', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 870, + 17812, + 4, + 'Noa', + 'Both films deal with strained relationships, but 101 Reykjavk 2000 approaches it through surreal humor while Anno Domini 2000 focuses on mainstream drama', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 878, + 880, + 4, + 'Noa', + 'Despite both seeming connected through light family style entertainment, 102 is too unclear and minimal to work as a strong match for the polished children adventure of 102 Dalmatians', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 952, + 21454, + 4, + 'Noa', + 'Despite both focusing on personal memories and emotions, 11:00 AM is too dramatic compared to the quiet reflective style of As I Was Moving Ahead Occasionally I Saw Brief Glimpses of Beauty', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 1018, + 210511, + 5, + 'Noa', + 'Despite both involving confused protagonists trapped in unusual time-related situations, 12:01 is much more lighthearted and simple than the darker psychological style of Memento', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 1024, + 7341, + 4, + 'Noa', + 'Despite both focusing on characters searching for belonging, 13 (1999/I) 1999 is much more quiet introspection while Aerosmith: Big Ones You Can Look at 1994 leans into fast paced spectacle', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 1046, + 1029, + 5, + 'Noa', + 'While both combine drama with bizarre situations, the emotional realism of 13 Moons clashes with the campy horror atmosphere of 13 Erotic Ghosts', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 3634, + 165961, + 4, + 'Noa', + 'Despite both focusing on dangerous sea situations and survival under pressure, A&E Biography: Captain Bligh - Mutiny on the Bounty is too educational and documentary-like to match the suspense of Jaws', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 13343, + 381392, + 5, + 'Noa', + 'Despite both focusing on young superheroes balancing ordinary life with dangerous missions, Amazing Adventures of Spider-Man is too action focused and simplistic to match the darker futuristic style of Batman Beyond', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 29760, + 849, + 4, + 'Noa', + 'Despite both being family movies about young characters going on adventures and learning teamwork, Barbie Riding Club is too educational and low energy to feel like a natural match for 101 Dalmatians II: Patch''s London Adventure', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 34306, + 66194, + 4, + 'Noa', + 'Despite both following energetic female leads dealing with romance and personal problems, Berlin Berlin feels too chaotic and unconventional compared to the light mainstream style of Clueless', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 45312, + 209158, + 4, + 'Noa', + 'Despite both being early Martin Scorsese crime dramas about characters pulled into violence and unstable relationships, Boxcar Bertha feels too rough and exploitation driven compared to the more grounded style of Mean Streets', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 53921, + 97360, + 5, + 'Noa', + 'Despite both being satirical movies about eccentric people trying to succeed in the film industry, Cannes Man feels too chaotic and uneven compared to the more emotional style of Ed Wood', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 58160, + 54209, + 4, + 'Noa', + 'Despite both focusing on violent characters and psychological tension, Certain Fury feels too messy and exploitation driven to match the darker suspense of Cape Fear', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 73574, + 240327, + 4, + 'Noa', + 'Despite both being horror movies involving dangerous threats and fear inside ordinary environments, Critters 3 is too comedic and campy to match the serious atmosphere of The Omen', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 79845, + 129185, + 5, + 'Noa', + 'Despite both focusing on determined men facing violence and dangerous journeys, Day of the Evil Gun is too slow and restrained to match the large emotional spectacle of Gladiator', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 92323, + 263, + 4, + 'Noa', + 'Despite both involving people caught between personal choices and complicated relationships, Dozen Kliks feels too quiet and emotionally distant to match the warmer romantic style of ''Til There Was You', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 103334, + 289109, + 4, + 'Noa', + 'Despite both focusing on soldiers trying to survive dangerous wartime situations, Escape to Nowhere is too small scale and restrained to match the intense realism of Saving Private Ryan', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 134675, + 151616, + 3, + 'Noa', + 'Despite both being relationship comedies about misunderstandings and romance, Grounds for Marriage feels too old fashioned and restrained to match the fast mainstream style of How to Lose a Guy in 10 Days', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 379327, + 9813, + 4, + 'Noa', + 'Despite both focusing on heroic outlaws protecting others while fighting corrupt enemies, Adventures of Robin Hood feels too old fashioned to match the fast fantasy adventure style of Aladdin in Nasira''s Revenge', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 379331, + 123435, + 4, + 'Noa', + 'Despite both focusing on intelligent characters solving confusing mysteries, Adventures of Sherlock Holmes is too calm and traditional to match the psychological tension of The Game', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 383395, + 406158, + 4, + 'Noa', + 'Both are Marvel superhero adaptations about young heroes protecting ordinary people, but Captain America feels too campy and old television style compared to the more emotional and modern feel of Spider-Man', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 397121, + 123435, + 4, + 'Noa', + 'Despite both following confused main characters trapped in manipulated realities, Matrix feels too strange and low scale to match the polished psychological suspense of The Game', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 399427, + 268034, + 3, + 'Noa', + 'Although both build mystery around strange and disturbing situations, Night Gallery relies much more on short gothic style stories while The Puzzle creates a more continuous psychological mystery', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 92573, + 215875, + 4, + 'Noa', + 'Despite both focusing on spies completing dangerous international missions, Dr. No feels too slow and old fashioned to match the fast paced modern espionage style of Mission: Impossible', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 405119, + 123435, + 3, + 'Noa', + 'Both focus on intelligent characters trying to solve confusing situations and hidden clues, but Sherlock Holmes feels too methodical and traditional to match the intense psychological style of The Game', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 108, + 10702, + 5, + 'Noa', + 'Despite both focusing on characters dealing with pressure and difficult personal choices, ''G'' Men is too crime focused and old fashioned to match the emotional realism of Alice Doesn''t Live Here Anymore', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 450, + 54209, + 4, + 'Noa', + 'Despite both focusing on rising tension and conflict inside small communities,...tick...tick...tick... feels too restrained and dialogue driven to match the intense suspense of Cape Fear', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 672, + 319710, + 4, + 'Noa', + 'Despite both focusing on emotionally tense situations and uncertainty, 100 aos de perdn is too grounded and realistic to match the supernatural suspense of Superstition', + NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +(337167 +, 337168 +, 9 +, 'noafingerman' +, 'Next movie in the series' +, 'just as good as the first' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(337167 +, 158927 +, 10 +, 'noafingerman' +, 'Both are great Pixar films' +, 'favorites with great stories' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(337167 +, 218415 +, 7 +, 'noafingerman' +, 'Great duo dynamic' +, 'in both Pixar films' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(113504 +, 272644 +, 9 +, 'noafingerman' +, 'Both follow an underdog' +, 'character in a colorful world' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(158927 +, 61291 +, 5 +, 'noafingerman' +, 'Both are cleverly animated' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +(300229 +, 199255 +, 8 +, 'noafingerman' +, 'Funny animated comedies' +, 'with talking animals' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(300229 +, 155213 +, 7 +, 'noafingerman' +, 'Both are mid-2000s' +, 'animated classics everyone loves' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(190869 +, 191246 +, 9 +, 'noafingerman' +, 'Both focus on family themes' +, 'and finding where you belong' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(222112 +, 258510 +, 8 +, 'noafingerman' +, 'Both feature strong' +, 'unconventional female leads' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(32179 +, 64077 +, 7 +, 'noafingerman' +, 'Classic Disney fairy tales' +, 'with similar romantic vibes' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(192016 +, 9795 +, 9 +, 'noafingerman' +, 'Both are 90s Disney' +, 'princess essentials' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(143529 +, 15887 +, 8 +, 'noafingerman' +, 'Both musical adventures about' +, 'finding your true identity' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(232425 +, 61291 +, 4 +, 'noafingerman' +, 'If you like quirky stop-motion styles' +, 'you’ll like both' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(162352 +, 96593 +, 10 +, 'noafingerman' +, 'Both are emotional movies about' +, 'a kid and a non-human friend' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(46121 +, 222112 +, 9 +, 'noafingerman' +, 'Both about girls breaking' +, 'family traditions and expectations' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(194497 +, 194502 +, 10 +, 'noafingerman' +, 'Chronological Lord of' +, 'the Rings series recommendation' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(194502 +, 194500 +, 10 +, 'noafingerman' +, 'Conclusion to the Lord' +, 'of the Rings series' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(194497 +, 139657 +, 7 +, 'noafingerman' +, 'Both starting points for huge' +, 'fantasy worlds' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(139657 +, 139655 +, 9 +, 'noafingerman' +, 'Next step in the Harry' +, 'Potter series with a cooler style' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(139655 +, 139652 +, 8 +, 'noafingerman' +, 'Chronological Harry' +, 'Potter series recommendation' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(238072 +, 348944 +, 9 +, 'noafingerman' +, 'Both clever crime films' +, 'that keep you guessing' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(238072 +, 163715 +, 9 +, 'noafingerman' +, 'Both are very cool' +, 'and stylish ensemble heist movies' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(238072 +, 56871 +, 7 +, 'noafingerman' +, 'Both have a smart' +, 'lead outwitting the police' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(210511 +, 303564 +, 8 +, 'noafingerman' +, 'Slow-burn mysteries with a' +, 'massive twist at the end' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(263740 +, 182955 +, 9 +, 'noafingerman' +, 'Intense and smart crime' +, 'dramas with great writing' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(67052 +, 141544 +, 7 +, 'noafingerman' +, 'Both are atmospheric crime' +, 'thrillers set at night' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(82967 +, 267038 +, 8 +, 'noafingerman' +, 'Very cool crime movies' +, 'with big casts' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(346949 +, 67052 +, 8 +, 'noafingerman' +, 'Both feature a professional' +, 'being pulled back into the life' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(112290 +, 239851 +, 9 +, 'noafingerman' +, 'Both dark psychological' +, 'movies with shocking twists' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(290070 +, 254986 +, 10 +, 'noafingerman' +, 'Both essential dramas about' +, 'surviving the Holocaust' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(26081 +, 1787 +, 5 +, 'noafingerman' +, 'Multiple stories that' +, 'connect through one event' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(224842 +, 182955 +, 9 +, 'noafingerman' +, 'Serious crime dramas' +, 'with a lot of tension' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(333856 +, 235541 +, 10 +, 'noafingerman' +, 'The biggest romantic' +, 'movies ever made' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(32712 +, 235790 +, 7 +, 'noafingerman' +, 'Simple, sweet romance' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +(235790 +, 195300 +, 9 +, 'noafingerman' +, 'Both have that charming' +, 'British rom-com vibe' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(195300 +, 223719 +, 7 +, 'noafingerman' +, 'Feel-good comedies' +, 'about love and family' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(235541 +, 32712 +, 8 +, 'noafingerman' +, 'Fans of emotional love' +, 'stories will enjoy both' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(187191 +, 215507 +, 8 +, 'noafingerman' +, 'Both light comedies about a' +, 'woman succeeding' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(248878 +, 363780 +, 8 +, 'noafingerman' +, 'Both are funny comedies' +, 'built on disguise and secrets' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(644 +, 47077 +, 8 +, 'noafingerman' +, 'Both late-90s teen' +, 'movies with cool leads' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(187191 +, 644 +, 8 +, 'noafingerman' +, 'Two of the most iconic' +, 'female-led comedies' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(133401 +, 87280 +, 9 +, 'noafingerman' +, 'The best feel-good musical' +, 'romances for a summer vibe' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(61155 +, 220273 +, 9 +, 'noafingerman' +, 'Both are very stylish' +, 'and over-the-top movie musicals' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(280270 +, 1779 +, 9 +, 'noafingerman' +, 'Inspiring underdog stories' +, 'about working hard to win' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(280270 +, 173934 +, 7 +, 'noafingerman' +, 'Classic sports training movies' +, 'about a student and mentor' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(207992 +, 61751 +, 9 +, 'noafingerman' +, 'Groundbreaking sci-fi' +, 'with very serious themes' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(207992 +, 102225 +, 7 +, 'noafingerman' +, 'Both have cool action' +, 'and fight against a system' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(61751 +, 319241 +, 8 +, 'noafingerman' +, 'Two intense sci-fi movies' +, 'with a huge mission' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(40199 +, 61751 +, 9 +, 'noafingerman' +, 'Atmospheric sci-fi that focus' +, 'on mood and big questions' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(69895 +, 319241 +, 7 +, 'noafingerman' +, 'Both about a high-stakes' +, 'mission for the sake of humanity' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(313821 +, 207992 +, 8 +, 'noafingerman' +, 'Sci-fi movies that' +, 'use action to critique power' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(2000 +, 256839 +, 8 +, 'noafingerman' +, 'Tense horror where the' +, 'darkness is the main threat' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(40226 +, 303564 +, 7 +, 'noafingerman' +, 'Scary movies that rely' +, 'on dread instead of blood' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(247579 +, 310726 +, 8 +, 'noafingerman' +, 'Both high-pressure thrillers' +, 'in a confined setting' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(9023 +, 310726 +, 9 +, 'noafingerman' +, 'Perfect 90s action' +, 'with a hero stuck on a vehicle' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(159175 +, 159172 +, 8 +, 'noafingerman' +, 'The next adventure in' +, 'the Indiana Jones series' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(26844 +, 26846 +, 8 +, 'noafingerman' +, 'Chronological Back to' +, 'the Future recommendation' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(148201 +, 148203 +, 7 +, 'noafingerman' +, 'Sequel that gives you more' +, 'of exactly what you liked' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(56871 +, 160492 +, 7 +, 'noafingerman' +, 'Smart movies based on real' +, 'people fighting the system' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(117874 +, 56431 +, 8 +, 'noafingerman' +, 'Both feature great solo' +, 'performances from Tom Hanks' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(2709 +, 294717 +, 8 +, 'noafingerman' +, 'Both are cute romances' +, 'with a "destiny" theme' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(5009 +, 46877 +, 5 +, 'noafingerman' +, 'Both are funny British' +, 'comedies about finding love' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(209658 +, 223719 +, 8 +, 'noafingerman' +, 'Both about the stress of' +, 'meeting a crazy family' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(238695 +, 16006 +, 8 +, 'noafingerman' +, 'Both are funny parodies of' +, 'specific workplace cultures' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(16006 +, 89057 +, 7 +, 'noafingerman' +, 'Funny comedies with a group' +, 'of lovable idiots' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(48075 +, 99164 +, 8 +, 'noafingerman' +, 'Both high-concept comedies about' +, 'a guy with a "special" role' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(267038 +, 112290 +, 9 +, 'noafingerman' +, 'Two of the coolest 90s movies' +, 'that changed the genre' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(39959 +, 303564 +, 8 +, 'noafingerman' +, 'Psychological thrillers where you' +, 'can’t trust what you see' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(12217 +, 220273 +, 7 +, 'noafingerman' +, 'Both films captures the' +, 'passion of the music world' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(203918 +, 214755 +, 8 +, 'noafingerman' +, 'Smart sci-fi thrillers about' +, 'people trying to escape control' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(203344 +, 67052 +, 9 +, 'noafingerman' +, 'Cool action thrillers about' +, 'professionals on a mission' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(358708 +, 160492 +, 5 +, 'noafingerman' +, 'Dramas about standing' +, 'up to corporate corruption' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(302329 +, 239851 +, 8 +, 'noafingerman' +, 'Dark and violent films with' +, 'a very cool visual style' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(342685 +, 158999 +, 7 +, 'noafingerman' +, 'Classic disaster spectacle' +, 'movies from the mid-90s' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(158999 +, 359297 +, 8 +, 'noafingerman' +, 'Both are big alien invasion' +, 'movies where humanity fights back' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(45128 +, 215877 +, 8 +, 'noafingerman' +, 'The best modern spy' +, 'thrillers for action fans' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(256630 +, 159172 +, 7 +, 'noafingerman' +, 'Fun swashbuckling adventures with' +, 'charismatic leads' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(304829 +, 294717 +, 8 +, 'noafingerman' +, 'Both are sweet movies' +, 'about finding your soulmate' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(206881 +, 170724 +, 8 +, 'noafingerman' +, 'Old-school Disney magic' +, 'with great musical songs' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(20218 +, 848 +, 7 +, 'noafingerman' +, 'Cute Disney animation about' +, 'animals having adventures' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(191723 +, 224842 +, 9 +, 'noafingerman' +, 'Both are serious dramas about' +, 'secrets in the suburbs' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(337404 +, 26081 +, 9 +, 'noafingerman' +, 'Ambitious films that weave many' +, 'different stories together' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(200521 +, 1787 +, 8 +, 'noafingerman' +, 'Intense dramas about strangers' +, 'connected by chance' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(3100 +, 12217 +, 7 +, 'noafingerman' +, 'Both follow a young artist' +, 'trying to make it in music' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(137259 +, 61155 +, 8 +, 'noafingerman' +, 'Both are high-energy musicals' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +(99330 +, 264158 +, 8 +, 'noafingerman' +, 'Both are funny princess-themed' +, 'movies from the 2000s' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(14942 +, 26081 +, 9 +, 'noafingerman' +, 'Both use the same multi-story' +, 'structure from the same director' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(65885 +, 191723 +, 7 +, 'noafingerman' +, 'Honest and heavy dramas' +, 'about adult relationships' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(185492 +, 129185 +, 8 +, 'noafingerman' +, 'Historical epics with a' +, 'lot of honor and action' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(25192 +, 12217 +, 7 +, 'noafingerman' +, 'Both capture the "golden era"' +, 'of entertainment' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(346364 +, 256839 +, 8 +, 'noafingerman' +, 'Dark action movies with' +, 'monsters and a cool vibe' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(282696 +, 5009 +, 8 +, 'noafingerman' +, 'Both quirky and charming movies' +, 'about lonely characters' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(36694 +, 148201 +, 7 +, 'noafingerman' +, 'Feel-good family classics' +, 'about a kid in charge' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(112205 +, 207992 +, 8 +, 'noafingerman' +, 'Two of the most creative sci-fi' +, 'movies of the era' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(280281 +, 280270 +, 9 +, 'noafingerman' +, 'If you like the sequel' +, 'you have to watch the original' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(338821 +, 23255 +, 4 +, 'noafingerman' +, 'Two underrated Disney' +, 'adventures with a sci-fi theme' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(279384 +, 338821 +, 8 +, 'noafingerman' +, 'Funny animated adventures' +, 'about finding lost treasure' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(310130 +, 36694 +, 8 +, 'noafingerman' +, 'Both are fun family' +, 'movies with a fantasy element' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(360684 +, 146780 +, 4 +, 'noafingerman' +, 'Funny rom-coms about smooth' +, 'talkers who get soft' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(324061 +, 16006 +, 8 +, 'noafingerman' +, 'Two of Will Ferrell’s best' +, 'over-the-top characters' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(46814 +, 363780 +, 7 +, 'noafingerman' +, 'Both are chaotic comedies' +, 'about a big social group' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(311037 +, 313461 +, 8 +, 'noafingerman' +, 'Starting points for huge' +, 'fan-favorite hero franchises' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(109421 +, 310726 +, 7 +, 'noafingerman' +, 'High-adrenaline movies with' +, 'cars and big chases' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(162900 +, 214755 +, 8 +, 'noafingerman' +, 'Both about characters escaping' +, 'a fake or controlled reality' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(165962 +, 2000 +, 8 +, 'noafingerman' +, 'Horror classics that' +, 'build a lot of tension' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(206119 +, 256630 +, 4 +, 'noafingerman' +, 'Great swashbuckling adventures for' +, 'anyone who likes action' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(303225 +, 99164 +, 8 +, 'noafingerman' +, 'Both are funny and charming' +, '"fish-out-of-water" movies' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(138792 +, 61282 +, 7 +, 'noafingerman' +, 'Both animated comedies about an' +, 'animal that doesn''t fit in' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(325098 +, 170724 +, 8 +, 'noafingerman' +, 'Both are Disney takes on the' +, '"jungle boy" story' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(59720 +, 190869 +, 7 +, 'noafingerman' +, 'Sweet family movies about a' +, 'very special friendship' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(210739 +, 340799 +, 8 +, 'noafingerman' +, 'Both action comedies with' +, 'secret agents' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(68232 +, 37002 +, 7 +, 'noafingerman' +, 'Classic comedies with a good heart' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +(54350 +, 160492 +, 8 +, 'noafingerman' +, 'Movies based on real' +, 'people chasing the truth' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(47422 +, 32712 +, 7 +, 'noafingerman' +, 'Quiet and beautiful movies' +, 'about a hard love story' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(113504 +, 297650 +, 4 +, 'noafingerman' +, 'Underwater theme' +, 'But Shark Tale is way worse' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(337167 +, 32583 +, 2 +, 'noafingerman' +, 'Both focus on small creatures' +, 'But Bee Movie lacks the heart' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(300229 +, 32583 +, 4 +, 'noafingerman' +, 'Both try to be smart animation' +, 'But Bee Movie isn''t as funny' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(191246 +, 311262 +, 3 +, 'noafingerman' +, 'Both animal journeys' +, 'But Spirit is much slower' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(222112 +, 325095 +, 2 +, 'noafingerman' +, 'Sequel is low quality' +, 'compared to the original Mulan' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(64077 +, 304782 +, 3 +, 'noafingerman' +, 'Both princess movies' +, 'But Cinderella has a better story' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(152717 +, 152718 +, 4 +, 'noafingerman' +, 'Bad sequel that ruins' +, 'the dark vibe of the first one' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(47077 +, 47078 +, 2 +, 'noafingerman' +, 'Next in the series' +, 'But it lost all the original humor' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(264158 +, 264157 +, 1 +, 'noafingerman' +, 'Pointless and lazy sequel' +, 'that nobody asked for' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(215507 +, 215508 +, 5 +, 'noafingerman' +, 'Repeat of the first one' +, 'But it doesn''t work at all' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(24430 +, 24432 +, 2 +, 'noafingerman' +, 'Same jokes as the first one' +, 'not as funny anymore' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(26846 +, 26847 +, 4 +, 'noafingerman' +, 'Weakest of the trilogy' +, 'the Western theme is slow' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(148201 +, 143505 +, 2 +, 'noafingerman' +, 'Both are family movies' +, 'But Herbie is very forgettable' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(238072 +, 238073 +, 5 +, 'noafingerman' +, 'Self-indulgent sequel that misses' +, 'the cool heist plot' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(215877 +, 215879 +, 1 +, 'noafingerman' +, 'Lost all the spy logic' +, 'from the first movie' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(207992 +, 78789 +, 3 +, 'noafingerman' +, 'Similar sci-fi ideas' +, 'But way slower than The Matrix' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(112290 +, 319486 +, 5 +, 'noafingerman' +, 'Both about bad behavior' +, 'But Super Troopers is just dumb' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(267038 +, 387105 +, 1 +, 'noafingerman' +, 'Wrong fit—Dumb and Dumber' +, 'is just silly slapstick' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(117874 +, 387105 +, 5 +, 'noafingerman' +, 'Simple heroes but totally' +, 'different quality of writing' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(303564 +, 113305 +, 3 +, 'noafingerman' +, 'Both about death' +, 'But Final Destination is just a slasher' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(303564 +, 149957 +, 1 +, 'noafingerman' +, 'Terrible pairing' +, 'Hostel is too gross for mystery fans' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(40226 +, 149957 +, 5 +, 'noafingerman' +, 'One is about dread' +, 'the other is just blood and gore' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(53821 +, 149957 +, 2 +, 'noafingerman' +, 'Candyman has depth' +, 'But Hostel is just for shock value' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(337404 +, 72559 +, 3 +, 'noafingerman' +, 'Traffic is smart' +, 'But Crash is just trying too hard' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(200521 +, 72559 +, 5 +, 'noafingerman' +, 'Crash is just a clumsy version' +, 'of this multi-story style' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(26081 +, 72559 +, 2 +, 'noafingerman' +, 'Babel is much better' +, 'and feels more real than Crash' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(333856 +, 81776 +, 5 +, 'noafingerman' +, 'Both disasters' +, 'But Titanic has the better love story' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(158999 +, 81776 +, 2 +, 'noafingerman' +, 'Deep Impact is way too' +, 'slow for action fans' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(61155 +, 105462 +, 3 +, 'noafingerman' +, 'Evita is slow and serious' +, 'not like the fun of Chicago' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(137259 +, 105462 +, 5 +, 'noafingerman' +, 'Total mismatch in' +, 'energy and tone' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(235541 +, 294717 +, 3 +, 'noafingerman' +, 'Serendipity is too shallow' +, 'to match The Notebook' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(195300 +, 46878 +, 4 +, 'noafingerman' +, 'Different vibes' +, 'even if they are both British rom-coms' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(263360 +, 298076 +, 2 +, 'noafingerman' +, 'She''s All That is a' +, 'very basic version of a makeover story' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(187191 +, 298076 +, 5 +, 'noafingerman' +, 'She''s All That isn''t nearly' +, 'as smart as Legally Blonde' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(644 +, 298076 +, 3 +, 'noafingerman' +, 'Formulaic teen movie' +, 'that doesn''t have any wit' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(1779 +, 3100 +, 5 +, 'noafingerman' +, 'Both about struggle' +, 'But 8 Mile is much more specific' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(173934 +, 280281 +, 3 +, 'noafingerman' +, 'Rocky II is just a stale' +, 'repeat of the first one' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(159172 +, 143505 +, 1 +, 'noafingerman' +, 'Recommending Herbie to an Indy' +, 'fan is a bad idea' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(313461 +, 310130 +, 4 +, 'noafingerman' +, 'Way too silly for a' +, 'serious Star Wars fan' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(69895 +, 158999 +, 2 +, 'noafingerman' +, 'One is smart sci-fi' +, 'the other is just a popcorn movie' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(40199 +, 112205 +, 5 +, 'noafingerman' +, 'Total opposite tones' +, 'and styles' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(102225 +, 310130 +, 1 +, 'noafingerman' +, 'Serious sci-fi fans' +, 'won''t want a cartoon' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(2000 +, 113305 +, 4 +, 'noafingerman' +, 'Final Destination is just a' +, 'cheesy horror gimmick' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(207992 +, 310130 +, 1 +, 'noafingerman' +, 'Not a good match regarding' +, 'ambition and tone' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(182955 +, 72559 +, 5 +, 'noafingerman' +, 'Crash is way too blunt' +, 'compared to this smart crime story' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(67052 +, 319486 +, 1 +, 'noafingerman' +, 'One is high-level action' +, 'the other is a dumb comedy' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(238072 +, 319486 +, 4 +, 'noafingerman' +, 'Super Troopers has zero' +, 'of the cool style of Ocean''s' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(117874 +, 227549 +, 2 +, 'noafingerman' +, 'Napoleon is too weird' +, 'for fans of Forrest Gump' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(5009 +, 227549 +, 5 +, 'noafingerman' +, 'Too dry and awkward' +, 'compared to About a Boy' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(56871 +, 48075 +, 2 +, 'noafingerman' +, 'Bruce Almighty is a very' +, 'shallow comedy choice' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(333856 +, 304829 +, 4 +, 'noafingerman' +, 'Different levels of' +, 'scale and emotion' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(235541 +, 46878 +, 3 +, 'noafingerman' +, 'People looking for a cry' +, 'will be disappointed by this' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(254986 +, 149957 +, 1 +, 'noafingerman' +, 'Should never be paired' +, 'Hostel is just gross' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(280270 +, 324061 +, 2 +, 'noafingerman' +, 'One is serious' +, 'the other is just making fun of the genre' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(82967 +, 303225 +, 1 +, 'noafingerman' +, 'Total genre clash' +, 'doesn''t make any sense' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(141544 +, 68232 +, 5 +, 'noafingerman' +, 'Serious crime epic' +, 'vs light comedy' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(203344 +, 303225 +, 1 +, 'noafingerman' +, 'Denzel is in both' +, 'But that''s where the connection ends' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(239851 +, 227549 +, 4 +, 'noafingerman' +, 'Opposite types of' +, 'cult classics' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(302329 +, 32583 +, 1 +, 'noafingerman' +, 'Adult noir' +, 'vs a kids cartoon' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(39959 +, 138792 +, 1 +, 'noafingerman' +, 'Black Swan is a nightmare' +, 'vs Happy feet is for toddlers' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(12217 +, 310130 +, 1 +, 'noafingerman' +, 'Almost Famous is deep' +, 'this is just shallow pop culture' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(65885 +, 99164 +, 5 +, 'noafingerman' +, 'Bleak adult drama' +, 'vs a happy Christmas movie' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(14942 +, 387105 +, 1 +, 'noafingerman' +, 'Zero emotional or' +, 'moral overlap' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(25192 +, 324061 +, 4 +, 'noafingerman' +, 'The Aviator is serious' +, 'But Talladega is a joke' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(206881 +, 149957 +, 1 +, 'noafingerman' +, 'Opposite ends of' +, 'the movie world' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(162352 +, 297650 +, 5 +, 'noafingerman' +, 'One has heart' +, 'the other is a cash-in' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(182955 +, 24430 +, 1 +, 'noafingerman' +, 'Austin Powers is too' +, 'silly for crime drama fans' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(224842 +, 360684 +, 4 +, 'noafingerman' +, 'No reason to recommend' +, 'these together at all' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(280270 +, 89057 +, 2 +, 'noafingerman' +, 'Dodgeball undercuts everything' +, 'that makes Rocky great' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(358708 +, 324061 +, 1 +, 'noafingerman' +, 'Serious morality tale' +, 'vs goofy sports movie' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(185492 +, 143505 +, 5 +, 'noafingerman' +, 'Forgettable kids movie' +, 'not fit for epic fans' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(238695 +, 319486 +, 3 +, 'noafingerman' +, 'One is smart' +, 'the other is just juvenile cop jokes' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(263740 +, 72559 +, 2 +, 'noafingerman' +, 'Crash is way too' +, 'blunt and simple' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(203918 +, 227549 +, 4 +, 'noafingerman' +, 'Absolutely no meaningful' +, 'connection' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(160492 +, 149957 +, 1 +, 'noafingerman' +, 'Moral drama vs' +, 'gore entertainment' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(47422 +, 387105 +, 5 +, 'noafingerman' +, 'Comparison is just' +, 'ridiculous for any fan' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(247579 +, 148201 +, 3 +, 'noafingerman' +, 'Same theme but' +, 'totally different tones' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(342685 +, 310130 +, 1 +, 'noafingerman' +, 'Disaster movie vs' +, 'kids movie, no real fit' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(129185 +, 143505 +, 4 +, 'noafingerman' +, 'Herbie is unsuitable for' +, 'any Gladiator fan' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(16006 +, 105462 +, 1 +, 'noafingerman' +, 'Not a good match in' +, 'the sense of purpose and style' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(56431 +, 319486 +, 5 +, 'noafingerman' +, 'Emotional masterpiece vs' +, 'juvenile farce' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(282696 +, 387105 +, 1 +, 'noafingerman' +, 'Mismatch of comedy' +, 'styles' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(232425 +, 149957 +, 4 +, 'noafingerman' +, 'Whimsical animation vs' +, 'torture horror' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(279384 +, 32583 +, 5 +, 'noafingerman' +, 'Bee Movie is much' +, 'weaker than El Dorado' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(59720 +, 32583 +, 2 +, 'noafingerman' +, 'Moving family story' +, 'vs shallow comedy' +); + +INSERT IGNORE INTO movies_recommendations VALUES +(78789 +, 227549 +, 1 +, 'noafingerman' +, 'Different cult vibes' +, 'that don''t overlap' +); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 359297, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying E.T. the Extra-Terrestrial makes War of the Worlds a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (303564, 297761, 8, 'EliLevey', 'Both movies use suspense, atmosphere, and memorable genre moments, so Se7en should appeal to someone who liked Sixth Sense, The.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (13978, 112290, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying American History X makes Fight Club a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (109093, 37178, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Fargo makes Big Lebowski, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (134672, 362808, 8, 'EliLevey', 'Both movies mix romance, charm, and very watchable character moments, making When Harry Met Sally a sensible recommendation after Groundhog Day.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46322, 111442, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Breakfast Club, The makes Ferris Bueller''s Day Off a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (111442, 46322, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Ferris Bueller''s Day Off makes Breakfast Club, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (328285, 328277, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Terminator, The makes Terminator 2: Judgment Day a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10920, 10830, 8, 'EliLevey', 'Both movies use suspense, atmosphere, and memorable genre moments, so Alien should appeal to someone who liked Aliens.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (224842, 134077, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Mystic River makes Green Mile, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (173933, 280270, 8, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Karate Kid, The makes Rocky a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (272644, 113504, 9, 'EliLevey', 'Both movies are animated crowd-pleasers with strong humor, memorable characters, and emotional moments, so Finding Nemo fits well after Ratatouille.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276085, 14145, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Requiem for a Dream makes American Psycho a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (235790, 263360, 8, 'EliLevey', 'Both movies mix romance, charm, and very watchable character moments, making Pretty Woman a sensible recommendation after Notting Hill.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210739, 112205, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Men in Black makes Fifth Element, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (207992, 336458, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Matrix, The makes Total Recall a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (363780, 226939, 8, 'EliLevey', 'Both movies lean on broad comedy, quotable scenes, and easy rewatch value, making Naked Gun a strong comedy recommendation after White Chicks.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (26064, 199255, 8, 'EliLevey', 'Both movies are animated crowd-pleasers with strong humor, memorable characters, and emotional moments, so Madagascar fits well after Babe.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 59578, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Edward Scissorhands makes Charlie and the Chocolate Factory a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (158927, 337166, 8, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Incredibles, The makes Toy Story a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (134077, 297838, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Green Mile, The makes Shawshank Redemption, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (189403, 117314, 8, 'EliLevey', 'Both movies offer stylish spy adventure, memorable action, and classic franchise appeal, so fans of Licence to Kill are likely to enjoy For Your Eyes Only as well.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (368418, 335336, 9, 'EliLevey', 'Both movies offer stylish spy adventure, memorable action, and classic franchise appeal, so fans of World Is Not Enough, The are likely to enjoy Tomorrow Never Dies as well.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (359297, 96593, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying War of the Worlds makes E.T. the Extra-Terrestrial a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (222339, 256632, 8, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Mummy, The makes Pirates of the Caribbean: The Curse of the Black Pearl a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46169, 129185, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Braveheart makes Gladiator a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (166917, 131665, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Jerry Maguire makes Good Will Hunting a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (123849, 56304, 8, 'EliLevey', 'Both films focus on crime, tension, sharp characters, and memorable dialogue, making Casino a strong recommendation for someone who enjoyed Gangs of New York.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (66194, 209133, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Clueless makes Mean Girls a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312151, 312150, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Spy Kids 2: Island of Lost Dreams makes Spy Kids a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (151616, 644, 8, 'EliLevey', 'Both movies mix romance, charm, and very watchable character moments, making 10 Things I Hate About You a sensible recommendation after How to Lose a Guy in 10 Days.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (328277, 328285, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Terminator 2: Judgment Day makes Terminator, The a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311037, 311038, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Spider-Man makes Spider-Man 2 a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (45129, 45128, 9, 'EliLevey', 'Both movies rely on tense action, strong momentum, and memorable set pieces, so Bourne Identity, The is a good follow-up to Bourne Supremacy, The.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (104699, 9125, 8, 'EliLevey', 'Both movies lean on broad comedy, quotable scenes, and easy rewatch value, making Airplane! a strong comedy recommendation after Eurotrip.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215880, 215876, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Mission: Impossible III makes Mission Impossible a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (336458, 207992, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Total Recall makes Matrix, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130121, 131780, 9, 'EliLevey', 'Both films focus on crime, tension, sharp characters, and memorable dialogue, making Goodfellas a strong recommendation for someone who enjoyed Godfather.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (270971, 326155, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Raging Bull makes Taxi Driver a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297802, 289666, 8, 'EliLevey', 'Both movies use suspense, atmosphere, and memorable genre moments, so Scary Movie should appeal to someone who liked Shaun of the Dead.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (90772, 215670, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Donnie Darko makes Memento a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (177328, 178103, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying King Kong makes Jurassic Park a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337814, 141544, 8, 'EliLevey', 'Both films focus on crime, tension, sharp characters, and memorable dialogue, making Heat a strong recommendation for someone who enjoyed Training Day.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (375827, 16006, 9, 'EliLevey', 'Both movies lean on broad comedy, quotable scenes, and easy rewatch value, making Anchorman: The Legend of Ron Burgundy a strong comedy recommendation after Zoolander.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (264146, 9795, 8, 'EliLevey', 'Both movies are animated crowd-pleasers with strong humor, memorable characters, and emotional moments, so Aladdin fits well after Princess Bride, The.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (160524, 257756, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Insomnia makes Prestige, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 215670, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Fight Club makes Memento a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (223799, 969, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying My Cousin Vinny makes 12 Angry Men a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (80583, 131665, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Dead Poets Society makes Good Will Hunting a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (55727, 337166, 8, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Cars makes Toy Story a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (300229, 300230, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Shrek makes Shrek 2 a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (37178, 267038, 8, 'EliLevey', 'Both films focus on crime, tension, sharp characters, and memorable dialogue, making Pulp Fiction a strong recommendation for someone who enjoyed Big Lebowski, The.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (2709, 138797, 8, 'EliLevey', 'Both movies mix romance, charm, and very watchable character moments, making Happy Gilmore a sensible recommendation after 50 First Dates.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131665, 80583, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Good Will Hunting makes Dead Poets Society a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335336, 368418, 9, 'EliLevey', 'Both movies offer stylish spy adventure, memorable action, and classic franchise appeal, so fans of Tomorrow Never Dies are likely to enjoy World Is Not Enough, The as well.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (333856, 117874, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Titanic makes Forrest Gump a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139657, 139650, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Harry Potter and the Sorcerer''s Stone makes Harry Potter and the Chamber of Secrets a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (26847, 26846, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Back to the Future Part III makes Back to the Future Part II a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 256631, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Pirates of the Caribbean: The Curse of the Black Pearl makes Pirates of the Caribbean 2 a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (199255, 155213, 9, 'EliLevey', 'Both movies are animated crowd-pleasers with strong humor, memorable characters, and emotional moments, so Ice Age fits well after Madagascar.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (14132, 289666, 9, 'EliLevey', 'Both movies use suspense, atmosphere, and memorable genre moments, so Scary Movie should appeal to someone who liked American Pie 2.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (158999, 79716, 8, 'EliLevey', 'Both movies offer stylish spy adventure, memorable action, and classic franchise appeal, so fans of Independence Day are likely to enjoy Day After Tomorrow, The as well.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (301540, 297761, 8, 'EliLevey', 'Both movies use suspense, atmosphere, and memorable genre moments, so Se7en should appeal to someone who liked Silence of the Lambs, The.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (26844, 26846, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Back to the Future makes Back to the Future Part II a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112205, 210739, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Fifth Element, The makes Men in Black a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (1529, 109421, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying 2 Fast 2 Furious makes Fast and the Furious, The a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (9795, 191246, 9, 'EliLevey', 'Both movies are animated crowd-pleasers with strong humor, memorable characters, and emotional moments, so Lion King, The fits well after Aladdin.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (279841, 40199, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying RoboCop makes Blade Runner a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312152, 312151, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Spy Kids 3-D: Game Over makes Spy Kids 2: Island of Lost Dreams a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (155213, 199255, 9, 'EliLevey', 'Both movies are animated crowd-pleasers with strong humor, memorable characters, and emotional moments, so Madagascar fits well after Ice Age.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (162380, 158927, 9, 'EliLevey', 'Both movies are animated crowd-pleasers with strong humor, memorable characters, and emotional moments, so Incredibles, The fits well after Iron Man.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 238073, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Ocean''s Eleven makes Ocean''s Twelve a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (195300, 362808, 8, 'EliLevey', 'Both movies mix romance, charm, and very watchable character moments, making When Harry Met Sally a sensible recommendation after Love Actually.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (50639, 215670, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Butterfly Effect, The makes Memento a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (138797, 37002, 9, 'EliLevey', 'Both movies lean on broad comedy, quotable scenes, and easy rewatch value, making Big Daddy a strong comedy recommendation after Happy Gilmore.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (155070, 279841, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying I, Robot makes RoboCop a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (9125, 226939, 8, 'EliLevey', 'Both movies lean on broad comedy, quotable scenes, and easy rewatch value, making Naked Gun a strong comedy recommendation after Airplane!.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131885, 148200, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Goonies, The makes Home Alone a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289558, 56304, 8, 'EliLevey', 'Both films focus on crime, tension, sharp characters, and memorable dialogue, making Casino a strong recommendation for someone who enjoyed Scarface.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (235541, 195300, 9, 'EliLevey', 'Both movies mix romance, charm, and very watchable character moments, making Love Actually a sensible recommendation after Notebook, The.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39551, 289109, 9, 'EliLevey', 'Both movies rely on tense action, strong momentum, and memorable set pieces, so Saving Private Ryan is a good follow-up to Black Hawk Down.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (299073, 165961, 8, 'EliLevey', 'Both movies use suspense, atmosphere, and memorable genre moments, so Jaws should appeal to someone who liked Shining, The.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (79716, 158999, 8, 'EliLevey', 'Both movies offer stylish spy adventure, memorable action, and classic franchise appeal, so fans of Day After Tomorrow, The are likely to enjoy Independence Day as well.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289787, 32114, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Scent of a Woman makes Beautiful Mind, A a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (14145, 112290, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying American Psycho makes Fight Club a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313476, 313477, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Star Wars: Episode II - Attack of the Clones makes Star Wars Episode III a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 276217, 9, 'EliLevey', 'Both films focus on crime, tension, sharp characters, and memorable dialogue, making Reservoir Dogs a strong recommendation for someone who enjoyed Pulp Fiction.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (32114, 131665, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Beautiful Mind, A makes Good Will Hunting a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291221, 289666, 8, 'EliLevey', 'Both movies use suspense, atmosphere, and memorable genre moments, so Scary Movie should appeal to someone who liked Scream.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194502, 194500, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Lord of the Rings: The Two Towers, The makes Lord of the Rings: The Return of the King, The a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (191246, 32178, 9, 'EliLevey', 'Both movies are animated crowd-pleasers with strong humor, memorable characters, and emotional moments, so Beauty and the Beast fits well after Lion King, The.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (275453, 66286, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Remember the Titans makes Coach Carter a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (32178, 191246, 9, 'EliLevey', 'Both movies are animated crowd-pleasers with strong humor, memorable characters, and emotional moments, so Lion King, The fits well after Beauty and the Beast.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (370017, 1529, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying XXX makes 2 Fast 2 Furious a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139654, 139653, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Harry Potter and the Order of the Phoenix makes Harry Potter and the Half-Blood Prince a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290070, 254986, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Schindler''s List makes Pianist, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (37002, 138797, 9, 'EliLevey', 'Both movies lean on broad comedy, quotable scenes, and easy rewatch value, making Happy Gilmore a strong comedy recommendation after Big Daddy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 337168, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Toy Story makes Toy Story 2 a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280284, 280282, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Rocky IV makes Rocky III a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (117314, 189403, 8, 'EliLevey', 'Both movies offer stylish spy adventure, memorable action, and classic franchise appeal, so fans of For Your Eyes Only are likely to enjoy Licence to Kill as well.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (109421, 1529, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Fast and the Furious, The makes 2 Fast 2 Furious a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238073, 238072, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Ocean''s Twelve makes Ocean''s Eleven a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (86274, 310726, 8, 'EliLevey', 'Both movies rely on tense action, strong momentum, and memorable set pieces, so Speed is a good follow-up to Die Hard.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (340901, 90772, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Truman Show, The makes Donnie Darko a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (87280, 195300, 8, 'EliLevey', 'Both movies mix romance, charm, and very watchable character moments, making Love Actually a sensible recommendation after Dirty Dancing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 56304, 8, 'EliLevey', 'Both films focus on crime, tension, sharp characters, and memorable dialogue, making Casino a strong recommendation for someone who enjoyed Goodfellas.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (121538, 18960, 8, 'EliLevey', 'Both movies rely on tense action, strong momentum, and memorable set pieces, so Apocalypse Now is a good follow-up to Full Metal Jacket.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159175, 159172, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Indiana Jones and the Temple of Doom makes Indiana Jones and the Last Crusade a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (163715, 238072, 9, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Italian Job, The makes Ocean''s Eleven a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (16006, 375827, 9, 'EliLevey', 'Both movies lean on broad comedy, quotable scenes, and easy rewatch value, making Zoolander a strong comedy recommendation after Anchorman: The Legend of Ron Burgundy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56304, 131780, 8, 'EliLevey', 'Both films focus on crime, tension, sharp characters, and memorable dialogue, making Goodfellas a strong recommendation for someone who enjoyed Casino.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313474, 313476, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Star Wars: Episode I - The Phantom Menace makes Star Wars: Episode II - Attack of the Clones a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (340652, 2238, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Troy makes 300 a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (113504, 218415, 9, 'EliLevey', 'Both movies are animated crowd-pleasers with strong humor, memorable characters, and emotional moments, so Monsters Inc fits well after Finding Nemo.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139653, 139654, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Harry Potter and the Half-Blood Prince makes Harry Potter and the Order of the Phoenix a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (129185, 340652, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Gladiator makes Troy a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (66286, 275453, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Coach Carter makes Remember the Titans a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (348944, 297761, 9, 'EliLevey', 'Both films focus on crime, tension, sharp characters, and memorable dialogue, making Se7en a strong recommendation for someone who enjoyed Usual Suspects, The.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194497, 194502, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Lord of the Rings: The Fellowship of the Ring, The makes Lord of the Rings: The Two Towers, The a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (248878, 119358, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Parent Trap, The makes Freaky Friday a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (254986, 290070, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Pianist, The makes Schindler''s List a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194500, 194502, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Lord of the Rings: The Return of the King, The makes Lord of the Rings: The Two Towers, The a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (644, 209133, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying 10 Things I Hate About You makes Mean Girls a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313479, 313478, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Star Wars: Episode VI - Return of the Jedi makes Star Wars: Episode V - The Empire Strikes Back a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (119358, 248878, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Freaky Friday makes Parent Trap, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40187, 142491, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Blade makes Hellboy a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276217, 267038, 9, 'EliLevey', 'Both films focus on crime, tension, sharp characters, and memorable dialogue, making Pulp Fiction a strong recommendation for someone who enjoyed Reservoir Dogs.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (302329, 40187, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Sin City makes Blade a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194123, 66286, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Longest Yard, The makes Coach Carter a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256631, 256632, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Pirates of the Caribbean 2 makes Pirates of the Caribbean: The Curse of the Black Pearl a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (207157, 138797, 9, 'EliLevey', 'Both movies lean on broad comedy, quotable scenes, and easy rewatch value, making Happy Gilmore a strong comedy recommendation after Mask, The.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30955, 30967, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Batman makes Batman Returns a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (328272, 18979, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Terminal, The makes Apollo 13 a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (209133, 66194, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Mean Girls makes Clueless a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280305, 280284, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Rocky V makes Rocky IV a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 159172, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Raiders of the Lost Ark makes Indiana Jones and the Last Crusade a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139652, 139655, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Harry Potter and the Goblet of Fire makes Harry Potter and the Prisoner of Azkaban a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30967, 30955, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Batman Returns makes Batman a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (34077, 113277, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Benjamin Button makes Finding Neverland a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (310726, 86274, 8, 'EliLevey', 'Both movies rely on tense action, strong momentum, and memorable set pieces, so Die Hard is a good follow-up to Speed.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312150, 312151, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Spy Kids makes Spy Kids 2: Island of Lost Dreams a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139650, 139657, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Harry Potter and the Chamber of Secrets makes Harry Potter and the Sorcerer''s Stone a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (209591, 235541, 8, 'EliLevey', 'Both movies mix romance, charm, and very watchable character moments, making Notebook, The a sensible recommendation after Meet Joe Black.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337168, 337166, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Toy Story 2 makes Toy Story a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139655, 139652, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Harry Potter and the Prisoner of Azkaban makes Harry Potter and the Goblet of Fire a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 176712, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Kill Bill: Vol. 1 makes Kill Bill Vol. 2 a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280282, 280284, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Rocky III makes Rocky IV a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 134077, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Shawshank Redemption, The makes Green Mile, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313479, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Star Wars: Episode V - The Empire Strikes Back makes Star Wars: Episode VI - Return of the Jedi a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30965, 30967, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Batman Forever makes Batman Returns a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (142491, 40187, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Hellboy makes Blade a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289666, 291221, 8, 'EliLevey', 'Both movies use suspense, atmosphere, and memorable genre moments, so Scream should appeal to someone who liked Scary Movie.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297761, 301540, 8, 'EliLevey', 'Both movies use suspense, atmosphere, and memorable genre moments, so Silence of the Lambs, The should appeal to someone who liked Se7en.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (134979, 30959, 9, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Dark Knight, The makes Batman Begins a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (178103, 165961, 8, 'EliLevey', 'Both movies use suspense, atmosphere, and memorable genre moments, so Jaws should appeal to someone who liked Jurassic Park.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (113277, 34077, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Finding Neverland makes Benjamin Button a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (257756, 160524, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Prestige, The makes Insomnia a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (190590, 276217, 9, 'EliLevey', 'Both films focus on crime, tension, sharp characters, and memorable dialogue, making Reservoir Dogs a strong recommendation for someone who enjoyed Leon: The Professional.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215670, 257756, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Memento makes Prestige, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (330566, 141544, 8, 'EliLevey', 'Both films focus on crime, tension, sharp characters, and memorable dialogue, making Heat a strong recommendation for someone who enjoyed The Departed.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10830, 10920, 8, 'EliLevey', 'Both movies use suspense, atmosphere, and memorable genre moments, so Aliens should appeal to someone who liked Alien.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 134979, 9, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Batman Begins makes Dark Knight, The a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40199, 65764, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Blade Runner makes Clockwork Orange, A a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 166917, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Catch Me If You Can makes Jerry Maguire a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (59578, 97727, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Charlie and the Chocolate Factory makes Edward Scissorhands a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (92573, 120574, 9, 'EliLevey', 'Both movies offer stylish spy adventure, memorable action, and classic franchise appeal, so fans of Dr. No are likely to enjoy From Russia with Love as well.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 332065, 9, 'EliLevey', 'Both movies offer stylish spy adventure, memorable action, and classic franchise appeal, so fans of Goldfinger are likely to enjoy Thunderball as well.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 271095, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Indiana Jones and the Last Crusade makes Raiders of the Lost Ark a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159665, 176711, 9, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Inglorious Bastards makes Kill Bill: Vol. 1 a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (165961, 10830, 8, 'EliLevey', 'Both movies use suspense, atmosphere, and memorable genre moments, so Alien should appeal to someone who liked Jaws.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176712, 176711, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Kill Bill Vol. 2 makes Kill Bill: Vol. 1 a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (185628, 45128, 9, 'EliLevey', 'Both movies rely on tense action, strong momentum, and memorable set pieces, so Bourne Identity, The is a good follow-up to Last Samurai, The.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215876, 215879, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Mission Impossible makes Mission Impossible II a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215879, 215876, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Mission Impossible II makes Mission Impossible a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (220805, 163715, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Mr. and Mrs. Smith makes Italian Job, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (263360, 235790, 8, 'EliLevey', 'Both movies mix romance, charm, and very watchable character moments, making Notting Hill a sensible recommendation after Pretty Woman.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280281, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Rocky makes Rocky II a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280281, 280270, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Rocky II makes Rocky a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 39551, 9, 'EliLevey', 'Both movies rely on tense action, strong momentum, and memorable set pieces, so Black Hawk Down is a good follow-up to Saving Private Ryan.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (300230, 300229, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Shrek 2 makes Shrek a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311038, 311037, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Spider-Man 2 makes Spider-Man a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313477, 313476, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Star Wars Episode III makes Star Wars: Episode II - Attack of the Clones a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (326155, 65764, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Taxi Driver makes Clockwork Orange, A a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335835, 86274, 9, 'EliLevey', 'Both movies rely on tense action, strong momentum, and memorable set pieces, so Die Hard is a good follow-up to Top Gun.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (45128, 45129, 9, 'EliLevey', 'Both movies rely on tense action, strong momentum, and memorable set pieces, so Bourne Supremacy, The is a good follow-up to Bourne Identity, The.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (18960, 121538, 8, 'EliLevey', 'Both movies rely on tense action, strong momentum, and memorable set pieces, so Full Metal Jacket is a good follow-up to Apocalypse Now.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (65764, 326155, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Clockwork Orange, A makes Taxi Driver a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 330566, 8, 'EliLevey', 'Both films focus on crime, tension, sharp characters, and memorable dialogue, making The Departed a strong recommendation for someone who enjoyed Heat.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (969, 223799, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying 12 Angry Men makes My Cousin Vinny a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (2238, 340652, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying 300 makes Troy a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (148200, 131885, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Home Alone makes Goonies, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (369458, 142491, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying X-Men makes Hellboy a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (218415, 113504, 9, 'EliLevey', 'Both movies are animated crowd-pleasers with strong humor, memorable characters, and emotional moments, so Finding Nemo fits well after Monsters Inc.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (26846, 26844, 10, 'EliLevey', 'Both movies belong to the same kind of franchise-driven storytelling, with connected themes, familiar energy, and clear audience overlap, so enjoying Back to the Future Part II makes Back to the Future a natural recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (362808, 235790, 8, 'EliLevey', 'Both movies mix romance, charm, and very watchable character moments, making Notting Hill a sensible recommendation after When Harry Met Sally.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (18979, 328272, 8, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Apollo 13 makes Terminal, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120574, 92573, 9, 'EliLevey', 'Both movies offer stylish spy adventure, memorable action, and classic franchise appeal, so fans of From Russia with Love are likely to enjoy Dr. No as well.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (332065, 130953, 9, 'EliLevey', 'Both movies offer stylish spy adventure, memorable action, and classic franchise appeal, so fans of Thunderball are likely to enjoy Goldfinger as well.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (117874, 297838, 9, 'EliLevey', 'Both movies have strong storytelling, memorable performances, and lasting rewatch value, so enjoying Forrest Gump makes Shawshank Redemption, The a worthwhile recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (226939, 9125, 8, 'EliLevey', 'Both movies lean on broad comedy, quotable scenes, and easy rewatch value, making Airplane! a strong comedy recommendation after Naked Gun.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 46169, 9, 'erangolani27', 'Both are visceral, large-scale war epics that place you inside the chaos of battle; if the Omaha Beach landing left you shaken, the Scottish highlands siege will do the same.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 39551, 10, 'erangolani27', 'Back-to-back watches of modern combat cinema at its most unrelenting; both strip away heroics and replace them with exhausting, ground-level survival.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 121538, 9, 'erangolani27', 'Both dissect the machinery of war from the inside, one through the beaches of Normandy, the other through the jungles of Vietnam, each leaving you hollow in the best way.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 257459, 9, 'erangolani27', 'Two unflinching portraits of infantry combat that refuse to romanticise the experience; fans of one almost universally rate the other just as highly.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 18960, 9, 'erangolani27', 'Moving from Spielberg''s World War II realism to Coppola''s hallucinatory Vietnam is a natural double bill for anyone drawn to war cinema that goes beyond spectacle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 330388, 8, 'erangolani27', 'Released the same year and covering the same war, Malick''s meditative counterpoint to Spielberg''s kinetic approach rewards anyone who wants both sides of the coin.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (18960, 121538, 9, 'erangolani27', 'Two Vietnam masterpieces that approach the same war from radically different angles; Kubrick''s detached irony and Coppola''s fever-dream immersion complement each other perfectly.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (18960, 326155, 9, 'erangolani27', 'Both feature isolated, psychologically fractured men driven to a violent endpoint; Scorsese''s Travis Bickle is Travis-as-urban-soldier, Willard is Bickle-sent-upriver.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 131780, 10, 'erangolani27', 'The two films that redefined crime cinema in the nineties; Tarantino''s fragmented cool and Scorsese''s propulsive rise-and-fall share DNA that makes each one richer after you have seen the other.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 164572, 9, 'erangolani27', 'Tarantino''s quieter follow-up rewards fans of Pulp Fiction who want the same sharp dialogue and moral ambiguity delivered at a more deliberate pace.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 176711, 9, 'erangolani27', 'Moving from Tarantino''s interlocking crime vignettes to his operatic revenge saga is a seamless journey through the same obsessive cinephile sensibility.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 306032, 9, 'erangolani27', 'Ritchie''s British crime comedy borrows Pulp Fiction''s overlapping-storylines structure and snappy ensemble energy; fans of one almost always embrace the other.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 276217, 10, 'erangolani27', 'Tarantino''s debut and his breakthrough are inseparable companion pieces that together define his entire aesthetic blueprint.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 56304, 10, 'erangolani27', 'Scorsese''s two definitive mob epics share a narrator-driven rise-and-fall arc, a period soundtrack, and the same commitment to showing the seductive rot of organised crime.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 130128, 10, 'erangolani27', 'The two pillars of American crime cinema; watching both back to back reveals how differently Coppola''s operatic formality and Scorsese''s street-level kinetics approach the same underworld.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 82967, 9, 'erangolani27', 'Scorsese revisiting crime from a new angle; fans of his classic mob work will find the Boston setting and duplicity-driven plot equally electrifying.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 247579, 9, 'erangolani27', 'Both are Fincher exercises in confined, escalating dread; Se7en uses a whole city as its trap, Panic Room shrinks the walls to a single house with equally suffocating effect.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 123435, 9, 'erangolani27', 'Three consecutive Fincher films that share a cold visual palette and a hero who is methodically stripped of control; the paranoid tension transfers perfectly from one to the next.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 348944, 9, 'erangolani27', 'Both were released the same year and both end with a revelation that reframes everything you just watched; a natural double feature for thriller fans.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 210511, 9, 'erangolani27', 'Se7en''s procedural darkness and Memento''s fractured chronology both weaponise narrative structure to maximise dread; fans of one consistently respond to the other.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 253010, 9, 'erangolani27', 'Both are slow-burn stories of confined or hunted men that use an unlikely relationship to carry enormous emotional weight; the redemptive pull is almost identical.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 313059, 9, 'erangolani27', 'Both are Stephen King adaptations built around male friendship, loyalty, and a defining journey; they share the same warm, melancholic register.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (62076, 70248, 9, 'erangolani27', 'Both were released the same year and are the finest expressions of Seventies paranoia cinema; one uses private investigation, the other surveillance, to reach equally bleak conclusions.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (62076, 326155, 8, 'erangolani27', 'Two defining Seventies portraits of urban corruption where the protagonist is slowly consumed by the system he tries to expose or escape.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (207992, 40199, 9, 'erangolani27', 'Both construct fully realised dystopian worlds that use action and visual design to carry genuinely philosophical questions about what it means to be human.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (207992, 214755, 9, 'erangolani27', 'Sci-fi thrillers built around a protagonist discovering the system he trusts is designed to trap him; the action is crisp in both and the ideas hold up on rewatches.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (207992, 61751, 8, 'erangolani27', 'Moving from The Matrix''s heightened digital world to Children of Men''s gritty near-future is a satisfying contrast that shows the full range of what intelligent action sci-fi can do.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40199, 218219, 8, 'erangolani27', 'Both create worlds so visually detailed and morally complex that a single viewing barely scratches the surface; the environmental and existential themes run deep in each.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 271095, 9, 'erangolani27', 'Spielberg''s two defining early-eighties films; one anchored in wonder and childhood emotion, the other in kinetic adventure, both operating at the peak of his craft.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 159172, 9, 'erangolani27', 'Both are warm, crowd-pleasing Spielberg films built on a father-child emotional core that elevates the adventure into something genuinely moving.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 159172, 9, 'erangolani27', 'The best two entries in the Indiana Jones series; Last Crusade recaptures Raiders'' sense of playful adventure while adding the father-son dynamic that gives it extra emotional depth.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 159175, 8, 'erangolani27', 'Temple of Doom is darker and more intense than Raiders but shares the same breathless pace and practical-effects ingenuity that made the first film a landmark.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131885, 96593, 9, 'erangolani27', 'Both are quintessential Eighties adventure films built around groups of children facing something vast and frightening; the sense of childhood wonder is identical.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (82967, 56304, 9, 'erangolani27', 'Scorsese at his most operatic versus Scorsese at his most precise; the duplicity and violence of The Departed find their natural companion in Casino''s slow-burn corruption.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (82967, 209158, 8, 'erangolani27', 'Tracing Scorsese from his raw early street-level work to his polished late-career masterpiece shows how consistent his obsessions with loyalty and betrayal have always been.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (82967, 270971, 8, 'erangolani27', 'Both are unsparing portraits of self-destructive men who cannot separate identity from violence; De Niro''s LaMotta and DiCaprio''s Billy Costigan operate on the same wavelength.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 30955, 9, 'erangolani27', 'The two most creatively distinctive takes on the character; Burton''s gothic expressionism and Nolan''s grounded realism are poles apart yet equally committed to their own vision.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 207992, 8, 'erangolani27', 'Both represent a turning point in action cinema where philosophical weight and practical craft combined to make genuinely intelligent blockbusters.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 164572, 8, 'erangolani27', 'Jackie Brown''s slow-burn character study is the ideal companion to Kill Bill''s kinetic maximalism; both show Tarantino''s range and his deep love of genre cinema.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 176712, 10, 'erangolani27', 'The two halves of one film; Vol. 1 sets up the violence with style and Vol. 2 delivers the emotional and dramatic payoff that makes the journey worthwhile.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194497, 194502, 10, 'erangolani27', 'The first two parts of one of cinema''s greatest continuous narratives; Fellowship establishes the world with breathtaking care, Two Towers expands it with the extraordinary Helm''s Deep sequence.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194497, 194500, 10, 'erangolani27', 'Fellowship sets up a journey that Return of the King concludes with rare emotional satisfaction; the trilogy functions as a single extended film and should be experienced as such.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194502, 194500, 10, 'erangolani27', 'The last two thirds of Jackson''s trilogy are inseparable; Two Towers raises the stakes and Return of the King delivers on every thread with a finale that earns its extended runtime.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313459, 10, 'erangolani27', 'The original and its superior sequel form the core of the saga; Empire adds darkness, complexity, and the franchise''s most shocking revelation to the universe A New Hope created.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313479, 9, 'erangolani27', 'Empire raises every dramatic stake and Return of the Jedi resolves them with genuine emotional weight; together they form the most satisfying consecutive films in the saga.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120574, 130953, 9, 'erangolani27', 'The two films that defined the Bond formula at its most refined; back-to-back they show Connery at his absolute peak and the series at its most focused and intelligent.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120574, 240521, 8, 'erangolani27', 'The two most dramatically grounded early Bond films; both take the threat seriously and pay an emotional price that most entries in the series avoid entirely.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 120574, 8, 'erangolani27', 'GoldenEye revitalised the franchise by returning to the Cold War tension and grounded espionage that made From Russia with Love so effective decades earlier.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (299073, 303564, 9, 'erangolani27', 'Both are psychological horror films that use dread rather than gore to unsettle; Kubrick''s slow architectural horror and Shyamalan''s ghost story share a commitment to atmosphere over shock.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (299073, 240327, 8, 'erangolani27', 'Two of the defining Seventies supernatural horror films; both use a domestic setting and a slow build to create a sense of inescapable doom rather than cheap scares.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (303564, 123435, 9, 'erangolani27', 'Both are built entirely around a structural revelation that forces you to re-evaluate every scene you just watched; the rewatch value is identical and equally rewarding.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (137655, 299073, 9, 'erangolani27', 'The two films that together defined atmospheric horror at the end of the Seventies; Carpenter''s minimalism and Kubrick''s maximalism both use silence and space to generate sustained dread.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (191246, 337166, 9, 'erangolani27', 'Released a year apart, these are the two films that defined what animation could achieve in the Nineties; both use their medium to deliver genuinely affecting emotional narratives.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (191246, 218219, 8, 'erangolani27', 'Lion King''s operatic scope and Mononoke''s ecological complexity are the Eastern and Western peaks of Nineties feature animation; together they show the full range of what the medium can carry.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 59578, 8, 'erangolani27', 'Both are fantasies built around the idea that imagination and friendship are more powerful than anything the adult world can offer; the emotional core is strikingly similar.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (174953, 218219, 10, 'erangolani27', 'Miyazaki''s two great ecological epics that bookend his mature period; both feature a young woman navigating a world on the brink of environmental collapse with grace and determination.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (270971, 326155, 9, 'erangolani27', 'De Niro''s two most devastating Scorsese collaborations; both study men destroyed by their own internal violence, and both remain the benchmark for actor-director partnerships in American cinema.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (270971, 280270, 8, 'erangolani27', 'The definitive boxing film and the ultimate anti-boxing film released within four years of each other; Rocky sells the dream and Raging Bull dismantles it with equal power.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280281, 9, 'erangolani27', 'Rocky II is the rare sequel that earns its existence by deepening the original''s emotional stakes rather than simply repeating them; the two form a natural dramatic unit.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 123849, 8, 'erangolani27', 'Both 2002 films showcase DiCaprio operating at his most charismatic and confident; together they mark the moment he fully crossed from teen idol to serious leading man.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (185628, 46169, 8, 'erangolani27', 'Both are sweeping historical epics where an outsider finds honour and identity within a warrior culture facing extinction; the emotional arc and visual scale are very similar.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (200521, 267038, 8, 'erangolani27', 'Both use a mosaic of interlocking stories to find unexpected emotional connections between strangers; Magnolia takes Pulp Fiction''s structural ambition and turns it toward something rawer and more openly devastating.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (67395, 14477, 9, 'erangolani27', 'Two Spielberg films that confront American history''s most painful chapters with equal gravity; both rest on towering central performances and refuse to look away from suffering.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30686, 276085, 9, 'erangolani27', 'The two most harrowing portraits of addiction in American cinema of that era; Basketball Diaries uses DiCaprio''s physical commitment, Requiem uses Aronofsky''s formal assault to achieve the same devastating effect.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (254986, 290070, 10, 'erangolani27', 'The two most essential Holocaust films in the canon; Spielberg''s sweep and Polanski''s intimacy are complementary perspectives on the same historical catastrophe.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 306032, 9, 'erangolani27', 'Both are slick, endlessly rewatchable heist ensemble films that prioritise wit and style over tension; the pleasure in each comes from watching smart people execute an elegant plan.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 208245, 8, 'erangolani27', 'Both are charming ensemble capers where the pleasure comes entirely from watching supremely confident characters outmanoeuvre everyone around them with a grin.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 271095, 9, 'erangolani27', 'Both are the definitive adventure films of their respective decades; Depp''s Sparrow and Ford''s Jones occupy the same space of roguish, instinctive heroism that audiences find irresistible.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 340652, 8, 'erangolani27', 'Both are big-budget historical adventure epics anchored by charismatic leads; fans of Pirates'' swashbuckling scale will find Troy''s epic ambition equally satisfying.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 131780, 9, 'erangolani27', 'Both are meticulous, long-form crime epics that treat their world with the seriousness of a documentary; the diner scene in Heat and the Copacabana tracking shot in Goodfellas are two of cinema''s great single moments.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 56304, 9, 'erangolani27', 'Both were released the same year and together represent the peak of Nineties crime cinema; Heat''s procedural precision and Casino''s operatic excess are complementary approaches to the same world.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 291698, 8, 'erangolani27', '1995 was the finest year for serious crime cinema in decades; Heat and Se7en represent its two poles, one a classical procedural and the other a psychological assault.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130128, 56304, 9, 'erangolani27', 'The founding text and one of the finest extensions of American crime cinema; Coppola''s operatic family tragedy and Scorsese''s Vegas deconstruction speak the same language across twenty years.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (49696, 62076, 8, 'erangolani27', 'Both are genre films that use the conventions of their form to deliver something far darker and more morally complex than their surfaces suggest; the endings of each are among cinema''s most memorable.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (348944, 123435, 9, 'erangolani27', 'Two of the finest twist thrillers ever made; The Usual Suspects inverts your understanding of what you saw and The Game does the same to your understanding of what is real.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (26844, 131885, 9, 'erangolani27', 'Two 1985 adventure films that defined what it meant to be a child who loved movies in the Eighties; the sense of invention, stakes, and pure cinematic joy is identical in both.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (186439, 130128, 9, 'erangolani27', 'The two films most often cited as the pinnacle of classical Hollywood storytelling; both use vast canvases to tell intimate stories about men consumed by the roles history forces on them.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (233058, 299073, 8, 'erangolani27', 'Both are slow-burn supernatural thrillers built around a solitary protagonist drawn deeper into an occult mystery; the unsettling atmosphere in each rewards patient viewers.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (106790, 62076, 8, 'erangolani27', 'Both use genre conventions to excavate longing, loss, and moral failure; Wong Kar-wai''s lush restraint and Polanski''s cynical noir are stylistically opposite but thematically inseparable.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313059, 26844, 8, 'erangolani27', 'Both are deeply Eighties films built on nostalgia and the specific texture of American boyhood; Stand by Me is the elegiac version of the same emotional territory Back to the Future celebrates.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280282, 7, 'erangolani27', 'Rocky III trades the original''s gritty realism for a more commercial formula but retains enough of Stallone''s commitment and the underdog spirit to make it a satisfying if lighter companion.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 240521, 8, 'erangolani27', 'Two of the most dramatically ambitious early Bond films; Goldfinger perfects the formula and OHMSS is the one entry that dares to break it with genuine emotional consequence.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (254986, 67395, 9, 'erangolani27', 'Both are slow, devastating portraits of survival under oppression anchored by extraordinary central performances; the emotional weight is equally distributed across every scene.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276085, 326155, 8, 'erangolani27', 'Both are exercises in slow psychological disintegration; Aronofsky''s formal assault and Scorsese''s street-level realism channel the same fascination with minds that cannot be saved from themselves.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276085, 299073, 8, 'erangolani27', 'Both use filmmaking technique itself as a tool of psychological horror; Aronofsky''s rapid editing and Kubrick''s static geometry are different methods of placing you inside a deteriorating mind.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 116556, 9, 'erangolani27', 'Nolan''s two early films that established his signature interest in fractured chronology and unreliable identity; Following is the rough blueprint for everything Memento perfected.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 123435, 9, 'erangolani27', 'Both are paranoid thrillers where the protagonist cannot trust their own perception of events; the structural disorientation in each is used to maximise genuine suspense rather than mere confusion.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (94741, 96593, 8, 'erangolani27', 'Both demonstrate Spielberg''s mastery of building enormous tension and wonder from minimal ingredients; Duel uses a truck and an empty road, E.T. uses a boy and a bicycle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238073, 238072, 7, 'erangolani27', 'Ocean''s Twelve is a looser and more self-indulgent film than its predecessor but shares enough of the ensemble''s chemistry and playful energy to reward fans who want another round with the same crew.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (164572, 276217, 8, 'erangolani27', 'The quietest and the most explosive entries in Tarantino''s catalogue; both show his command of dialogue, character, and tension even when the approach is completely different.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159665, 267038, 9, 'erangolani27', 'Both showcase Tarantino''s signature ability to make extended dialogue scenes feel more dangerous and exciting than most directors'' action sequences; Waltz''s Hans Landa belongs in the same conversation as Jules Winnfield.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159665, 164572, 8, 'erangolani27', 'Both demonstrate Tarantino''s skill at building tension through conversation; the basement bar scene in Inglourious Basterds and the mall finale in Jackie Brown show the same craftsman at work.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (160524, 291698, 8, 'erangolani27', 'Both are crime procedurals where the detective''s internal moral collapse runs parallel to the external investigation; the Alaskan daylight in Insomnia and Se7en''s perpetual rain are equally oppressive environments.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (160524, 210511, 8, 'erangolani27', 'Two thriller films built around compromised protagonists whose relationship with truth and memory defines the entire narrative; Nolan''s interest in unreliable minds is consistent across both.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 118367, 2, 'erangolani27', 'Four Rooms shares Tarantino''s anthology structure and one of his segments, but the wildly uneven quality and self-indulgent direction from three of the four directors make it a frustrating experience after Pulp Fiction''s perfection.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 1390, 1, 'erangolani27', 'Both are crime-and-chaos films but 1941''s slapstick excess and narrative incoherence are everything Goodfellas'' precision is not; the contrast is almost educational.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 359297, 2, 'erangolani27', 'Both are Spielberg directing Tom Hanks or Cruise through extraordinary stakes, but War of the Worlds sacrifices the human specificity that made Saving Private Ryan essential for hollow spectacle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 159167, 2, 'erangolani27', 'The original is a model of practical adventure filmmaking; the fourth entry drowns its hero in CGI and a plot that never generates the same breathless invention.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194497, 313474, 2, 'erangolani27', 'Both launched major fantasy trilogies in roughly the same era, but Phantom Menace''s dramatic flatness and over-reliance on digital world-building make it a sobering contrast to Fellowship''s rich, tactile craft.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313476, 2, 'erangolani27', 'Empire is the franchise at its most emotionally and dramatically complex; Attack of the Clones is the prequel trilogy at its most stilted, with a romance subplot that undermines everything Empire did so well.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313459, 313474, 2, 'erangolani27', 'Watching the original and the first prequel back to back is a study in how franchise filmmaking can lose its soul; one is lean and mythic, the other bloated and dramatically inert.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 30952, 1, 'erangolani27', 'Batman Begins represents the character treated with total seriousness; Batman and Robin represents his nadir, a film so misguided it nearly ended the franchise entirely.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30955, 30952, 1, 'erangolani27', 'Burton''s gothic original has real personality and craft; Batman and Robin has neither, and the contrast between them is one of the steepest quality drops in franchise history.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280305, 2, 'erangolani27', 'Rocky is a model of stripped-back underdog storytelling; Rocky V strips away everything that made the original resonate without replacing it with anything of comparable value.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 256631, 3, 'erangolani27', 'The original is a tightly constructed adventure with a fresh central performance; the sequel piles on subplots and set-pieces until the whole thing loses the focused charm that made the first work.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (300229, 300230, 5, 'erangolani27', 'Shrek''s subversive wit is genuinely surprising the first time; Shrek 2 is a competent and entertaining sequel but the surprise is gone and the jokes rely more heavily on pop-culture references that have aged less gracefully.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188507, 188511, 2, 'erangolani27', 'The original Lethal Weapon works because the central relationship feels dangerous and real; by the fourth film the formula is running entirely on fumes and goodwill.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 118367, 2, 'erangolani27', 'Kill Bill demonstrates Tarantino''s complete command of genre and tone; Four Rooms, which includes one of his segments, shows what happens when that vision is diluted by inconsistent collaborators.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120574, 85871, 2, 'erangolani27', 'From Russia with Love is the Bond series at its most grounded and intelligent; Diamonds Are Forever is a campy regression that squanders Connery''s return with a plot that never takes itself seriously.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120574, 218808, 1, 'erangolani27', 'The franchise''s most disciplined entry paired with its most absurd; Moonraker abandons all pretence of espionage realism in favour of a space-opera parody that betrays everything From Russia with Love established.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120574, 86263, 1, 'erangolani27', 'The finest Cold War Bond thriller and the worst modern Bond entry represent the outer limits of what the franchise is capable of; the CGI and self-parody of Die Another Day are everything From Russia with Love is not.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 354178, 2, 'erangolani27', 'Goldfinger gave the franchise its template; A View to a Kill demonstrates how tired that template had become twenty years later, with an aging Moore going through motions the series had long since exhausted.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 335336, 2, 'erangolani27', 'GoldenEye revitalised the Bond franchise with genuine tension and a strong villain; Tomorrow Never Dies, released just two years later, reverts to a generic media-mogul plot that wastes its premise.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 86263, 1, 'erangolani27', 'GoldenEye showed what a modern Bond film could achieve with craft and restraint; Die Another Day is the embarrassing end-point of the same era, undoing all that goodwill with excess and poor CGI.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (240521, 218808, 1, 'erangolani27', 'OHMSS is the one Bond film brave enough to let its hero suffer genuine loss; Moonraker''s campy space adventure represents the complete abandonment of that emotional ambition a decade later.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (299073, 44238, 1, 'erangolani27', 'The Shining is a masterclass in sustained psychological horror; Bordello of Blood is a cheap horror-comedy that mistakes gross-out gags for genuine unease.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (137655, 44238, 1, 'erangolani27', 'Halloween invented many of the tropes that Bordello of Blood later drains of all menace; watching both in sequence is a lesson in the difference between craft and exploitation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (207992, 350424, 3, 'erangolani27', 'The Matrix uses its reality-questioning premise with visual and philosophical conviction; Vanilla Sky covers similar philosophical ground but buries it under a self-indulgent romantic mystery that never earns its ambition.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40199, 218808, 1, 'erangolani27', 'Both are late-Seventies to early-Eighties science fiction, but Blade Runner uses its future setting for genuine philosophical inquiry while Moonraker reduces the genre to campy spectacle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 200864, 1, 'erangolani27', 'Shawshank uses its confined setting to explore hope and human dignity with devastating effect; Maid in Manhattan uses a similar Cinderella framework to deliver something entirely frictionless and forgettable.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 263360, 2, 'erangolani27', 'Both are feel-good films built around an unlikely relationship, but Shawshank earns every emotional beat through accumulated suffering while Pretty Woman offers comfort without cost.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 46878, 1, 'erangolani27', 'Pairing one of the most emotionally rigorous films ever made with one of the laziest romantic comedy sequels is an instructive contrast in what storytelling ambition looks like.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130128, 53921, 1, 'erangolani27', 'The Godfather is the defining film about power, loyalty, and corruption; Cannes Man is a self-indulgent industry comedy that lacks the discipline to make a single scene land.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 53921, 1, 'erangolani27', 'Tarantino''s masterwork shares a film-industry backdrop with Cannes Man but the comparison ends entirely there; one is a work of total creative control and the other is an unfocused vanity project.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 98681, 1, 'erangolani27', 'Goodfellas operates with the precision and authority of a master filmmaker; El Mariachi: 10 Years Later is a weak supplementary piece that adds nothing to its source material.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (191246, 264157, 1, 'erangolani27', 'The Lion King is one of the most emotionally and musically ambitious animated features ever made; Princess Diaries 2 is a pleasant but entirely disposable live-action sequel.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 244421, 1, 'erangolani27', 'Toy Story reinvented what animated storytelling could achieve; The Other Sister is a well-meaning but predictable drama that has nothing in common beyond a broadly sympathetic emotional register.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (59578, 74259, 2, 'erangolani27', 'Both feature Tim Burton''s aesthetic sensibility but Charlie and the Chocolate Factory channels it into something genuinely imaginative while Cry-Baby''s parody ambitions rarely land with the intended impact.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 1390, 1, 'erangolani27', 'Both are Spielberg films, but 1941 is his most chaotic and least focused effort; watching it after E.T. reveals how completely he had found his voice by 1982 by showing how lost it was just three years earlier.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 359297, 2, 'erangolani27', 'E.T. achieves its emotional impact through intimacy and a child''s perspective; War of the Worlds sacrifices the same child-centred framing for hollow spectacle that never generates equivalent feeling.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (14477, 359297, 2, 'erangolani27', 'Both are Spielberg films dealing with survival under impossible circumstances, but Amistad grounds its horror in historical truth while War of the Worlds mistakes kinetic chaos for genuine stakes.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56304, 178994, 2, 'erangolani27', 'Casino is Scorsese operating at full cinematic power; Knockaround Guys borrows the mobster milieu but delivers a competent and entirely forgettable B-picture in comparison.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 69812, 2, 'erangolani27', 'Pulp Fiction uses its non-linear structure to create genuine meaning; Conspiracy Theory uses a superficially similar paranoid energy but drifts into generic thriller territory long before its conclusion.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 69812, 2, 'erangolani27', 'Heat''s procedural rigour and psychological depth make Conspiracy Theory''s romantic thriller contrivances feel particularly thin in comparison.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280284, 3, 'erangolani27', 'Rocky''s power comes from its scraped-together authenticity; Rocky IV replaces that with Cold War mythology and a training montage that has more in common with a music video than the original film.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280281, 280282, 3, 'erangolani27', 'Rocky II earns its sequel status by building on the original''s emotional foundation; Rocky III trades genuine drama for a commercial formula that the series never fully recovered from.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (306032, 41518, 3, 'erangolani27', 'Snatch''s overlapping crime plots crackle with invention and dark comedy; Blow covers similar criminal milieu but opts for a straightforward biopic structure that loses the genre energy entirely.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (62076, 258948, 1, 'erangolani27', 'Both are neo-noir films built around dangerous women and male vulnerability, but Chinatown uses that template to construct one of cinema''s great tragedies while Poison Ivy tips into melodrama that undercuts its own tension.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (233058, 44238, 1, 'erangolani27', 'Both attempt to combine occult horror with dark comedy but The Ninth Gate''s brooding atmosphere is everything Bordello of Blood''s cheap shocks are not.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (200521, 62460, 2, 'erangolani27', 'Both are ensemble films released within a year of each other, but Magnolia uses its mosaic structure to deliver something shattering and complex while Chocolat settles for feel-good charm that evaporates immediately after.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (247579, 258948, 2, 'erangolani27', 'Both are contained thrillers about a woman under threat in her own home, but Panic Room''s technical precision and Fincher''s control of tension make Poison Ivy''s melodramatic contrivances feel particularly obvious in comparison.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (208245, 109421, 2, 'erangolani27', 'Both are crowd-pleasing action-adjacent films built around charismatic leads, but Maverick''s wit and period charm make The Fast and the Furious'' stripped-down street racing feel thin and disposable.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 200864, 2, 'erangolani27', 'Both are light, charming films built around an attractive lead and a secret identity, but Catch Me If You Can''s true story and DiCaprio''s committed performance give it genuine stakes that Maid in Manhattan never attempts.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30686, 46878, 1, 'erangolani27', 'The Basketball Diaries uses its star''s physical commitment to portray addiction with real anguish; pairing it with Bridget Jones 2''s weightless romantic comedy underscores how differently cinema can treat personal struggle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (82967, 53921, 1, 'erangolani27', 'The Departed is a masterpiece of sustained deception and moral complexity; Cannes Man is a self-satisfied industry comedy that never earns a single laugh.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (304862, 44238, 1, 'erangolani27', 'Both attempt gothic horror with a comic edge but Sleepy Hollow''s production design and Depp''s performance give it genuine atmosphere that Bordello of Blood''s cheap sensibility cannot approach.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (94741, 109421, 2, 'erangolani27', 'Both use vehicular pursuit as their central dramatic engine but Duel uses the format to generate existential dread with almost no dialogue while The Fast and the Furious treats it as pure spectacle with nothing beneath the surface.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39551, 1390, 1, 'erangolani27', 'Black Hawk Down depicts real military chaos with a solemnity that honours its subject; 1941 treats military chaos as slapstick farce and never generates a moment of comparable tension or weight.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40199, 370017, 1, 'erangolani27', 'Blade Runner uses its action sequences to advance philosophical questions about identity and mortality; XXX uses its action sequences to demonstrate that action sequences exist.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (214755, 370017, 1, 'erangolani27', 'Minority Report embeds its action in a carefully constructed moral and political framework; XXX strips away every trace of such ambition to deliver an entirely empty exercise in stunt choreography.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313059, 264157, 1, 'erangolani27', 'Stand by Me uses childhood friendship and a coming-of-age journey to achieve something genuinely moving; Princess Diaries 2 uses similar YA ingredients to deliver something frictionless and immediately forgettable.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (186439, 372525, 1, 'erangolani27', 'Lawrence of Arabia is among the most formally ambitious films ever made; Young Doctors in Love is a broad parody comedy that represents the opposite end of cinematic ambition in almost every conceivable way.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (191246, 372525, 1, 'erangolani27', 'Both are from the same broad era but the comparison ends entirely there; The Lion King is a landmark of emotional and musical cinema while Young Doctors in Love relies on cheap parody gags that land rarely.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (26844, 98681, 1, 'erangolani27', 'Back to the Future is a near-perfect piece of popular filmmaking; El Mariachi: 10 Years Later is a weak supplementary piece that cannot justify its own existence alongside the original film it revisits.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (106790, 200864, 1, 'erangolani27', 'Both are romantic films built around concealed identity and class difference, but In the Mood for Love uses that premise to achieve something almost unbearably elegant while Maid in Manhattan settles for comfortable predictability.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (348944, 244421, 1, 'erangolani27', 'The Usual Suspects is a meticulously constructed thriller whose every detail serves its central deception; The Other Sister is a well-meaning drama that telegraphs every beat from the opening scene.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (233058, 69812, 3, 'erangolani27', 'Both are paranoid thrillers built around a sceptic drawn into a conspiracy larger than himself, but The Ninth Gate''s European atmosphere and Polanski''s formal control give it a menace that Conspiracy Theory''s genre mechanics cannot replicate.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (49696, 85871, 1, 'erangolani27', 'Leone''s masterpiece uses the Western genre to explore moral nihilism with extraordinary craft; Diamonds Are Forever uses the spy genre for campy entertainment that mistakes knowing self-parody for genuine wit.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (164572, 14132, 1, 'erangolani27', 'Jackie Brown''s mature, character-driven crime story has nothing in common with American Pie 2 beyond a broadly ensemble cast; the contrast in dramatic ambition and execution is almost total.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (270971, 14132, 1, 'erangolani27', 'Raging Bull''s unflinching study of self-destruction is as far from American Pie 2''s cheerful vulgarity as cinema gets; the only meaningful connection is that both feature men behaving badly.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (174953, 264157, 1, 'erangolani27', 'Both feature young women navigating worlds that are trying to define them, but Nausicaa uses that premise for genuine ecological and political depth while Princess Diaries 2 settles for fairy-tale convention.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 46878, 1, 'erangolani27', 'Heat is one of cinema''s great portraits of professional obsession and lonely discipline; Bridget Jones 2 offers the opposite of all those qualities as comfort viewing, and the contrast could not be starker.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (254986, 372525, 1, 'erangolani27', 'The Pianist uses its wartime setting to deliver one of cinema''s most devastating portrayals of survival; pairing it with Young Doctors in Love''s hospital parody comedy is an exercise in extreme tonal contrast.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 159167, 2, 'erangolani27', 'Last Crusade is the perfect close to the original trilogy with genuine father-son warmth; the fourth film reopens that closed door and walks through it into a story that never justifies the reunion.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159175, 159167, 2, 'erangolani27', 'Temple of Doom at its most extreme still generates kinetic adventure; Crystal Skull generates mostly disappointment, with digital spectacle standing in for the practical ingenuity that defined the earlier films.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46169, 354178, 1, 'erangolani27', 'Braveheart uses its epic scale to deliver genuine emotion and sacrifice; A View to a Kill mistakes scale for impact and delivers a tired spy adventure that wastes every resource at its disposal.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 218808, 2, 'erangolani27', 'Both are adventure films that push their hero into fantastical set-pieces, but Pirates grounds its escapism in character and practical invention while Moonraker abandons both in favour of increasingly absurd spectacle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276085, 62460, 1, 'erangolani27', 'Both were released the same year but occupy completely different emotional registers; Requiem for a Dream is one of cinema''s most punishing experiences and Chocolat is one of its most comfortable, and the contrast is instructive.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (306032, 53921, 1, 'erangolani27', 'Both attempt to use the film industry or criminal world as a comedic backdrop, but Snatch''s tight plotting and sharp ensemble make Cannes Man''s shapeless self-indulgence feel particularly unearned.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (123435, 244421, 1, 'erangolani27', 'The Game engineers its protagonist''s psychological collapse with meticulous precision; The Other Sister is a sentimental drama where every development is telegraphed and every resolution comfortably predictable.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 14132, 1, 'erangolani27', 'Memento uses narrative structure itself as a dramatic instrument to explore how identity is constructed; American Pie 2 uses its sequel status mainly to recycle jokes from the original with diminishing returns.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (185628, 335336, 1, 'erangolani27', 'The Last Samurai earns its emotional payoff through a serious engagement with cultural collision and loss; Tomorrow Never Dies is a slick but hollow Bond entry where the stakes never feel real.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39551, 370017, 1, 'erangolani27', 'Black Hawk Down uses real events and documentary-level detail to make the cost of combat feel viscerally real; XXX deploys similar action spectacle purely for entertainment with no interest in consequences.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (233058, 372525, 1, 'erangolani27', 'The Ninth Gate sustains a brooding occult atmosphere across its entire runtime; Young Doctors in Love is a parody comedy that mistakes irreverence for wit and rarely achieves either.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97360, 53921, 2, 'erangolani27', 'Both are films about filmmaking outsiders, but Ed Wood transforms its subject''s incompetence into something genuinely moving through Depp''s committed performance and Burton''s affectionate direction; Cannes Man achieves nothing comparable.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (304862, 372525, 1, 'erangolani27', 'Both attempt genre parody but Sleepy Hollow is a fully realised gothic horror with real atmosphere while Young Doctors in Love is a broad comedy that exhausts its premise in the first act.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (116556, 53921, 2, 'erangolani27', 'Both are low-budget films made outside the mainstream, but Following uses its constraints to produce something formally inventive while Cannes Man uses its festival setting to deliver an unfocused vanity project.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (67388, 69812, 2, 'erangolani27', 'Both are films about obsession and identity built around a compulsive pursuit, but Color of Money uses pool as a genuine dramatic vehicle while Conspiracy Theory''s paranoid plotting never generates equivalent tension.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (253010, 200864, 1, 'erangolani27', 'Both use a cross-class relationship as their emotional engine, but Perfect World earns every moment of feeling through real dramatic risk while Maid in Manhattan never departs from its genre comfort zone.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30976, 30952, 1, 'erangolani27', 'Mask of the Phantasm demonstrates how seriously the Batman mythology can be treated even in animation; Batman and Robin demonstrates the opposite with equal thoroughness.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30965, 30952, 3, 'erangolani27', 'Batman Forever is a flawed but watchable compromise between Burton''s darkness and a more commercial sensibility; Batman and Robin abandons even that compromise and delivers a film that is almost entirely indefensible.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291495, 372525, 2, 'erangolani27', 'Both are comedies built around broad satirical targets, but Scrooged uses Murray''s deadpan delivery and the Dickens framework to earn its sentimental finale while Young Doctors in Love never develops enough comic identity to justify its parody premise.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312150, 370017, 2, 'erangolani27', 'Both are action films aimed at demonstrating that spectacle can substitute for character, but Spy Kids at least has a genuine warmth and family dynamic beneath its set-pieces while XXX has nothing beneath its set-pieces at all.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276085, 30686, 9, 'erangolani27', 'Both are unflinching portraits of addiction that use a young man''s disintegration as their emotional core; DiCaprio''s physical rawness in Basketball Diaries finds its formal counterpart in Aronofsky''s assault on the senses.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290070, 254986, 10, 'erangolani27', 'Schindler''s List and The Pianist are the two most essential Holocaust films ever made; experienced together they offer complementary perspectives on survival, witness, and the specific horror of that history.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46169, 340652, 8, 'erangolani27', 'Both are sword-and-sandal epics built around legendary battles and personal sacrifice; if Braveheart''s emotional sweep appeals to you, Troy''s similar scale and ambition will land in the same place.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (67395, 290070, 9, 'erangolani27', 'Both are Spielberg films that demand something from the audience and deliver something lasting in return; each uses a particular historical horror to explore survival, identity, and the stubborn persistence of dignity.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56304, 209158, 8, 'erangolani27', 'Tracing Scorsese from his earliest street-level crime films to his most operatic is one of cinema''s great director retrospectives; the thematic obsessions remain identical across three decades.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 348944, 9, 'erangolani27', 'Both are ensemble crime films built around an elaborate con that the audience only fully understands at the very end; Ocean''s Eleven plays it for charm while The Usual Suspects plays it for menace.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159665, 118367, 1, 'erangolani27', 'Inglourious Basterds is Tarantino''s most controlled and formally ambitious film; Four Rooms represents the opposite of controlled, an anthology that mistakes chaos for energy and never achieves the discipline that makes Tarantino''s best work so effective.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276217, 53921, 1, 'erangolani27', 'Reservoir Dogs announced a major filmmaking voice with extraordinary efficiency and no wasted energy; Cannes Man uses the film world as a backdrop without finding anything interesting to say about it.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97360, 372525, 1, 'erangolani27', 'Ed Wood finds genuine pathos in its subject''s incompetence and turns it into a love letter to the creative impulse; Young Doctors in Love treats incompetence as straightforward comedy fodder and never elevates it.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (185704, 372525, 1, 'erangolani27', 'Last Temptation of Christ is one of the most theologically serious and genuinely provocative films ever made; pairing it with a hospital parody comedy underscores how wide cinema''s spectrum of ambition truly is.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (160524, 86263, 1, 'erangolani27', 'Both were released in 2002 and both feature a protagonist operating under extreme psychological pressure, but Insomnia uses that premise to build a genuine moral thriller while Die Another Day delivers only hollow spectacle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (177369, 53921, 1, 'erangolani27', 'King of Comedy uses celebrity obsession and the entertainment industry as material for something genuinely unsettling; Cannes Man mines the same industry backdrop for cheap laughs and produces almost none.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (181766, 1390, 1, 'erangolani27', 'Kundun is one of Scorsese''s most patient and formally beautiful films; 1941 is one of Spielberg''s least controlled, and the contrast between the two directors'' weakest and most meditative efforts is instructive.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (160375, 280305, 2, 'erangolani27', 'Both deal with physical limitation and the struggle to define identity outside of athletic achievement, but Inside Moves handles that theme with quiet dignity while Rocky V reduces it to franchise mechanics.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (253010, 46878, 1, 'erangolani27', 'Perfect World earns its emotional resonance through real dramatic risk and a relationship built on genuine complexity; Bridget Jones 2 settles for the comfortable predictability of a sequel that adds nothing to what came before.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (114955, 280305, 2, 'erangolani27', 'Both are coming-of-age stories about young men learning the limits of hero worship, but Flamingo Kid handles that lesson with wit and specificity while Rocky V turns the same theme into a tired franchise entry.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (116556, 370017, 1, 'erangolani27', 'Following uses its extreme budget constraints to produce something formally inventive and genuinely tense; XXX uses its enormous budget to produce something formally inert and entirely disposable.', null); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (311037,311038,10,'Yaron','Manual - direct sequel','Direct sequel and the peak of the Raimi trilogy; essential for anyone who liked the first.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313459,313478,10,'Yaron','Manual - direct sequel','Empire continues the story directly and deepens every character while raising the stakes.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313478,313479,9,'Yaron','Manual - direct sequel','Return of the Jedi resolves the cliffhanger ending of Empire; you need both.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (194497,194502,10,'Yaron','Manual - direct sequel','One continuous story split in two; finishing Fellowship leads straight into Two Towers.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (194502,194500,9,'Yaron','Manual - direct sequel','Two Towers builds directly to the battles and conclusion of Return of the King.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280270,280281,8,'Yaron','Manual - direct sequel','Same franchise and heart; Rocky II continues the underdog arc straight from the first.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (129185,2238,10,'Yaron','Manual - same genre - ancient epic','Both are my favorite ancient-world battle epics; same spectacle, same adrenaline.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (129185,340652,8,'Yaron','Manual - same genre - ancient epic','Same ancient setting and large-scale warfare; a natural watch after Gladiator.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (46169,129185,9,'Yaron','Manual - same theme - revenge epic','Two historical revenge epics; both follow a warrior who loses everything and fights back.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,92573,8,'Yaron','Manual - same franchise - Bond','The two Connery Bonds that define the franchise; the original and its iconic follow-up.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (289109,290070,10,'Yaron','Manual - same director + WWII','Spielberg''s two WWII masterpieces; if one moved you, the other will too.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (257459,121538,8,'Yaron','Manual - same theme - Vietnam War','The two definitive Vietnam War films; both unflinching and essential for war-film fans.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (86274,86279,8,'Yaron','Manual - direct sequel','Same Bruce Willis action formula; the sequel runs it in an airport and still delivers.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (10830,10920,8,'Yaron','Manual - direct sequel','Aliens picks up directly and shifts from horror to action while keeping what made Alien great.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (129185,33923,9,'Yaron','Manual - same genre - Roman epic','Both Roman epics built around a wronged man seeking justice; near-identical emotional arc.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (311037,30955,8,'Yaron','Manual - same genre - superhero','Two films that defined serious superhero cinema; both ground the origin in real emotion.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (289109,39551,9,'Yaron','Manual - same genre - war combat','The two most viscerally realistic modern combat films; both built on chaos and authenticity.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130945,335336,7,'Yaron','Manual - same franchise - Bond','Two Brosnan-era Bonds that deliver the spy-thriller formula with strong production value.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (319602,319613,7,'Yaron','Manual - direct sequel','Superman II continues directly with Zod as the villain; same charm as the original.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (191246,191244,8,'Yaron','Manual - same franchise - Lion King','Same Lion King world I love; the sequel carries the emotional depth of the original.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (46169,310455,8,'Yaron','Manual - same theme - historical epic','Two sweeping warrior-revolt epics I rate highly; ancient and historical battle at full scale.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313459,313474,1,'Yaron','Manual - same franchise, quality drop','Same universe but the prequel''s weak characters and slow plot let down fans of the original.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313478,313476,1,'Yaron','Manual - same franchise, quality drop','Empire is the peak; Attack of the Clones is the weakest entry. Same universe, opposite quality.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (311038,30952,1,'Yaron','Manual - same genre, quality drop','My top superhero film paired with one widely considered the worst; huge quality gap.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (207992,207991,1,'Yaron','Manual - same franchise, quality drop','The first is a great action film; Revolutions drowns in philosophy. Poor follow-up for fans.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,218808,1,'Yaron','Manual - same franchise, quality drop','Goldfinger is Bond at its best; Moonraker in space breaks the spy-thriller credibility.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280270,280305,2,'Yaron','Manual - same franchise, quality drop','Same franchise but Rocky V is the weakest by far; a big drop from the original.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (238072,238073,2,'Yaron','Manual - same franchise, quality drop','The first is a tight heist; the sequel gets too clever and loses the wit. Weak follow-up.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,354178,2,'Yaron','Manual - same franchise, quality drop','Same franchise, but A View to a Kill is a tired, flat entry next to Goldfinger.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (311038,30965,2,'Yaron','Manual - same genre, quality drop','Spider-Man 2 is the gold standard; Batman Forever is tonally confused. Disappointing follow-up.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (256632,256631,3,'Yaron','Manual - same franchise, similar weakness','Same series and same issues; Pirates 2 is more bloat with diminishing returns.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (129185,25192,2,'Yaron','Manual - tone mismatch','Same production scale but The Aviator is a slow drama; lacks the action Gladiator fans want.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (86274,346059,3,'Yaron','Manual - same genre, weaker copy','Same premise but Under Siege lacks the wit, script and star power that made Die Hard iconic.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (289109,250861,4,'Yaron','Manual - same genre, tone mismatch','Both war films but Patton is a slow, theatrical character study; very different from Ryan''s intensity.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (96593,65811,3,'Yaron','Manual - same director, tone mismatch','Both Spielberg alien films but Close Encounters is slow awe where E.T. is warm adventure.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (332065,218808,3,'Yaron','Manual - same franchise, tone mismatch','Same series but Moonraker is the franchise at its silliest; a clear tone and quality mismatch.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (335835,109421,5,'Yaron','Manual - similar surface, depth gap','Both glossy adrenaline films, but Top Gun has emotional weight where F&F is mostly surface.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (86274,346060,4,'Yaron','Manual - same genre, weaker copy','Same template but Under Siege 2 is a tired sequel; thin script and weaker execution.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (162380,30952,1,'Yaron','Manual - same genre, quality drop','Both superhero films but at opposite ends of quality; Batman and Robin is widely mocked.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (129185,10331,4,'Yaron','Manual - same genre, weak entry','Both are ancient-world epics, but Alexander is a flat, overlong slog next to Gladiator; a weak recommendation despite the shared setting.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (2238,10331,4,'Yaron','Manual - same genre, weak entry','Both depict ancient warfare, but Alexander lacks the propulsive energy of 300 and disappoints on the same battlefield.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (328285,262647,4,'Yaron','Manual - same genre, weak entry','Both are sci-fi action films, but Predator 2 is a weaker city-set sequel that doesn''t match the relentless drive of The Terminator.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (113504,190869,2,'Yaron','Manual - same genre, disliked target','Both are animated films, but Lilo & Stitch didn''t land for me, making it a weak follow-up to a film as strong as Finding Nemo.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (207992,310957,3,'Yaron','Manual - same genre, weak entry','Both are sci-fi films, but Sphere''s slow underwater mystery lacks the kinetic energy that makes The Matrix great.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (141544,90771,4,'Yaron','Manual - same genre, weaker','Both are crime films with strong leads, but Donnie Brasco''s slower, quieter register is a step down from the scale and tension of Heat.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (311038,30967,3,'Yaron','Manual - same genre, weak entry','Both are superhero films, but Batman Returns is cold and distant next to the warmth and craft of Spider-Man 2.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (215879,208503,4,'Yaron','Manual - same genre, weak entry','Both are action films, but Maximum Risk is disposable next to the spectacle and energy of Mission: Impossible II.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (46169,279581,5,'Yaron','Manual - same theme, smaller scale','Both are Scottish Highland warrior films, but Rob Roy is a quieter, smaller story that lacks Braveheart''s epic sweep.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (289109,210671,5,'Yaron','Manual - same genre, milder','Both are WWII films, but Memphis Belle is far milder and more conventional than the visceral intensity of Saving Private Ryan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (191246,47865,5,'Yaron','Manual - same genre, lesser','Both are Disney animal films, but Brother Bear is a lesser entry that doesn''t reach the emotional heights of The Lion King.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (188507,139169,4,'Yaron','Manual - same genre, weaker','Both are action films, but Hard Target is a hollow, style-over-substance piece next to the sharp buddy chemistry of Lethal Weapon.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310726,318163,4,'Yaron','Manual - same genre, weak entry','Both are high-concept action thrillers, but Sudden Death is a thin Van Damme vehicle next to the relentless craft of Speed.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (271095,228313,5,'Yaron','Manual - same genre, lightweight','Both are treasure-hunt adventures, but National Treasure is a lightweight imitation that lacks the craft of Raiders of the Lost Ark.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (131780,294855,4,'Yaron','Manual - same genre, slower','Both are crime films, but Serpico''s slow-burn character study is a quieter, less gripping watch than Goodfellas.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (73436,346059,3,'Yaron','Manual - same genre, weaker','Both are military action films, but Under Siege lacks the script and tension that make Crimson Tide''s submarine standoff so gripping.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (335835,47435,5,'Yaron','Manual - same genre, lesser','Both are military action films, but Broken Arrow is a lesser Travolta vehicle that doesn''t match the passion and craft of Top Gun.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (35522,213231,4,'Yaron','Manual - same genre, milder','Both are action-comedies, but Midnight Run''s gentler road-trip humor lacks the explosive energy of Beverly Hills Cop.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (176712,176711,7,'Yaron','Auto - 10 common actors','Kill Bill was shot as one film; Vol. 1 is the more kinetic half and essential viewing for anyone who saw Vol. 2.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280115,20371,6,'Yaron','Auto - 10 common actors','Both are loud, high-stakes Bruckheimer-style action spectacles; a fan of The Rock will find the same energy in Armageddon.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280282,280270,7,'Yaron','Auto - 11 common actors','Same franchise; Rocky is the original that started it all and the natural watch for anyone who enjoyed Rocky III.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (312170,117314,6,'Yaron','Auto - 11 common actors','Both are Roger Moore-era Bond films with the same tone and style; a natural match within the franchise.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280282,280281,6,'Yaron','Auto - 12 common actors','Same franchise and crowd-pleasing formula; Rocky II sits right alongside Rocky III in quality and tone.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280281,280270,7,'Yaron','Auto - 13 common actors','Same franchise; Rocky II continues directly from the original, which remains the strongest entry.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313479,313459,8,'Yaron','Auto - 13 common actors','Both are core entries in the original Star Wars trilogy; essential viewing for any fan of one.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (30965,30952,1,'Yaron','Auto - 14 common actors','Both are Schumacher-era Batman films widely seen as the weakest of the series; recommending one to a fan of the other offers little.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139657,139652,7,'Yaron','Auto - 15 common actors','Both are Harry Potter entries in the same continuous story; Goblet of Fire raises the stakes and is a natural next watch.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313478,313459,8,'Yaron','Auto - 15 common actors','Both are pillars of the original Star Wars trilogy; the original is essential for anyone who loved Empire.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313479,313478,9,'Yaron','Auto - 15 common actors','Same trilogy; Empire is the high point of the saga and mandatory for any Return of the Jedi fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (319613,319602,7,'Yaron','Auto - 16 common actors','Same franchise; the original Superman sets up everything and is the stronger of the two films.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139652,139650,6,'Yaron','Auto - 19 common actors','Both Harry Potter films from the same continuous story; a fan of one will want the other.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (14132,14131,7,'Yaron','Auto - 20 common actors','Same franchise and comic ensemble; the original American Pie has the same energy fans of the sequel enjoy.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139655,139652,7,'Yaron','Auto - 20 common actors','Consecutive Harry Potter films with the same cast and rising stakes; an easy recommendation for any fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (311038,311037,9,'Yaron','Auto - 20 common actors','Same trilogy; the original Spider-Man sets up everything that makes Spider-Man 2 great and is essential viewing.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (337168,337166,4,'Yaron','Auto - 20 common actors','Both Toy Story films share the same style; competent and warm, but neither fully landed for me, so this is a lukewarm recommendation.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (194502,194497,9,'Yaron','Auto - 22 common actors','Both are core LOTR entries from one continuous story; Fellowship is essential for any Two Towers fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313476,313474,2,'Yaron','Auto - 22 common actors','Both are prequel-trilogy entries I found weak; recommending one to a fan of the other adds little.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (194500,194497,9,'Yaron','Auto - 23 common actors','Both are pillars of the LOTR trilogy; Fellowship begins the story and is essential for anyone who saw Return of the King.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139657,139655,7,'Yaron','Auto - 25 common actors','Both Harry Potter films in the same saga; Azkaban is widely seen as the turning point and a strong next watch.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139655,139650,6,'Yaron','Auto - 28 common actors','Consecutive Harry Potter films with the same cast; a natural recommendation within the series.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (33923,30965,2,'Yaron','Auto - 3 common genres, 36 year gap','Despite a shared genre tag, a sweeping Roman epic and a campy 90s Batman have little in common, and Batman Forever is a weak watch.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (240521,30959,3,'Yaron','Auto - 3 common genres, 36 year gap','A 1960s Bond film and a brooding Batman reboot share little beyond an action label, and Batman Begins isn''t the kind of superhero film I enjoy.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (279581,33923,6,'Yaron','Auto - 3 common genres, 36 year gap','Both are period epics built on honor and combat; a Rob Roy fan may well appreciate the grander scale of Ben-Hur despite the era gap.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (368418,120574,6,'Yaron','Auto - 3 common genres, 36 year gap','Both are Bond films; the leaner, more grounded From Russia with Love is a strong watch even for fans of the later entries.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,207989,4,'Yaron','Auto - 3 common genres, 36 year gap','A 1960s spy adventure and a sci-fi action sequel share only a broad action label; limited overlap makes this a weak match.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,207991,1,'Yaron','Auto - 3 common genres, 36 year gap','Beyond a generic action tag these two have nothing in common, and Matrix Revolutions is the weakest of its trilogy.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,112205,5,'Yaron','Auto - 3 common genres, 37 year gap','A Roman epic and a colourful sci-fi adventure make an odd pair; both are strong films, but a fan of one has no clear reason to expect the other.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,79716,4,'Yaron','Auto - 3 common genres, 37 year gap','A spy adventure and a climate-disaster spectacle overlap only loosely; the connection is thin.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,311038,5,'Yaron','Auto - 3 common genres, 37 year gap','Spider-Man 2 is excellent, but a 1960s Bond film is a strange gateway to it; the pairing is weak despite the quality of the target.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (78530,33923,4,'Yaron','Auto - 3 common genres, 38 year gap','A volcano-disaster film and a Roman epic share little; Ben-Hur is the far better film but not an obvious match for a Dante''s Peak fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (112205,33923,5,'Yaron','Auto - 3 common genres, 38 year gap','Both are spectacle-driven epics in their way, but the sci-fi and ancient-Rome divide makes this only a loose recommendation.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,86263,2,'Yaron','Auto - 3 common genres, 38 year gap','Both are Bond films, but Die Another Day is the franchise at its most over-the-top and a clear step down from Goldfinger.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,289109,6,'Yaron','Auto - 3 common genres, 38 year gap','Both are large-scale, brutal depictions of men at war; a Spartacus fan drawn to its battles will find the same intensity in Saving Private Ryan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,30959,3,'Yaron','Auto - 3 common genres, 38 year gap','A classic Bond and a grounded Batman reboot share only an action label, and Batman Begins isn''t the kind of superhero film I gravitate to.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,313477,5,'Yaron','Auto - 3 common genres, 38 year gap','A 1960s spy film and a Star Wars prequel have little in common beyond spectacle; the match is weak despite Sith being the best of the prequels.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (120574,86263,2,'Yaron','Auto - 3 common genres, 39 year gap','Both are Bond, but Die Another Day''s gadget-heavy excess is a long way from the lean tension of From Russia with Love.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (214755,120574,5,'Yaron','Auto - 3 common genres, 39 year gap','Both are sharp, tense thrillers, but the sci-fi and spy divide plus the decades between them make this only a loose recommendation.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (240521,139653,3,'Yaron','Auto - 3 common genres, 39 year gap','A 1960s Bond film and a Harry Potter sequel share almost nothing in audience or tone; a weak pairing.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (185628,120574,5,'Yaron','Auto - 3 common genres, 40 year gap','Both are well-crafted films, but an honor-driven samurai epic and a Cold War spy thriller appeal to different moods.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,250746,7,'Yaron','Auto - 3 common genres, 40 year gap','Both are sweeping historical war epics built on rebellion and sacrifice; a strong match despite the era between them.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (120574,79716,4,'Yaron','Auto - 3 common genres, 41 year gap','A spy thriller and a disaster spectacle share only broad action appeal; the link is thin.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,30959,3,'Yaron','Auto - 3 common genres, 41 year gap','A classic Bond and a brooding Batman reboot have little in common, and Batman Begins isn''t my preferred kind of superhero film.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (144536,120574,5,'Yaron','Auto - 3 common genres, 41 year gap','Both are adventure films with a charismatic lead, but a desert horse race and a Cold War spy story are quite different journeys.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (176712,120574,5,'Yaron','Auto - 3 common genres, 41 year gap','Both feature stylish action, but Tarantino''s revenge saga and a classic Bond film sit in very different worlds.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (177267,120574,5,'Yaron','Auto - 3 common genres, 41 year gap','Both are action films with a strong hero, but a medieval war epic and a Cold War spy thriller make an uneasy pair.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,39551,6,'Yaron','Auto - 3 common genres, 41 year gap','Both are unflinching, large-scale war films; a fan of Spartacus''s battles will recognise the same intensity in Black Hawk Down.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (340652,120574,5,'Yaron','Auto - 3 common genres, 41 year gap','An ancient war epic and a Cold War spy film overlap only in their action; a loose recommendation at best.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,139653,3,'Yaron','Auto - 3 common genres, 41 year gap','A 1960s Bond film and a Harry Potter sequel share almost no audience or tone; a weak pairing.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (120574,30959,3,'Yaron','Auto - 3 common genres, 42 year gap','A classic spy thriller and a grounded superhero reboot have little common ground, and Batman Begins isn''t my kind of comic film.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (177328,120574,5,'Yaron','Auto - 3 common genres, 42 year gap','Both are grand adventures, but a giant-ape spectacle and a Cold War spy story appeal to quite different tastes.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (120574,2238,6,'Yaron','Auto - 3 common genres, 43 year gap','300 is a favourite of mine and shares Bond''s taste for bold action, though the ancient-epic style is a leap from a 1960s spy film.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,185628,7,'Yaron','Auto - 3 common genres, 43 year gap','Both are epics about warriors and a dying way of life; a Spartacus fan will connect with the honour and scale of The Last Samurai.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139653,130953,3,'Yaron','Auto - 3 common genres, 44 year gap','A Harry Potter sequel and a classic Bond film share little in tone or audience; a weak match.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (185628,33923,7,'Yaron','Auto - 3 common genres, 44 year gap','Both are sweeping historical epics about honour and sacrifice; the grand scale of Ben-Hur suits a Last Samurai fan well.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,176712,5,'Yaron','Auto - 3 common genres, 44 year gap','Both involve combat and revenge, but a Roman epic and a Tarantino genre piece are stylistically far apart.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139653,120574,3,'Yaron','Auto - 3 common genres, 45 year gap','A Harry Potter film and a 1960s Bond thriller appeal to different audiences; the overlap is minimal.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (144536,33923,6,'Yaron','Auto - 3 common genres, 45 year gap','Both are period epics with sweeping set pieces; Ben-Hur''s chariot race echoes the spirit of Hidalgo''s great race.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (176712,33923,5,'Yaron','Auto - 3 common genres, 45 year gap','Both build to a climactic confrontation, but a Roman epic and a modern revenge saga sit in very different traditions.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (177267,33923,7,'Yaron','Auto - 3 common genres, 45 year gap','Both are grand historical epics of battle and conviction; a King Arthur fan will appreciate the scale of Ben-Hur.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,177636,8,'Yaron','Auto - 3 common genres, 45 year gap','Both are epic depictions of ancient and medieval warfare driven by conviction; a natural match for a fan of either.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (177328,33923,6,'Yaron','Auto - 3 common genres, 46 year gap','Both are large-scale spectacle epics, though a giant-ape adventure and a Roman drama draw on different appeals.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (310455,2238,8,'Yaron','Auto - 3 common genres, 46 year gap','Both are muscular ancient-world battle epics about rebellion against an empire; a Spartacus fan will love 300.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (33923,2238,9,'Yaron','Auto - 3 common genres, 47 year gap','Both are towering ancient-world epics; a Ben-Hur fan drawn to its scale and combat will find 300 just as gripping.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (192017,95120,6,'Yaron','Auto - 3 common genres, 48 year gap','Both are classic Disney animated films with strong emotional cores; a natural match despite the decades between them.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (191246,95120,6,'Yaron','Auto - 3 common genres, 53 year gap','Both are Disney animal stories built on heartbreak and growth; a Lion King fan will recognise the same emotional pull in Dumbo.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (152724,28751,6,'Yaron','Auto - 3 common genres, 54 year gap','Both are emotionally rich Disney animated films; a fan of one will appreciate the craft of the other.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (191244,95120,6,'Yaron','Auto - 3 common genres, 57 year gap','Both are Disney animal films with strong emotional themes; a fan of the Lion King world will warm to Dumbo.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (139657,139650,6,'Yaron','Auto - 36 common actors','The first two Harry Potter films share the same cast and tone; Chamber of Secrets follows directly from the Sorcerer''s Stone.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (340652,310455,7,'Yaron','Auto - 4 common genres, 44 year gap','Both are ancient-world epics of war and rebellion; a Troy fan will appreciate the scale and intensity of Spartacus.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (340652,33923,7,'Yaron','Auto - 4 common genres, 45 year gap','Both are sweeping ancient epics; Ben-Hur''s grandeur is a natural step up for a fan of Troy.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (152724,95120,6,'Yaron','Auto - 4 common genres, 55 year gap','Both are classic Disney animated films with real emotional weight; an easy match for an animation fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (86279,86274,7,'Yaron','Auto - 5 common actors','Same franchise; the original Die Hard is the gold standard and essential for any fan of the sequel.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (101070,20371,6,'Yaron','Auto - 5 common actors','Both are slick, high-energy action films; a fan of Enemy of the State''s momentum will enjoy Armageddon''s spectacle.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (101070,73436,7,'Yaron','Auto - 5 common actors','Both are taut, smart thrillers built on mounting tension; a strong match for a fan of either.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (131780,55122,5,'Yaron','Auto - 5 common actors','Both are stylish crime dramas with similar texture; a fair recommendation within the genre.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (141544,68940,6,'Yaron','Auto - 5 common actors','Both are muscular action films with strong casts; a Heat fan looking for pure adrenaline will enjoy Con Air.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (190869,47865,5,'Yaron','Auto - 5 common actors','Both are Disney animated films with an emotional core; Brother Bear is the warmer of the two and the better watch.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (191246,190869,2,'Yaron','Auto - 5 common actors','Both are animated, but Lilo & Stitch didn''t land for me, making it a weak follow-up to a film as strong as The Lion King.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (192702,117314,6,'Yaron','Auto - 5 common actors','Both are grounded, serious-minded Bond films; a natural match within the franchise.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (192702,189403,6,'Yaron','Auto - 5 common actors','Both are Timothy Dalton''s harder-edged Bond films; an easy recommendation for a fan of his tenure.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (207992,207989,6,'Yaron','Auto - 5 common actors','Same franchise; Reloaded continues the story directly with bigger action, a natural watch after the original.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (240521,117314,6,'Yaron','Auto - 5 common actors','Both are more grounded, emotionally driven Bond films; a strong match within the series.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (240521,130953,7,'Yaron','Auto - 5 common actors','Both are classic-era Bond films; Goldfinger is the definitive entry and a great watch for any Bond fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280115,68940,6,'Yaron','Auto - 5 common actors','Both are explosive Bruckheimer-style action films; a fan of The Rock will be right at home in Con Air.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (312170,120574,7,'Yaron','Auto - 5 common actors','Both are well-regarded Bond films; From Russia with Love''s lean tension is a strong match for a Spy Who Loved Me fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (312170,192702,6,'Yaron','Auto - 5 common actors','Both are solid Bond entries; a fan of one will comfortably enjoy the other.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313478,313477,7,'Yaron','Auto - 5 common actors','Both are Star Wars films; Revenge of the Sith is the strongest prequel and the closest in dramatic weight to Empire.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313479,313474,2,'Yaron','Auto - 5 common actors','Both are Star Wars, but The Phantom Menace''s weak characters and slow plot make it a disappointing follow-up to the original trilogy.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (325098,47865,5,'Yaron','Auto - 5 common actors','Both are Disney animal adventures with strong nature themes; Brother Bear is a fitting if lesser match for a Tarzan fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (332065,117314,6,'Yaron','Auto - 5 common actors','Both are Bond films with strong set pieces; an easy recommendation within the franchise.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (332065,240521,6,'Yaron','Auto - 5 common actors','Both are 1960s Bond films; a natural match for anyone working through the Connery-era entries.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (332065,312170,7,'Yaron','Auto - 5 common actors','Both are Bond films; The Spy Who Loved Me is one of the series'' best and a strong step up for a Thunderball fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (335336,86263,2,'Yaron','Auto - 5 common actors','Both are Brosnan-era Bond, but Die Another Day''s excess makes it a weak follow-up to the sharper Tomorrow Never Dies.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (337166,325098,6,'Yaron','Auto - 5 common actors','Both are turn-of-the-millennium animated films; Tarzan''s strong adventure and emotion make it a good watch even for a lukewarm Toy Story fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (337168,190869,2,'Yaron','Auto - 5 common actors','Both are animated films that didn''t fully grab me; a weak pairing in both directions.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (354178,218808,1,'Yaron','Auto - 5 common actors','Both are late Roger Moore Bond films I rate among the weakest; recommending one to a fan of the other offers little.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,92573,7,'Yaron','Auto - 5 common actors','Both are Connery-era Bond films; Dr. No started it all and is a strong watch for any series fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,240521,6,'Yaron','Auto - 5 common actors','Both are 1960s Bond films with the same classic style; an easy match within the franchise.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,312170,7,'Yaron','Auto - 5 common actors','Both are Bond films; The Spy Who Loved Me is among the best and a strong step up for a You Only Live Twice fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,332065,5,'Yaron','Auto - 5 common actors','Both are mid-tier Connery Bond films with similar tone and pacing; a fair match within the series.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (68940,20371,6,'Yaron','Auto - 6 common actors','Both are loud, large-scale action films; a Con Air fan will enjoy the same over-the-top spectacle in Armageddon.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (90771,55122,5,'Yaron','Auto - 6 common actors','Both are character-driven crime films with a similar mood; a natural match within the genre.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,117314,6,'Yaron','Auto - 6 common actors','Both are Bond films with strong set pieces; an easy recommendation for any fan of the series.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,120574,7,'Yaron','Auto - 6 common actors','Both are top-tier Connery Bond films; lean, stylish, and a perfect match for each other.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (188507,86274,7,'Yaron','Auto - 6 common actors','Both are defining action films of the era; Die Hard is the genre benchmark and a great watch for a Lethal Weapon fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280284,280270,7,'Yaron','Auto - 6 common actors','Same franchise; the original Rocky is the heart of the series and essential for any fan of the sequels.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (312170,130953,7,'Yaron','Auto - 6 common actors','Both are among the best Bond films; Goldfinger is the definitive entry and a strong match for a Spy Who Loved Me fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313479,313477,7,'Yaron','Auto - 6 common actors','Both are Star Wars films; Revenge of the Sith is the strongest prequel and a satisfying watch for a Return of the Jedi fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (319602,313478,7,'Yaron','Auto - 6 common actors','Both are landmark blockbusters of their era; a Superman fan will find Empire''s adventure and spectacle a clear step up.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (332065,130953,7,'Yaron','Auto - 6 common actors','Both are Connery-era Bond films; Goldfinger is the definitive entry and a strong watch for a Thunderball fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (337166,47865,5,'Yaron','Auto - 6 common actors','Both are animated family films with gentle emotional themes; a fair match, with Brother Bear the slightly stronger watch.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (354178,117314,6,'Yaron','Auto - 6 common actors','Both are Roger Moore Bond films; the more grounded For Your Eyes Only is a clear step up from A View to a Kill.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (368418,86263,2,'Yaron','Auto - 6 common actors','Both are Brosnan-era Bond, but Die Another Day''s excess makes it a weaker watch than The World Is Not Enough.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (35523,35522,6,'Yaron','Auto - 7 common actors','Same franchise; the original Beverly Hills Cop has the sharpest energy and is the better watch of the two.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (73436,68940,6,'Yaron','Auto - 7 common actors','Both are tense, high-stakes action films; a Crimson Tide fan will enjoy the relentless pace of Con Air.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (120478,83901,7,'Yaron','Auto - 7 common actors','Both are stylish Rodriguez action films with shared cast and energy; Desperado is the stronger and a great match.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (312170,240521,6,'Yaron','Auto - 7 common actors','Both are emotionally grounded Bond films; a natural match within the series.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (337168,325098,6,'Yaron','Auto - 7 common actors','Both are animated films of the same era; Tarzan''s strong adventure makes it a good watch even for a lukewarm Toy Story fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (354178,312170,7,'Yaron','Auto - 7 common actors','Both are Roger Moore Bond films, but The Spy Who Loved Me is one of the series'' best and a big step up from A View to a Kill.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (368418,335336,6,'Yaron','Auto - 7 common actors','Both are Brosnan-era Bond films with the same style; an easy match within the franchise.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (120574,92573,7,'Yaron','Auto - 8 common actors','Both are early Connery Bond films that set the template; lean, stylish, and a perfect pair.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (218808,117314,6,'Yaron','Auto - 8 common actors','Both are Roger Moore Bond films, but For Your Eyes Only''s grounded tone is a welcome step up from Moonraker.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280284,280281,6,'Yaron','Auto - 8 common actors','Same franchise; Rocky II deepens the original rivalry and sits comfortably alongside Rocky IV.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (332065,92573,7,'Yaron','Auto - 8 common actors','Both are Connery-era Bond films; Dr. No is the lean original and a strong watch for a Thunderball fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (337168,47865,5,'Yaron','Auto - 8 common actors','Both are gentle animated family films; a fair match, with Brother Bear the marginally stronger watch.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,130953,7,'Yaron','Auto - 8 common actors','Both are Connery-era Bond films; Goldfinger is the definitive entry and a strong watch for a You Only Live Twice fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (276217,267038,7,'Yaron','Auto - 9 common actors','Both are sharp, dialogue-driven Tarantino crime films; a fan of Reservoir Dogs will love Pulp Fiction.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280284,280282,6,'Yaron','Auto - 9 common actors','Same franchise; Rocky III''s crowd-pleasing energy is a natural match for a Rocky IV fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280305,280281,6,'Yaron','Auto - 9 common actors','Same franchise; Rocky II is a far stronger entry than Rocky V and the better watch for anyone working through the series.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280305,280282,6,'Yaron','Auto - 9 common actors','Same franchise; Rocky III''s energy and iconic moments make it a clear step up from Rocky V.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280305,280284,7,'Yaron','Auto - 9 common actors','Same franchise; Rocky IV is one of the series'' most entertaining entries and a strong watch for anyone who saw Rocky V.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (300230,300229,6,'Yaron','Auto - 9 common actors','Same franchise; the original Shrek has the same sharp humour and is an easy recommendation for a fan of the sequel.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (332065,120574,7,'Yaron','Auto - 9 common actors','Both are Connery-era Bond films; From Russia with Love''s lean tension makes it a strong step up from Thunderball.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (372233,85871,2,'Yaron','Auto - 9 common actors','Both are Connery Bond films, but Diamonds Are Forever''s campy tone makes it a weaker watch than You Only Live Twice.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (130953,85871,2,'Yaron','Auto - Same director, rating gap of 5','Same director and franchise, but Diamonds Are Forever''s campy excess is a clear drop from the iconic Goldfinger.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (203649,130953,7,'Yaron','Auto - Same director, rating gap of 5','Same director and franchise; Goldfinger is the definitive Bond and a strong step up from The Man with the Golden Gun.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (207991,207989,5,'Yaron','Auto - Same director, rating gap of 5','Same trilogy; Reloaded is the stronger of the two sequels and the better watch for anyone who sat through Revolutions.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (210511,30959,3,'Yaron','Auto - Same director, rating gap of 5','Both are Christopher Nolan films, but Batman Begins'' brooding superhero take isn''t the kind of film I enjoy the way I did Memento.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (238073,238072,7,'Yaron','Auto - Same director, rating gap of 5','Same franchise; Ocean''s Eleven is a tight, witty heist film and a clear step up from the muddled Ocean''s Twelve.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (271095,1390,4,'Yaron','Auto - Same director, rating gap of 5','Both are Spielberg films, but the chaotic comedy 1941 is a long way from the perfectly tuned adventure of Raiders.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (280305,280270,7,'Yaron','Auto - Same director, rating gap of 5','Same director and franchise; the original Rocky is the heart of the series and far stronger than Rocky V.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (289109,1390,4,'Yaron','Auto - Same director, rating gap of 5','Both are Spielberg films, but the broad comedy of 1941 shares nothing with the intensity of Saving Private Ryan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (290070,12744,5,'Yaron','Auto - Same director, rating gap of 5','Both are Spielberg films, but the light romantic fantasy of Always is a world away from the weight of Schindler''s List.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (290070,96593,5,'Yaron','Auto - Same director, rating gap of 5','Both are Spielberg films, but E.T.''s gentle wonder is a very different experience from the devastation of Schindler''s List.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313477,313474,2,'Yaron','Auto - Same director, rating gap of 5','Same prequel trilogy, but The Phantom Menace''s weak start is a clear drop from the dramatic weight of Revenge of the Sith.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313477,313476,2,'Yaron','Auto - Same director, rating gap of 5','Same prequel trilogy, but Attack of the Clones'' dragging romance makes it a weaker watch than Revenge of the Sith.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (337168,113504,7,'Yaron','Auto - Same director, rating gap of 5','Both are Pixar films; Finding Nemo''s emotion and craft make it a strong watch even for a lukewarm Toy Story fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (359297,65811,2,'Yaron','Auto - Same director, rating gap of 5','Both are Spielberg alien films, but the slow awe of Close Encounters lacks the tension I enjoyed in War of the Worlds.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (359297,328272,1,'Yaron','Auto - Same director, rating gap of 5','Both are Spielberg films, but the gentle, low-stakes Terminal is a poor match for a War of the Worlds fan looking for intensity.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (40199,10830,5,'Yaron','Auto - Same director, rating gap of 6','Both are Ridley Scott sci-fi films; Alien''s relentless tension is far more to my taste than the slow Blade Runner.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (65811,56871,5,'Yaron','Auto - Same director, rating gap of 6','Both are Spielberg films; Catch Me If You Can''s fun, fast energy is far more engaging than the slow Close Encounters.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (165961,65811,2,'Yaron','Auto - Same director, rating gap of 6','Both are Spielberg films, but the slow Close Encounters lacks the gripping tension that makes Jaws work.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (214755,65811,2,'Yaron','Auto - Same director, rating gap of 6','Both are Spielberg sci-fi films, but Close Encounters'' meditative pace is a long way from the tense Minority Report.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (290070,1390,3,'Yaron','Auto - Same director, rating gap of 6','Both are Spielberg films, but the chaotic comedy 1941 could not be further from the gravity of Schindler''s List.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (312170,218808,1,'Yaron','Auto - Same director, rating gap of 6','Same director and franchise, but Moonraker''s leap into space is a clear drop from the grounded Spy Who Loved Me.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313474,313459,7,'Yaron','Auto - Same director, rating gap of 6','Same saga; the original Star Wars is a far stronger film than The Phantom Menace and essential viewing regardless.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (313476,313459,7,'Yaron','Auto - Same director, rating gap of 6','Same saga; the original Star Wars towers over Attack of the Clones and is essential for any fan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (328272,56871,6,'Yaron','Auto - Same director, rating gap of 6','Both are gentle Spielberg dramas, but Catch Me If You Can''s energy and wit make it the far more engaging watch.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (328272,165961,6,'Yaron','Auto - Same director, rating gap of 6','Both are Spielberg films, but Jaws'' relentless tension is a world away from the quiet Terminal and a far stronger watch.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (328272,214755,6,'Yaron','Auto - Same director, rating gap of 6','Both are Spielberg films, but Minority Report''s sleek tension makes it a much more gripping watch than The Terminal.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (40199,39551,5,'Yaron','Auto - Same director, rating gap of 7','Both are Ridley Scott films, but Black Hawk Down''s visceral intensity is far more to my taste than the slow Blade Runner.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (177636,40199,2,'Yaron','Auto - Same director, rating gap of 7','Both are Ridley Scott epics, but Blade Runner''s meditative pace lacks the sweeping action that makes Kingdom of Heaven work.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (271095,65811,2,'Yaron','Auto - Same director, rating gap of 8','Both are Spielberg films, but Close Encounters'' slow build shares little with the propulsive adventure of Raiders.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (289109,65811,2,'Yaron','Auto - Same director, rating gap of 8','Both are Spielberg films, but the quiet Close Encounters is a poor match for the intensity of Saving Private Ryan.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (328272,271095,6,'Yaron','Auto - Same director, rating gap of 8','Both are Spielberg films; Raiders is a perfect adventure and a far stronger watch than the gentle Terminal.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (328272,289109,6,'Yaron','Auto - Same director, rating gap of 8','Both are Spielberg films, but Saving Private Ryan''s power is a world away from the low-key Terminal and a far better watch.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (129185,40199,2,'Yaron','Auto - Same director, rating gap of 9','Both are Ridley Scott films, but Blade Runner''s slow, cerebral style lacks the epic action and emotion that make Gladiator my favourite.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (290070,65811,2,'Yaron','Auto - Same director, rating gap of 9','Both are Spielberg films, but the gentle Close Encounters could not contrast more with the devastation of Schindler''s List.'); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`comment`,`justification`) VALUES (328272,290070,6,'Yaron','Auto - Same director, rating gap of 9','Both are Spielberg films; Schindler''s List is a towering achievement and an essential watch despite sharing little tone with The Terminal.'); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139657, 139655, 10, 'BrianB413', 'both are the best of the harry potter series and share the same magical world and beloved characters.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139655, 139652, 9, 'BrianB413', 'prisoner of azkaban and goblet of fire are back to back and the tone shift between them is perfectly handled.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139652, 139653, 9, 'BrianB413', 'goblet of fire and half blood prince are both turning point films in the series with high emotional stakes.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139653, 139649, 10, 'BrianB413', 'half blood prince leads directly into deathly hallows part 2 which delivers on every setup in the series.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311037, 311038, 10, 'BrianB413', 'spider-man 1 and 2 are a perfect pair. the second film builds directly on the first and is even better.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311038, 38237, 9, 'BrianB413', 'both are among the greatest superhero films ever made. fans of one will almost certainly love the other.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (38237, 87075, 10, 'BrianB413', 'batman begins and the dark knight are the two finest films in the nolan trilogy and must be watched together.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (87075, 87076, 9, 'BrianB413', 'the dark knight and dark knight rises complete the nolan batman trilogy and the conclusion is emotionally satisfying.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (317218, 317219, 9, 'BrianB413', 'superman 1978 and superman 2 are a natural double feature. the second film raises the stakes perfectly.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (38232, 38237, 9, 'BrianB413', 'batman 1989 and batman begins are the two best batman films. both nail the gothic tone of the character.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (193788, 327534, 9, 'BrianB413', 'the matrix and the terminator are both groundbreaking sci-fi action films about machines threatening humanity.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (327534, 327535, 10, 'BrianB413', 'terminator 1 and t2 are one of cinema''s greatest action pairs. the second is a rare case of a sequel surpassing the original.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (193788, 193790, 8, 'BrianB413', 'the matrix and matrix reloaded are best watched back to back. the highway chase in reloaded is spectacular.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (277783, 277784, 10, 'BrianB413', 'a new hope and empire strikes back are two of the greatest films ever made. the empire sequel is essential viewing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (277784, 277785, 9, 'BrianB413', 'empire strikes back and return of the jedi complete the original trilogy in deeply satisfying fashion.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (157593, 157594, 9, 'BrianB413', 'fellowship and two towers are both outstanding and the transition between them is seamless.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (157594, 157595, 10, 'BrianB413', 'two towers and return of the king build to one of the most satisfying conclusions in trilogy filmmaking.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (157593, 277783, 9, 'BrianB413', 'lotr fellowship and star wars are both epic fantasy adventure series that defined their generations.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159654, 159656, 9, 'BrianB413', 'raiders of the lost ark and last crusade are the two finest indiana jones films. both are pure adventure perfection.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (181452, 277783, 9, 'BrianB413', 'jurassic park and star wars are both spielberg-era adventure spectacles that transformed cinema.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (181452, 159654, 9, 'BrianB413', 'jurassic park and raiders are both adventure films defined by incredible set pieces and a charismatic hero under pressure.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (355001, 355002, 10, 'BrianB413', 'x-men 2000 and x2 are a perfect superhero pair. x2 expands on the first in every way and the white house opening is incredible.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (355001, 38237, 8, 'BrianB413', 'x-men and batman begins are both serious character-driven superhero films that elevated the genre.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (87075, 102926, 9, 'BrianB413', 'the dark knight and silence of the lambs are both psychological thrillers with iconic villain performances at their core.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (108336, 102926, 9, 'BrianB413', 'the shining and silence of the lambs are both masterclasses in psychological horror with unforgettable villain performances.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (102926, 81281, 8, 'BrianB413', 'silence of the lambs and it 1990 are both horror films with a charismatic villain who controls every scene they are in.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (108336, 233521, 8, 'BrianB413', 'the shining and nightmare on elm street are both iconic horror films about fear invading the mind in unsettling ways.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (233521, 120838, 8, 'BrianB413', 'nightmare on elm street and friday the 13th are the two great slasher franchises and fans of one tend to love the other.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120838, 143900, 8, 'BrianB413', 'friday the 13th and halloween are the founding films of the slasher genre and belong together as a horror double bill.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (298219, 233521, 8, 'BrianB413', 'scream and nightmare on elm street are connected directly. scream was built as a love letter to classic slasher films.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (236490, 290723, 9, 'BrianB413', 'the sixth sense and shutter island are both psychological thrillers with twist endings that completely reframe everything you saw.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (236490, 108336, 8, 'BrianB413', 'the sixth sense and the shining are both supernatural horror films that work primarily through atmosphere and dread.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10920, 268280, 9, 'BrianB413', 'aliens and predator are both 1980s action horror films featuring marines against terrifying alien creatures. essential pair.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10830, 10920, 9, 'BrianB413', 'alien and aliens are back to back classics. the shift from horror to action works perfectly and both are genre masterpieces.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (268280, 327534, 8, 'BrianB413', 'predator and the terminator are both 1980s action sci-fi films with arnold schwarzenegger at his most intense.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297895, 116524, 9, 'BrianB413', 'saving private ryan and gladiator are both intense epic films about men pushed to their limit in brutal conflicts.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (111161, 120815, 9, 'BrianB413', 'shawshank redemption and forrest gump are two of the most beloved films of all time and both are emotional masterpieces.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (111161, 114709, 9, 'BrianB413', 'shawshank and good will hunting are both deeply moving films about intelligence, hope and the importance of human connection.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (88763, 89745, 10, 'BrianB413', 'the godfather and goodfellas are the two greatest crime films ever made. they complement each other perfectly.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (88763, 88764, 10, 'BrianB413', 'the godfather parts 1 and 2 are together the pinnacle of american cinema. part 2 is a mandatory continuation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (89745, 137523, 9, 'BrianB413', 'goodfellas and heat are two of the greatest crime films of all time made by two of cinema''s greatest directors.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (110912, 120586, 8, 'BrianB413', 'pulp fiction and fight club are both transgressive 90s films that changed what mainstream cinema could look and feel like.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215874, 215875, 10, 'BrianB413', 'lethal weapon 1 and 2 are one of the best action pairings in cinema history. the chemistry gets even better in the sequel.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215874, 40854, 9, 'BrianB413', 'lethal weapon and beverly hills cop are both defining 80s buddy action comedies that still hold up brilliantly.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40854, 275140, 9, 'BrianB413', 'beverly hills cop and rush hour are both classic fish-out-of-water action comedies with incredibly charismatic leads.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (275140, 275141, 9, 'BrianB413', 'rush hour 1 and 2 are a natural double feature. the hong kong setting in the sequel adds a great new dimension.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210739, 275140, 9, 'BrianB413', 'men in black and rush hour are both 90s buddy action comedies that launched major franchises and defined the genre.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 169547, 9, 'BrianB413', 'ocean''s eleven and the italian job are both stylish heist films with great ensembles and clever twists.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 238073, 8, 'BrianB413', 'ocean''s eleven and ocean''s twelve are natural to watch together. the sequel has the same cool ensemble energy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 325805, 9, 'BrianB413', 'pirates of the caribbean and the mummy are both early 2000s action adventure films with charismatic leads and a great sense of fun.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (325805, 325806, 8, 'BrianB413', 'the mummy 1999 and the mummy returns are a fun action adventure pair. the sequel is bigger and the rock adds energy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (277640, 215876, 9, 'BrianB413', 'speed and mission impossible are both brilliantly constructed 90s action thrillers built around a single high concept premise.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112401, 193788, 9, 'BrianB413', 'the fifth element and the matrix are both visually groundbreaking sci-fi action films from the 90s that changed the genre.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (340893, 215876, 8, 'BrianB413', 'top gun and mission impossible are both tom cruise at his most charismatic in high stakes action settings.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 337167, 10, 'BrianB413', 'toy story 1 and 2 are both perfect animated films. the sequel is emotionally richer and jesse''s story is heartbreaking.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 107257, 9, 'BrianB413', 'toy story and finding nemo are both pixar classics about love and loss that work for all ages.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (107257, 159867, 9, 'BrianB413', 'finding nemo and the incredibles are both pixar masterpieces that also work brilliantly as action films.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159867, 355001, 8, 'BrianB413', 'the incredibles and x-men are both films about superhero families hiding their powers in an ordinary world. great thematic pair.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (157378, 14218, 9, 'BrianB413', 'the lion king and aladdin are both disney classics from the golden age with great music and emotional stories.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (14218, 32180, 9, 'BrianB413', 'aladdin and beauty and the beast are both perfect disney renaissance films with iconic songs and romance.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (235260, 235261, 9, 'BrianB413', 'shrek 1 and 2 are both brilliant animated comedies. the sequel matches and arguably surpasses the original.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (235261, 107257, 8, 'BrianB413', 'shrek 2 and finding nemo were both massive animated hits that perfectly blend comedy with genuine emotion.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (147603, 147604, 9, 'BrianB413', 'home alone 1 and 2 are the perfect holiday comedy pair. the new york setting in the sequel makes it a great companion.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (147603, 243155, 8, 'BrianB413', 'home alone and the parent trap are both beloved family comedies of the 90s centered on a clever kid outsmarting adults.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (206975, 330185, 8, 'BrianB413', 'mrs doubtfire and the truman show are both films where robin williams plays a man living an elaborate fiction with emotional consequences.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (192530, 100559, 8, 'BrianB413', 'liar liar and the mask are both jim carrey comedies where a supernatural situation forces a man to confront his true self.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130506, 192530, 9, 'BrianB413', 'ace ventura and liar liar are jim carrey at his funniest. both use his physical comedy and fast delivery perfectly.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (108822, 286825, 8, 'BrianB413', 'ghostbusters and night at the museum are both comedies about ordinary men dealing with the supernatural in creative ways.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (17103, 17105, 8, 'BrianB413', 'back to the future 1 and 3 are the two best entries. the wild west setting in part 3 is a perfect finale.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (17103, 193788, 9, 'BrianB413', 'back to the future and the matrix are both films where reality is not what it seems and where the hero must make a brave choice.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (100451, 112279, 10, 'BrianB413', 'the breakfast club and ferris bueller are the two essential john hughes 80s teen films. both are completely timeless.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112279, 226507, 8, 'BrianB413', 'ferris bueller and national lampoon''s vacation are both comedies about escaping the routine and going on an unforgettable adventure.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280073, 291829, 8, 'BrianB413', 'robin hood men in tights and scary movie are both successful genre parodies that succeed because of their genuine affection for the source material.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291829, 130506, 8, 'BrianB413', 'scary movie and ace ventura are both 90s-2000s comedies built on relentless physical gags delivered by committed performers.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (137427, 216772, 9, 'BrianB413', 'the hangover and superbad are both hilarious modern comedies about a night that goes completely out of control.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (216772, 276519, 8, 'BrianB413', 'superbad and step brothers are both apatow-produced comedies that work because of genuine character chemistry.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (114709, 120815, 9, 'BrianB413', 'good will hunting and forrest gump are both deeply emotional films about an unexpected genius finding his place in the world.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120815, 330185, 8, 'BrianB413', 'forrest gump and the truman show are both films about a man who becomes a symbol watched by millions without fully understanding why.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (333856, 297895, 8, 'BrianB413', 'titanic and saving private ryan were both the defining epic films of 1997-1998. both are technically and emotionally overwhelming.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (264316, 157593, 9, 'BrianB413', 'the princess bride and fellowship of the ring are both beloved fantasy adventure films with great heroes and iconic worlds.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (264316, 139657, 8, 'BrianB413', 'the princess bride and harry potter are both magical fantasy adventures with humor heart and a strong sense of wonder.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (363234, 139657, 9, 'BrianB413', 'willy wonka 1971 and harry potter sorcerers stone are both perfect magical childhood films that transport you to another world.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (95396, 304862, 9, 'BrianB413', 'edward scissorhands and sleepy hollow are both tim burton and johnny depp collaborations with a gothic romantic fairy tale quality.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 95396, 8, 'BrianB413', 'pirates of the caribbean and edward scissorhands show the range of johnny depp''s ability to create unforgettable movie characters.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (133093, 149287, 9, 'BrianB413', 'the goonies and hook are both 80s-90s adventure films about the magic of childhood and what happens when you stop believing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (133093, 147603, 8, 'BrianB413', 'the goonies and home alone are both beloved adventure comedies where clever kids outsmart dangerous adults.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (108822, 108336, 8, 'BrianB413', 'ghostbusters and the shining are both 80s horror films but one is a comedy and one is deadly serious. fans of one often appreciate the other.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (11360, 158999, 8, 'BrianB413', 'armageddon and independence day are both massive 90s blockbusters about earth being threatened from space with huge ensemble casts.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (158999, 359297, 8, 'BrianB413', 'independence day and war of the worlds are both alien invasion films. fans of the scale of one tend to enjoy the other.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (254597, 10920, 8, 'BrianB413', 'pitch black and aliens are both sci-fi horror films about a small group fighting terrifying creatures in the dark.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (137427, 137428, 8, 'BrianB413', 'the hangover 1 and 2 are a natural double feature even if the second repeats the formula. the duo is still very funny.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (226507, 226508, 8, 'BrianB413', 'vacation and christmas vacation are both classic national lampoon comedies. the holiday chaos of christmas vacation is beloved.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (106489, 4367, 9, 'BrianB413', 'face off and the rock are both peak nic cage action films where the stakes are enormous and the performances are completely unhinged.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (4367, 193788, 8, 'BrianB413', 'the rock and the matrix are both 90s action films that demonstrated what digital-era action filmmaking could achieve.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290723, 120586, 8, 'BrianB413', 'shutter island and fight club are both films that completely reframe themselves in the final act and reward a second viewing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280687, 137523, 9, 'BrianB413', 'road to perdition and heat are both beautifully crafted crime films where the protagonist is a killer with a moral code.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (70981, 238072, 8, 'BrianB413', 'the count of monte cristo and ocean''s eleven are both deeply satisfying revenge and heist films where the planning pays off beautifully.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (185276, 275140, 8, 'BrianB413', 'kung fu hustle and rush hour are both action comedies where the comedy and the fight choreography are both genuinely impressive.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (243910, 114709, 8, 'BrianB413', 'patch adams and good will hunting are both films about a misfit finding meaning through an unlikely mentor relationship.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (246816, 151616, 8, 'BrianB413', 'pretty woman and how to lose a guy in 10 days are both fun romantic comedies with charismatic leads and great chemistry.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (258603, 236490, 8, 'BrianB413', 'the ring and the sixth sense are both atmospheric supernatural horror films that build to a genuinely unsettling revelation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311038, 311040, 3, 'BrianB413', 'though both are spider-man films with the same cast, spider-man 3 wastes every setup from part 2 and is a disappointment.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (87075, 116827, 1, 'BrianB413', 'though both are batman films, batman and robin is the opposite of the dark knight in tone quality and respect for the character.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (317219, 317221, 3, 'BrianB413', 'though both are superman films, superman 3 loses the tone and character completely and feels like a different franchise.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (38232, 116827, 2, 'BrianB413', 'though both are batman films, batman and robin is a disaster that undoes everything that made the 1989 film work.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (355002, 355003, 3, 'BrianB413', 'though both are x-men films, the last stand wastes the dark phoenix story and kills off major characters carelessly.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (193790, 193791, 3, 'BrianB413', 'though both are matrix sequels, revolutions fails to deliver a satisfying conclusion after reloaded raised the stakes so high.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (193788, 193791, 2, 'BrianB413', 'though both are matrix films, revolutions is a deeply unsatisfying conclusion that does not honor what the original set up.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (327535, 327536, 3, 'BrianB413', 'though both are terminator films, t3 lacks the heart and depth of t2 and feels like a cash grab sequel.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10920, 10831, 2, 'BrianB413', 'though both are alien films, alien 3 immediately kills the characters we cared about and delivers a joyless story.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10831, 10832, 3, 'BrianB413', 'though both are late alien sequels, alien resurrection is a strange mess that tries to be a dark comedy and fails at both.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 256631, 4, 'BrianB413', 'though both are pirates films, dead man''s chest is entertaining but too long and loses the charm and simplicity of the original.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (181452, 181455, 3, 'BrianB413', 'though both are jurassic park films, the lost world loses the wonder of the original and the t-rex in the city sequence is silly.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215875, 215873, 4, 'BrianB413', 'though both are lethal weapon films, part 3 is weaker with a less compelling villain and a formula that is showing its age.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (108822, 108823, 3, 'BrianB413', 'though both are ghostbusters films, ghostbusters 2 recycles too many elements of the first without adding anything significant.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (138013, 236490, 3, 'BrianB413', 'though both are m night shyamalan films with twists, the village is a major letdown after the sixth sense set such a high bar.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (298219, 298220, 3, 'BrianB413', 'though both are scream films, scream 2 lacks the freshness and self-awareness of the original and the kills are less inventive.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (233521, 121526, 2, 'BrianB413', 'though both feature freddy krueger, freddy vs jason wastes the iconic character in a film that serves neither franchise well.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (143900, 121526, 2, 'BrianB413', 'though both feature classic horror slashers, freddy vs jason is a shallow crossover that disrespects both franchises.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (268280, 268281, 3, 'BrianB413', 'though both are predator films, predator 2 moves to the city but loses the jungle tension that made the original so effective.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291829, 291830, 3, 'BrianB413', 'though both are scary movie films, the sequel moves to a haunted house and loses the sharpness of the horror parody formula.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291830, 258750, 3, 'BrianB413', 'though both are scary movie sequels, part 3 is broader and sillier with diminishing returns on the parody formula.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (258750, 247436, 2, 'BrianB413', 'though both are scary movie films, part 4 is exhausted. the jokes rarely land and the franchise had clearly run out of ideas.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (247436, 302073, 2, 'BrianB413', 'though both are spoof films from the same era, superhero movie is lazy and relies on cheap jokes rather than genuine wit.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (302073, 303888, 2, 'BrianB413', 'though both are genre parody films, date movie is even weaker. romantic comedies do not lend themselves to this style of parody.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (303888, 238342, 1, 'BrianB413', 'though both are spoof films, meet the spartans is completely lazy. the jokes are just references and nothing in it is actually funny.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (258789, 258790, 3, 'BrianB413', 'though both are saw films, saw 2 loses the clever plotting of the original and starts the franchise on a path toward diminishing returns.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210739, 210741, 3, 'BrianB413', 'though both are men in black films, mib 2 recycles the formula without the freshness and the alien designs are weaker.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130506, 130507, 3, 'BrianB413', 'though both are ace ventura films, when nature calls stretches the concept and some of the humor feels more forced.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 303888, 2, 'BrianB413', 'though both involve romantic situations, date movie is a cheap parody that has none of the wit or elegance of ocean''s eleven.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139657, 116827, 2, 'BrianB413', 'though both are fantasy films with iconic villains, batman and robin is a cinematic disaster that shares nothing with harry potter''s quality.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (157595, 311040, 3, 'BrianB413', 'though both are ambitious trilogy conclusions with many characters, spider-man 3 fails where return of the king succeeds completely.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (111161, 44238, 1, 'BrianB413', 'though both are genre films, bordello of blood is neither scary nor funny and has nothing in common with shawshank''s quality.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (89745, 121526, 2, 'BrianB413', 'though both are crime and horror adjacent films, freddy vs jason is a cheap cash grab that shares nothing with goodfellas'' craft.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (107257, 99557, 3, 'BrianB413', 'though both are films about survival against overwhelming forces, the day after tomorrow is scientifically absurd and lacks pixar''s emotional depth.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297895, 11360, 3, 'BrianB413', 'though both are films about preventing catastrophe, armageddon is a popcorn film that trivializes what saving private ryan treats with profound seriousness.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (277783, 317221, 3, 'BrianB413', 'though both are classic sci-fi adventure franchises, superman 3 loses the tone of its series just as the original star wars is flawless.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (363234, 57193, 3, 'BrianB413', 'though both are willy wonka adaptations, the 2005 tim burton version lacks the warmth and magic of gene wilder''s original.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (137427, 303888, 1, 'BrianB413', 'though both are comedies about relationships, date movie is a painfully unfunny parody that has none of the hangover''s genuine character comedy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (114709, 99557, 2, 'BrianB413', 'though both involve characters facing serious challenges, the day after tomorrow is shallow spectacle with none of good will hunting''s emotional intelligence.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215876, 317221, 2, 'BrianB413', 'though both are 80s-90s action films with sequels, superman 3 is a poor sequel that mission impossible avoided becoming.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (325805, 10832, 3, 'BrianB413', 'though both are action-adventure films with monsters from another world, alien resurrection is a mess while the mummy is pure fun.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (275140, 238342, 1, 'BrianB413', 'though both feature action and comedy, meet the spartans is an insult to the genre that rush hour perfected.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40854, 302073, 2, 'BrianB413', 'though both are comedies featuring action heroes, superhero movie is lazy and lacks the wit and energy of beverly hills cop.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (100451, 303888, 1, 'BrianB413', 'though both deal with young people and relationships, date movie is crude and cheap while the breakfast club is genuinely meaningful.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (235261, 247436, 2, 'BrianB413', 'though both are sequels to successful comedies, scary movie 4 is exhausted and formulaic while shrek 2 adds real value.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (157378, 121526, 2, 'BrianB413', 'though both feature a conflict between forces of good and evil, freddy vs jason is a cheap cash grab that disrespects its source material unlike the lion king.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (108336, 121526, 2, 'BrianB413', 'though both are horror films, freddy vs jason is a shallow crossover that wastes the terrifying potential the shining demonstrated horror could achieve.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (133093, 247436, 2, 'BrianB413', 'though both are comedy-adventure films with young energy, scary movie 4 is lazy while the goonies is a genuine classic.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (206975, 238342, 1, 'BrianB413', 'though both are comedies, meet the spartans has none of the heart or genuine humor that makes mrs doubtfire a classic.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (17103, 327536, 3, 'BrianB413', 'though both are sci-fi films about time and consequences, terminator 3 lacks the clever plotting and heart of back to the future.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (110912, 303888, 1, 'BrianB413', 'though both involve unconventional storytelling, date movie is mindless garbage while pulp fiction is one of the greatest films ever made.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (88763, 116827, 1, 'BrianB413', 'though both involve powerful organizations and larger than life characters, batman and robin is an embarrassment compared to the godfather''s mastery.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (264316, 238342, 1, 'BrianB413', 'though both are comedies with heroes and adventure elements, meet the spartans is a lazy mockery that lacks the princess bride''s wit and charm.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159654, 317221, 3, 'BrianB413', 'though both are adventure sequels with beloved heroes, superman 3 is a disappointment while indiana jones and the last crusade excels.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280687, 116827, 1, 'BrianB413', 'though both involve crime and moral conflict, batman and robin is so tonally disastrous it has nothing in common with road to perdition''s artistry.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (236490, 302073, 2, 'BrianB413', 'though both involve superhero or supernatural themes, superhero movie is a lame spoof while the sixth sense is a masterclass in tension.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (116524, 116827, 1, 'BrianB413', 'though both are epic spectacles with theatrical villains, batman and robin is camp nonsense while gladiator is a serious masterpiece.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (254597, 268281, 3, 'BrianB413', 'though both are sci-fi action films with alien predators, predator 2 is a step down while pitch black is a tight and effective film.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (185276, 238342, 1, 'BrianB413', 'though both are action comedies, meet the spartans is embarrassingly lazy while kung fu hustle has genuine skill behind every frame.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (277640, 11360, 3, 'BrianB413', 'though both are high concept action films, armageddon is bloated and silly while speed is lean perfectly executed action filmmaking.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (70981, 116827, 1, 'BrianB413', 'though both involve elaborate plans and revenge, batman and robin is a disaster that lacks any of the satisfaction of the count of monte cristo.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112279, 247436, 2, 'BrianB413', 'though both are comedies about young people having fun, scary movie 4 is exhausted and unfunny while ferris bueller is a timeless classic.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (330185, 302073, 2, 'BrianB413', 'though both are comedies about constructed realities, superhero movie is brainless while the truman show is a deeply intelligent film.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (340893, 116827, 1, 'BrianB413', 'though both feature action and drama with iconic characters, batman and robin is the low point of the franchise while top gun is a cultural landmark.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (95396, 302073, 2, 'BrianB413', 'though both involve fantastical characters with unusual powers, superhero movie is cheap while edward scissorhands is a beautiful original work.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (149287, 116827, 2, 'BrianB413', 'though both involve magical fantasy worlds with moral lessons, batman and robin is an embarrassment while hook is genuinely heartwarming.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (169547, 303888, 1, 'BrianB413', 'though both involve a group trying to pull off an elaborate scheme, date movie is brainless while the italian job is clever and thrilling.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (220970, 238342, 1, 'BrianB413', 'though both are comedies, meet the spartans tries to parody sparta while monty python already perfected absurdist historical comedy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (286825, 302073, 2, 'BrianB413', 'though both are comedies involving unusual characters coming to life, superhero movie is lazy while night at the museum uses its premise creatively.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (258603, 121526, 2, 'BrianB413', 'though both are horror films, freddy vs jason replaces the atmospheric dread of the ring with mindless brawling that serves neither franchise.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (216772, 303888, 1, 'BrianB413', 'though both are comedies about young people in awkward romantic situations, date movie is painfully unfunny compared to superbad''s authentic humor.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (137523, 116827, 1, 'BrianB413', 'though both feature highly theatrical characters in conflict, batman and robin is camp nonsense while heat is one of the greatest crime films ever made.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (106489, 302073, 2, 'BrianB413', 'though both feature characters switching identities, superhero movie is lazy while face off commits fully to its insane premise and delivers.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (4367, 116827, 1, 'BrianB413', 'though both are action films with villains threatening catastrophe, batman and robin is a disaster while the rock is perfectly executed entertainment.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120815, 99557, 3, 'BrianB413', 'though both are films about survival and the human spirit, the day after tomorrow is shallow disaster spectacle while forrest gump is genuinely profound.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (333856, 116827, 1, 'BrianB413', 'though both are epic big budget films, batman and robin has none of the emotional power or craft that makes titanic a genuine masterpiece.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159867, 302073, 2, 'BrianB413', 'though both are about superheroes, superhero movie mocks the genre cheaply while the incredibles celebrates it with genuine intelligence.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (157378, 247436, 2, 'BrianB413', 'though both are sequels in long-running franchises, scary movie 4 is exhausted while every lion king story element is handled with care.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (108052, 116827, 1, 'BrianB413', 'though both are films featuring strong ensemble casts, batman and robin wastes its cast while the green mile uses every actor to perfection.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (246816, 303888, 1, 'BrianB413', 'though both are romantic comedies, date movie is a lazy parody that lacks any of the warmth and charm pretty woman has in abundance.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (243910, 302073, 2, 'BrianB413', 'though both are comedies with an unconventional protagonist, superhero movie is mean-spirited while patch adams is genuinely warm.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (363234, 238342, 1, 'BrianB413', 'though both are comedies with theatrical larger than life characters, meet the spartans is lazy nonsense while willy wonka is a genuine work of art.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (220970, 303888, 1, 'BrianB413', 'though both are comedy films, date movie is an embarrassment to the genre while monty python demonstrates what truly creative absurdist comedy looks like.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 116827, 1, 'BrianB413', 'though both are family friendly fantasy films from the same era, batman and robin is a disaster while e.t. is one of the greatest films ever made.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (100559, 302073, 2, 'BrianB413', 'though both feature protagonists with extraordinary abilities, superhero movie mocks the genre cheaply while the mask uses its premise with genuine creativity.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (192530, 238342, 1, 'BrianB413', 'though both are comedies, meet the spartans is lazy while liar liar demonstrates what committed physical comedy performed by a talented actor actually looks like.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (254597, 10831, 3, 'BrianB413', 'though both are sci-fi films where survivors fight alien creatures, alien 3 is a disappointment while pitch black is a tight efficient thriller.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280073, 238342, 1, 'BrianB413', 'though both are parody films, meet the spartans is braindead while robin hood men in tights shows how clever genre parody should be done.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276519, 238342, 1, 'BrianB413', 'though both are absurdist comedies, meet the spartans is cheap while step brothers works because both leads fully commit to the comedy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290723, 302073, 2, 'BrianB413', 'though both involve constructed realities and hidden truths, superhero movie is brainless while shutter island is a sophisticated psychological thriller.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (226508, 238342, 1, 'BrianB413', 'though both are holiday comedies, christmas vacation is a beloved classic while meet the spartans is the opposite of everything that makes that film work.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (304862, 10831, 3, 'BrianB413', 'though both are dark gothic films, alien 3 is a miserable experience while sleepy hollow is a beautifully crafted atmospheric film.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (185276, 247436, 2, 'BrianB413', 'though both are action comedies, scary movie 4 is tired and lazy while kung fu hustle demonstrates mastery of both action and comedy simultaneously.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (243155, 303888, 1, 'BrianB413', 'though both are comedies involving romantic deception, date movie is painfully unfunny while the parent trap is a charming and genuinely funny family film.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (243948, 238342, 2, 'BrianB413', 'though both are physical comedies, meet the spartans is just references while paul blart at least commits to the character and setting.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (105587, 51413, 3, 'BrianB413', 'though both are short foreign films, both are too slow and minimalist for a general audience looking for engaging entertainment.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (111963, 129042, 3, 'BrianB413', 'though both are classical music recordings on film, both are dry and niche and only appropriate for dedicated classical music enthusiasts.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (129042, 141779, 3, 'BrianB413', 'though both are classical performance recordings, both are very dry as film experiences and not engaging for general audiences.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (175872, 175873, 3, 'BrianB413', 'though both are khachaturian related films, the piano concerto is more dynamic while the documentary is strictly for classical music fans.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (20446, 47456, 2, 'BrianB413', 'though both are very old silent films with no modern entertainment value, both are only of interest as historical documents.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (117582, 34304, 2, 'BrianB413', 'though both are provocative european documentaries, both are uncomfortable viewing experiences that are too niche for general audiences.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (175880, 17370, 2, 'BrianB413', 'though both are obscure mid-century films from non-western cinemas, both are too culturally specific to engage with meaningfully.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (22093, 175883, 2, 'BrianB413', 'though both are obscure foreign films from the 70s-90s, both are too culturally specific and hard to find for any recommendation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (58084, 60408, 2, 'BrianB413', 'though both are experimental short films, both are too abstract and minimal to recommend to anyone not specifically interested in experimental cinema.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (346949, 49696, 9, 'ChenEylon', 'Unforgiven viewers get the Leone original that Eastwood spent 25 years deconstructing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (45128, 45129, 9, 'ChenEylon', 'Direct sequel, same Bourne, same Marie storyline closure. Greengrass takes the shaky cam further.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 131780, 5, 'ChenEylon', 'Though both are based-on-a-true-story rises through illegitimate worlds, Spielberg''s playful tone doesn''t prepare anyone for Scorsese''s violence.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (43883, 209158, 5, 'ChenEylon', 'Though both are rise-narratives anchored to a scene, Boogie Nights'' lush PTA tracking shots have little to do with Mean Streets'' handheld scuffle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (121538, 257459, 8, 'ChenEylon', 'Both Vietnam from the grunt POV. Kubrick is colder, Stone is sweatier, both essential.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 1390, 4, 'ChenEylon', 'Though both are Spielberg WW2-set movies, 1941''s zany failed comedy is the opposite of Saving Private Ryan''s tone.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56304, 82967, 8, 'ChenEylon', 'Both Scorsese crime epics with operatic violence and snitches dying badly.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (82967, 131780, 9, 'ChenEylon', 'Departed fans get the original blueprint for Scorsese-style mob narration and snap-edit violence.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (64729, 25192, 2, 'ChenEylon', 'Though both are biopics of obsessive American tycoons, Welles invents film grammar while Scorsese settles for awards-season gloss.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 182955, 9, 'ChenEylon', 'Different decade, same city, same moral ambiguity. Both treat LA as a character.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (2000, 10830, 1, 'ChenEylon', 'Though both are sci-fi horror with shrinking groups of survivors, 28 Days Later''s rage-zombie kinetic chaos is the opposite of Alien''s slow dread.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (13789, 72559, 5, 'ChenEylon', 'Though both are turn-of-millennium LA ensemble dramas, American Beauty''s sharp satire shows up Crash''s lecture-y morality.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (45128, 67052, 4, 'ChenEylon', 'Though both are stylish 00s thrillers with quiet competent protagonists, Bourne''s shaky-cam realism clashes with Mann''s clean digital cool.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290070, 254986, 10, 'ChenEylon', 'Both are Holocaust survival stories grounded in a single protagonist. Polanski''s is more intimate.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (82967, 123849, 3, 'ChenEylon', 'Though both pair Scorsese and DiCaprio, Gangs of NY''s sprawling historical operatic isn''t the lean thriller Departed fans expect.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (45129, 45128, 9, 'ChenEylon', 'Bourne Supremacy fans get the cleaner original with the iconic Mini chase through Paris.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56431, 56871, 4, 'ChenEylon', 'Though both are Hanks dramas about extraordinary survival, Cast Away''s quiet desperation clashes with Catch Me''s breezy con-man fun.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (45128, 86274, 1, 'ChenEylon', 'Though both are action movies built around a competent guy in over his head, Bourne''s shaky realism clashes with Die Hard''s wisecrack tone.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (67052, 141544, 10, 'ChenEylon', 'Collateral fans get Mann''s full ensemble LA-noir epic.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (18960, 254986, 5, 'ChenEylon', 'Though both are landmark war movies, Apocalypse Now''s hallucinatory excess clashes with The Pianist''s austere realism.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46169, 340652, 4, 'ChenEylon', 'Though both are doomed-warrior epics, Braveheart''s blood-and-mud passion makes Troy''s lacquered staging look fake.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10920, 328277, 8, 'ChenEylon', 'Cameron doing the same trick twice. Heroes outgunned by a relentless killing machine.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (340901, 222194, 5, 'ChenEylon', 'Though both are reality-is-a-construct movies, Truman''s Carrey-friendly satire is the opposite of Lynch''s opaque dread.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 193253, 5, 'ChenEylon', 'Though both are crisscrossing crime comedies, Lock Stock''s Brit-geezer energy is a cover band next to Tarantino''s rhythm.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30955, 30951, 5, 'ChenEylon', 'Though both are part of the Burton-era Batman world, jumping from Burton''s gothic 1989 film to the direct-to-video animated SubZero is a steep drop.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130128, 18960, 10, 'ChenEylon', 'Same director going from mafia opera to Vietnam fever dream. Coppola at peak madness.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (45128, 193504, 4, 'ChenEylon', 'Though both are kinetic European chase movies, Bourne''s shaky procedural realism and Lola''s pop time-loops appeal to very different impulses.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (235062, 130953, 2, 'ChenEylon', 'Though Bond essentially copied NbN''s tuxedo-and-blonde formula, Hitchcock''s dry wit is at a different pitch than 60s Bond spectacle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (13978, 290070, 4, 'ChenEylon', 'Though both deal with bigotry and its costs, AHX''s contemporary skinhead drama operates at a completely different scale than Schindler''s.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (198338, 67052, 8, 'ChenEylon', 'Both stylish hitman movies with an odd-couple dynamic and a great villain.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 59578, 3, 'ChenEylon', 'Though both are Burton + Depp fairy tales, Edward Scissorhands'' melancholy clashes with Charlie''s family-film bounce.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 264146, 4, 'ChenEylon', 'Though both are 80s family-friendly adventures, Raiders'' pulpy seriousness and Princess Bride''s storybook framing aren''t scratching the same itch.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131665, 32114, 8, 'ChenEylon', 'Both Oscar-bait genius dramas, both Robin Williams territory. Mind beats Hunting at the awards but it''s a wash.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10830, 40199, 8, 'ChenEylon', 'Same year-ish, same dirty-future production design, same lonely existential dread. Scott did both.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 112290, 9, 'ChenEylon', 'Se7en viewers get Fincher leveling up his rot-and-rain aesthetic into pure anti-consumer rage.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130128, 130129, 10, 'ChenEylon', 'The only sequel that arguably matches the original. Same family, deeper tragedy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (326155, 47130, 8, 'ChenEylon', 'Scorsese back in nighttime NYC with another sleepless protagonist. Cage replaces De Niro but the city is the same character.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 333856, 3, 'ChenEylon', 'Though both are 90s prestige epics with a romance subplot, SPR''s combat horror is the inverse of Titanic''s sweeping romance.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 123435, 5, 'ChenEylon', 'Though both are Fincher psychological thrillers, The Game''s twist is a parlor trick next to Se7en''s sustained dread.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 54209, 5, 'ChenEylon', 'Though both are Scorsese-adjacent dark thrillers about a hidden predator, Cape Fear''s pulpy De Niro performance is at the wrong volume for Se7en fans.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (43883, 131780, 9, 'ChenEylon', 'PTA openly borrowing the Scorsese rise-and-fall structure. The Coke scene = the helicopter day.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 123435, 2, 'ChenEylon', 'Though both are Fincher movies about a man losing control, Fight Club fans will find The Game''s ending a cop-out.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130128, 131780, 10, 'ChenEylon', 'Different angle on the same mafia world. Operatic vs. street-level, both essential.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 112290, 9, 'ChenEylon', 'Both 90s/00s twist movies that reward a rewatch. Unreliable narrators all the way down.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 241347, 10, 'ChenEylon', 'Same setup: charming inmate vs. the system. Both make you root for a jailbreak.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (340901, 90772, 8, 'ChenEylon', 'Both late-90s/early-00s films about a young man realizing the world is not what it seems.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290070, 150629, 4, 'ChenEylon', 'Though both are about one man trying to save who he can during a genocide, Schindler''s scale and Hotel Rwanda''s containment yield very different experiences.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97360, 43883, 5, 'ChenEylon', 'Though both are biographical movies about figures on Hollywood''s fringe, Ed Wood''s gentle B&W tribute is at a different volume than PTA''s coked-up porn epic.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (203344, 67052, 4, 'ChenEylon', 'Though both are Tony-Scott-ish urban revenge thrillers with star leads, Man on Fire''s blender editing clashes with Mann''s clean digital cool.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (332065, 86263, 3, 'ChenEylon', 'Though both are Bond films heavy on gadgets, Thunderball''s underwater bloat already strains compared to the slicker classics Die Another Day tries to recall.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (182955, 62076, 9, 'ChenEylon', 'LAC fans get the foundational LA-noir text that everything since steals from.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 290070, 10, 'ChenEylon', 'Same director, same war, same emotional gut-punch. Companion pieces.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (266574, 273543, 8, 'ChenEylon', 'Hitchcock peak voyeurism. The shower scene fan gets Stewart spying on neighbors.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (352639, 222194, 5, 'ChenEylon', 'Though both are LA-obsession spirals, Vertigo''s classical craft and Mulholland''s dream logic ask viewers to do completely different things.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (129185, 347807, 5, 'ChenEylon', 'Though both depict an empire collapsing under bad men, Gladiator''s blockbuster catharsis can''t prepare you for Untergang''s clinical horror.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (273543, 235062, 9, 'ChenEylon', 'Same director in playful mode. Both make ordinary men into suspects/witnesses.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 123435, 3, 'ChenEylon', 'Though both are puzzle-box movies, Memento''s structural rigor exposes The Game''s gimmick as filler.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (200521, 194874, 1, 'ChenEylon', 'Though both are PTA-era moody ensembles, Magnolia''s sincere bigness is the opposite of Lost in Translation''s feather-light melancholy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97360, 194874, 2, 'ChenEylon', 'Though both are quiet, melancholy hangout movies about people on Hollywood''s edge, Ed Wood''s B&W reverence is a different register than Coppola''s Tokyo drift.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 113506, 4, 'ChenEylon', 'Though both are Depp playing a misunderstood outsider, Finding Neverland''s polite period drama is far from Scissorhands'' suburban surreality.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 276217, 10, 'ChenEylon', 'Same Tarantino DNA: nonlinear structure, criminals trading monologues, and a Mexican standoff to cap things off.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (65764, 121538, 9, 'ChenEylon', 'Kubrick on state violence. Boot camp instead of the Ludovico technique, same icy precision.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (239851, 291698, 8, 'ChenEylon', 'Both end with a gut-punch twist that recontextualizes the whole movie. Dark genre cousins.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (319181, 222194, 8, 'ChenEylon', 'Hollywood eating itself across 50 years. Lynch dreams what Wilder said out loud.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (224842, 150629, 5, 'ChenEylon', 'Though both are heavy real-world tragedies, Mystic River''s neighborhood-noir scale is unlike Hotel Rwanda''s genocide context.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 209158, 8, 'ChenEylon', 'Mean Streets is the prototype: same NYC, same Scorsese, same De Niro and Keitel hanging out in bars.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (64951, 294028, 5, 'ChenEylon', 'Though both are dark imaginative children-in-fantastical-worlds movies, Jeunet''s grimy steampunk clashes with Miyazaki''s hand-drawn warmth.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (182955, 72559, 5, 'ChenEylon', 'Though both are LA ensemble dramas about cops and bigotry, LAC''s 50s noir craft makes Crash''s contrived 00s contrivances look thin.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 347807, 9, 'ChenEylon', 'Both show WW2 from extreme angles, the Allied push and the German collapse, with no romanticization.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (121538, 65764, 9, 'ChenEylon', 'Kubrick on conditioning. FMJ does it with rifles, ACO with classical music.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (43883, 90772, 3, 'ChenEylon', 'Though both are late-90s cult character studies of doomed kids, Boogie Nights'' loud porn epic doesn''t lead naturally into Donnie Darko''s suburban hush.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (257459, 18960, 10, 'ChenEylon', 'Platoon to Apocalypse Now is the natural Vietnam binge. Stone the realist, Coppola the surrealist.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (200521, 43883, 10, 'ChenEylon', 'Magnolia fans should see the porn-industry ensemble that established PTA''s voice.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (273543, 230151, 5, 'ChenEylon', 'Though both are about watching the world from a perch, Rear Window''s contained suspense has nothing in common with Network''s satirical sprawl.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (32114, 297838, 5, 'ChenEylon', 'Though both are uplifting Oscar dramas, Beautiful Mind''s biographical sentimentality and Shawshank''s narrative discipline aim at very different things.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 222194, 8, 'ChenEylon', 'Both films where the protagonist''s reality is the mystery. Lynch is wilder, Nolan is colder.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 123849, 8, 'ChenEylon', 'Scorsese doing crime on a bigger historical canvas. Day-Lewis chewing scenery instead of Pesci.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (222194, 90772, 3, 'ChenEylon', 'Though both are cult mind-benders, Mulholland Dr.''s dream logic and Donnie Darko''s teen-misfit framing don''t scratch the same itch.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (347807, 254986, 9, 'ChenEylon', 'Same war told from opposite sides of a collapsing Europe. Both unflinching.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 41518, 5, 'ChenEylon', 'Though both are real-life-criminal biopics with charming leads, Catch Me If You Can''s lightness doesn''t translate to Blow''s downbeat coke saga.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 289558, 5, 'ChenEylon', 'Though both are rise-and-fall gangster movies, Goodfellas'' grounded detail makes Scarface''s scenery-chewing feel cartoonish.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276217, 267038, 10, 'ChenEylon', 'Reservoir Dogs fans get the same chatty-hitman energy in a more ambitious package with the Royale with Cheese scene.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 82967, 9, 'ChenEylon', 'Same cops-vs-crew DNA, just transplanted to Boston with Scorsese energy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (193253, 306032, 10, 'ChenEylon', 'Ritchie running his own template back. Same crisscross plotting, Pitt instead of Statham.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (266574, 352639, 10, 'ChenEylon', 'Both Hitchcock obsession spirals. Vertigo is the cold psychological flip side of Norman Bates.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 67052, 10, 'ChenEylon', 'Mann doing nighttime LA again. Cruise''s hitman is basically De Niro''s crew downsized to one cab.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (13789, 194874, 2, 'ChenEylon', 'Though both are early-00s mood pieces about suburban-or-corporate malaise, AB''s satirical bite contradicts LiT''s pure observational mood.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (92616, 65764, 9, 'ChenEylon', 'Kubrick''s satire muscle. Both weaponize symmetrical framing and dark comedy against institutions.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (90772, 222194, 9, 'ChenEylon', 'Both 2001 cult mind-benders where reality slips. Lynch is more aggressive, Kelly is teenage.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (158999, 359297, 5, 'ChenEylon', 'Though both are alien-invasion movies, Independence Day''s popcorn cheese and War of the Worlds'' panic are aiming at totally different audiences.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 301540, 10, 'ChenEylon', 'Serial killer thrillers with FBI procedural bones and a quiet final reveal. Cousins.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (264146, 271095, 3, 'ChenEylon', 'Though both are adventurous classics, Princess Bride''s storybook framing is at a different volume than Raiders'' pulp action.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (123849, 25192, 3, 'ChenEylon', 'Though both pair Scorsese with DiCaprio in a long American biopic, Gangs of NY''s operatic violence is far from Aviator''s sleek prestige drama.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (92573, 120574, 8, 'ChenEylon', 'Same Connery, same early-Bond formula, before the gadgets ate the franchise.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (49696, 346949, 9, 'ChenEylon', 'Eastwood honoring then dismantling his own Leone persona. Pair the myth with the deconstruction.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 969, 3, 'ChenEylon', 'Though both are tense ensemble dramas about adversaries facing off, 12 Angry Men''s talky single set is a hard pivot from Heat''s LA gunfights.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176712, 176711, 10, 'ChenEylon', 'Vol. 2 viewers get the kinetic first half of the same revenge arc, with the House of Blue Leaves set piece.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (224842, 82967, 4, 'ChenEylon', 'Though both are Boston crime movies with great ensembles, Mystic River''s elegiac grief clashes with the Departed''s blackly comic snap.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 131780, 8, 'ChenEylon', 'Two of the great crime epics of the 90s, one cop side, one mob side, same scale.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39551, 331427, 4, 'ChenEylon', 'Though both are 90s/00s Iraq/Somalia desert war movies, Three Kings''s satirical streak clashes with BHD''s sustained dread.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (245103, 164572, 8, 'ChenEylon', 'Same Elmore Leonard universe, Soderbergh and Tarantino each adapting in their own style.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (241347, 297838, 10, 'ChenEylon', 'Cuckoo''s Nest viewers get the warmer, more optimistic prison-as-microcosm masterpiece.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (65764, 92616, 8, 'ChenEylon', 'Both Kubrick pitch-black comedies about institutions losing control.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (347807, 150629, 4, 'ChenEylon', 'Though both are based on real atrocities, Untergang is from the perpetrators'' inner bunker while Hotel Rwanda is one civilian saving lives. Very different POV.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 159172, 10, 'ChenEylon', 'Same hero, same Spielberg pulp setpieces. Connery as Indy''s dad ties it together.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (109093, 37178, 9, 'ChenEylon', 'Fargo viewers get the laid-back, weed-fueled side of the Coens'' shaggy-dog crime style.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (64729, 319181, 9, 'ChenEylon', 'Two Old Hollywood movies about Old Hollywood. Welles''s ambition, Wilder''s acid.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (2238, 340652, 4, 'ChenEylon', 'Though both are ancient-warfare epics, 300 is a poster come to life while Troy is a self-serious star vehicle. Neither fan gets what they want.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (326155, 270971, 10, 'ChenEylon', 'Scorsese + De Niro at their most unhinged. Both are character studies of self-destructive men in NYC.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (241347, 230151, 5, 'ChenEylon', 'Though both are 70s anti-establishment classics, Cuckoo''s Nest''s ward intimacy and Network''s network satire share politics but not pacing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (82967, 141544, 9, 'ChenEylon', 'Departed fans get Mann''s slower, more methodical version of cops vs. crooks.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10920, 10830, 8, 'ChenEylon', 'Aliens fans get the slow, dread-soaked original where the shark is still hiding.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (43883, 200521, 10, 'ChenEylon', 'PTA''s LA ensemble back-to-back. Same long takes, same broken-family aches, more frogs.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 306032, 4, 'ChenEylon', 'Though both are kinetic motormouth-criminal movies, Snatch''s chaotic gypsy-boxing sprint doesn''t deliver Pulp Fiction''s chapter-by-chapter precision.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (37178, 109093, 9, 'ChenEylon', 'Coens doing deadpan crime in two registers. The Dude and Marge are siblings in spirit.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 25192, 3, 'ChenEylon', 'Though both are Scorsese rise-and-fall biopics, Aviator''s prestige sheen is missing the danger of Goodfellas.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 86263, 2, 'ChenEylon', 'Though both are Bond films with megalomaniac villains, Goldfinger''s tight craft makes Die Another Day''s invisible-car nonsense look ridiculous.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (2000, 256839, 8, 'ChenEylon', 'Both grimy survival horror with fast monsters and a small band of survivors.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (235062, 266574, 9, 'ChenEylon', 'NbN fans should see how Hitchcock weaponized the same suspense skills on a tiny budget.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (319181, 64729, 9, 'ChenEylon', 'Sunset Blvd viewers get the foundational text on Hollywood mythmaking that Wilder was riffing on.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 25192, 2, 'ChenEylon', 'Though both pair Spielberg with DiCaprio as a real-life larger-than-life figure, Aviator is a long Scorsese epic that demands different patience.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 289558, 2, 'ChenEylon', 'Though both are decade-defining crime epics, Heat''s cool professionalism is the polar opposite of Scarface''s coked-out chaos.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 56304, 9, 'ChenEylon', 'Same director, same De Niro+Pesci pairing, same rise-and-fall mob structure. Casino is Goodfellas in Vegas.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130129, 131780, 10, 'ChenEylon', 'Both trace the cost of a life in organized crime. Pacino broods, Liotta sweats.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 247579, 4, 'ChenEylon', 'Though both are Fincher genre exercises, Panic Room''s straight-thriller mechanics lack Fight Club''s ideas.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 56871, 5, 'ChenEylon', 'Though both are charismatic-criminal biopics, Goodfellas fans expecting more crime mileage from Catch Me will find a much lighter movie.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (43883, 12217, 3, 'ChenEylon', 'Though both are period-piece coming-of-age music movies, Boogie Nights'' grim third-act crash doesn''t match Almost Famous''s warm nostalgia.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56044, 319181, 5, 'ChenEylon', 'Though both are foundational 40s/50s Hollywood pictures, Casablanca''s warmth has almost nothing in common with Sunset Blvd.''s acid.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39551, 289109, 9, 'ChenEylon', 'BHD fans get the same hyper-real combat in WW2 dress.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (352639, 235062, 9, 'ChenEylon', 'Hitchcock back in extrovert mode. Same blond obsession, more crop dusters.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 291698, 9, 'ChenEylon', 'Same director, same green-yellow palette, same nihilism. Tyler Durden could swap apartments with John Doe.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (37178, 283739, 5, 'ChenEylon', 'Though both are 90s deadpan male-friendship cult comedies, the Dude''s laidback drift and Max Fischer''s precious tics don''t share an audience.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139650, 139655, 8, 'ChenEylon', 'Cuarón takes over and matures the series. Best HP film by a margin.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130129, 130128, 10, 'ChenEylon', 'Where the whole Corleone saga starts. Brando, the horse head, the wedding.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 130945, 3, 'ChenEylon', 'Though both are early-era-defining Bond films, Connery''s 60s cool doesn''t transfer cleanly to Brosnan''s 90s reboot energy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (270971, 326155, 9, 'ChenEylon', 'Same Scorsese-De Niro duo. The boxing ring instead of the cab, but the same rage.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (294028, 264146, 3, 'ChenEylon', 'Though both are family-friendly fantasy classics, Spirited Away''s Japanese spirit world has very little to do with Princess Bride''s English-storybook irony.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (92573, 86263, 5, 'ChenEylon', 'Though both kick off and "cap" Bond eras, the lean Connery debut shows up the bloated Brosnan finale.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (117874, 131780, 4, 'ChenEylon', 'Though both are decades-spanning American-life stories, Gump fans will reject Goodfellas'' coke-and-bullets cynicism.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (193504, 210511, 4, 'ChenEylon', 'Though both are 90s/00s structure experiments, Lola rennt''s breathless what-if loops are nothing like Memento''s frozen reverse mystery.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (49696, 271915, 2, 'ChenEylon', 'Though both are aging-warrior epics on a grand canvas, Leone''s spaghetti-western flair and Kurosawa''s formal Shakespeare adaptation don''t cross over cleanly.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56304, 131780, 9, 'ChenEylon', 'The lean, faster version of Casino. Same Scorsese voiceover-and-needle-drop formula.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 210511, 8, 'ChenEylon', 'Fight Club fans get another puzzle box about identity, told backwards.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 176711, 8, 'ChenEylon', 'Same director, same chapter-based structure, same pop-soundtrack swagger. Swap noir LA for samurai swords.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (301540, 291698, 10, 'ChenEylon', 'Silence of the Lambs viewers get the same calm-monologue villain and rookie-detective dynamic.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (72559, 290070, 3, 'ChenEylon', 'Though both are ensemble films about prejudice, Crash''s schematic everyone-meets-everyone gimmick can''t hold up next to Schindler''s.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (86274, 45128, 8, 'ChenEylon', 'Both lean action thrillers about a competent guy outmaneuvering everyone in the room.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (332065, 130945, 1, 'ChenEylon', 'Though both are Bond films built around the formula, Thunderball''s underwater bloat and GoldenEye''s 90s reboot pace don''t reward each other''s fans.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 85871, 5, 'ChenEylon', 'Though both star Connery as Bond, Diamonds Are Forever is the lazy paycheck version next to Goldfinger''s blueprint.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (218219, 294028, 10, 'ChenEylon', 'Mononoke viewers get the slightly softer, even more imaginative Miyazaki masterpiece.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10830, 256839, 4, 'ChenEylon', 'Though both are creature-in-the-dark sci-fi horror, Pitch Black''s pulp B-movie energy is several rungs below Alien''s craft.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (62076, 182955, 9, 'ChenEylon', 'Two LA period noirs about civic rot. LAC is the 50s riff on Chinatown''s 30s.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 39551, 8, 'ChenEylon', 'Both put you inside the chaos with handheld cameras and squad-level focus. Modern war as nightmare.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (123435, 210511, 5, 'ChenEylon', 'Though both are 90s/00s twist movies, The Game''s prankster reveal feels cheap compared to Memento''s structural precision.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (90772, 210511, 9, 'ChenEylon', 'Donnie Darko fans get the same time/identity confusion in a tighter, more literal package.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289558, 130128, 8, 'ChenEylon', 'Scarface fans get Pacino in his quiet-menace mode in a much more controlled mafia masterpiece.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (969, 241347, 9, 'ChenEylon', 'Both single-location dramas where one stubborn man rewires a system. Sidney Lumet would approve.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (294028, 218219, 10, 'ChenEylon', 'Miyazaki''s two peaks. Same hand-drawn world, same ecological subtext, same fearless heroines.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 97360, 4, 'ChenEylon', 'Though both are Burton-Depp Hollywood-outsider fables, Edward Scissorhands'' suburban fairy tale is the inverse of Ed Wood''s grounded biopic.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290070, 289109, 10, 'ChenEylon', 'Spielberg''s other WW2 masterpiece. Combat instead of camps but the same moral weight.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 164572, 3, 'ChenEylon', 'Though both are 70s-style con-artist character studies, the Spielberg gloss on Catch Me is far from Tarantino''s slow-burn cool.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (222194, 319181, 5, 'ChenEylon', 'Though both are LA-eats-its-young noir, Mulholland Dr.''s dream logic alienates fans of Wilder''s tight script.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (72559, 13978, 3, 'ChenEylon', 'Though both are LA race dramas, Crash''s tidy lessons feel weak next to American History X''s raw provocation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (235062, 92573, 4, 'ChenEylon', 'Though Bond essentially copied North by Northwest, Hitchcock''s clipped wit operates at a different frequency than Connery''s 60s spy spectacle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (18960, 289109, 3, 'ChenEylon', 'Though both are landmark war movies, Apocalypse Now''s hallucinatory excess and SPR''s clinical realism aim at completely different audiences.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (117874, 254986, 4, 'ChenEylon', 'Though both follow one man through the brutal middle of the 20th century, Gump''s sentimental fable is the inverse of the Pianist''s austerity.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (82967, 209158, 3, 'ChenEylon', 'Though both are Scorsese movies about loyalty and crime, Mean Streets'' loose 70s ramble can''t deliver the Departed''s coiled thrills.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10920, 256839, 5, 'ChenEylon', 'Though both are creature-in-the-dark sci-fi, Aliens'' Cameron-grade military tension makes Pitch Black''s B-movie pulp look thin.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (254986, 290070, 10, 'ChenEylon', 'Pianist viewers get the larger ensemble version of the same horror.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139657, 139654, 3, 'ChenEylon', 'Though both are HP films, the tonal jump from Columbus''s cheery first year to Yates''s dour Order of the Phoenix is jarring.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 82967, 9, 'ChenEylon', 'Scorsese back on the mob beat with DiCaprio and Nicholson. Same kinetic editing, more twists.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 271095, 10, 'ChenEylon', 'Last Crusade fans get the leaner original where every set piece still feels new.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56304, 25192, 4, 'ChenEylon', 'Though both are long Scorsese biopics with Pesci-or-similar sidekicks, Casino''s mob meat clashes with Aviator''s prestige polish.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (182955, 141544, 9, 'ChenEylon', 'Two LA crime epics back-to-back with great ensemble casts. LAC is the period-piece cousin.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (306032, 193253, 9, 'ChenEylon', 'Snatch viewers get the leaner, scrappier original Ritchie heist comedy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10830, 10920, 8, 'ChenEylon', 'Same Ripley, same xenomorph, completely different genre. Horror to action.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120574, 130953, 9, 'ChenEylon', 'Connery Bond hitting its stride. Goldfinger is where the formula locks in.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (273543, 352639, 8, 'ChenEylon', 'Stewart obsessing again. Rear Window viewers get the spiraling Herrmann-scored sequel of obsession.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 245103, 4, 'ChenEylon', 'Though both are 90s cool-criminal movies, Out of Sight''s rom-com pulse is a different mood than Heat''s heavy professionalism.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276217, 164572, 4, 'ChenEylon', 'Though both are Tarantino crime, Reservoir Dogs viewers expect kinetic violence and get a Pam Grier vehicle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (331427, 39551, 8, 'ChenEylon', 'Both 90s/00s desert war movies that are smarter than they need to be.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 176712, 10, 'ChenEylon', 'Direct second half of the Bride''s revenge. Vol. 2 trades the Crazy 88 for backstory and the Superman monologue.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 30951, 4, 'ChenEylon', 'Though both are Batman canon, Nolan''s grounded reboot has nothing in common with the kid-friendly SubZero animation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290070, 72559, 3, 'ChenEylon', 'Though both are ensemble films about prejudice destroying lives, Crash''s tidy moral collisions feel weightless next to Schindler''s rigor.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (326155, 209158, 4, 'ChenEylon', 'Though both are early Scorsese NYC pictures, Mean Streets'' loose hangout vibe lacks Taxi Driver''s nightmarish focus.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (18960, 257459, 10, 'ChenEylon', 'Heart of Darkness to boots-on-ground. Stone is the realist counterpoint.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290070, 67395, 4, 'ChenEylon', 'Though both are Spielberg ensemble dramas about oppression, Color Purple''s melodrama doesn''t match Schindler''s observational restraint.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139657, 139650, 9, 'ChenEylon', 'Same director, same tone, year 2 at Hogwarts. The natural next watch.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 82967, 5, 'ChenEylon', 'Though both star DiCaprio playing a man pretending to be someone he isn''t, Catch Me''s playfulness can''t prep you for Departed''s brutality.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (200521, 72559, 2, 'ChenEylon', 'Though both are LA ensemble web movies, Magnolia''s emotional sincerity is the opposite of Crash''s schematic moralism.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (18960, 121538, 9, 'ChenEylon', 'Kubrick approaches the same war with surgical detachment after Coppola''s opera.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (165961, 1390, 4, 'ChenEylon', 'Though both are early Spielberg, Jaws'' tight suspense exposes 1941''s self-indulgent sprawl.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (218219, 70959, 1, 'ChenEylon', 'Though both are animated fantasy films, Mononoke''s epic ecology is unlike Corpse Bride''s gothic stop-motion mood piece.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (328277, 10920, 9, 'ChenEylon', 'T2 viewers get Cameron''s other action-mom masterpiece with a different unstoppable threat.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 271095, 3, 'ChenEylon', 'Though both are Lucas-produced 80s pulp landmarks, Empire''s cold ESB melancholy is far from Raiders'' grinning Saturday-matinee energy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39551, 18960, 3, 'ChenEylon', 'Though both are landmark war movies with handheld combat, Black Hawk Down''s urban chaos and Apocalypse Now''s jungle reverie aren''t in the same headspace.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 224842, 4, 'ChenEylon', 'Though both are heavy crime dramas with bruised men, Heat''s cool LA professionalism is the opposite of Mystic River''s grieving Boston.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276217, 306032, 8, 'ChenEylon', 'Both motormouth heist movies where everyone screws everyone. Ritchie just owes more to Tarantino.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (254986, 32114, 3, 'ChenEylon', 'Though both are based on a real survivor, The Pianist''s observational restraint won''t satisfy fans of Beautiful Mind''s tidy uplift.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (92616, 230151, 3, 'ChenEylon', 'Though both are mid-century institutional satires, Dr. Strangelove''s pitch-black absurdity clashes with Network''s on-the-nose rant.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (2709, 16943, 9, 'EyalRabby', 'Peter Segal directs both of these hilarious Adam Sandler comedies. ''Anger Management'' brings the exact same comedic energy you loved in ''50 First Dates''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (9795, 133723, 9, 'EyalRabby', 'Ron Clements and John Musker co-directed both of these classic Family animations. If you enjoyed the lively pace of ''Aladdin'', you will love the clever mystery here.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (10741, 19423, 8, 'EyalRabby', 'Wilfred Jackson brings his classic animated Family touch from ''Alice in Wonderland'' to ''Aquarela do Brasil''. A great vintage watch.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (10830, 40199, 10, 'EyalRabby', 'Ridley Scott masterfully directed both. The dark, atmospheric Sci-Fi tension from ''Alien'' is perfectly evolved in ''Blade Runner''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (10920, 256530, 8, 'EyalRabby', 'James Cameron''s Sci-Fi roots shine in both. While ''Aliens'' is a masterpiece, you can see his early creature-feature direction in ''Piranha Part Two: The Spawning''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (13789, 279420, 9, 'EyalRabby', 'Sam Mendes directs both. If you enjoyed the acclaimed Drama of ''American Beauty'', you will appreciate his visual mastery in ''Road to Perdition''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (13978, 306311, 9, 'EyalRabby', 'Tony Kaye''s intense, gritty Drama style connects ''American History X'' directly with ''Snowblind''. Highly recommended if you want heavy themes.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (16006, 324061, 9, 'EyalRabby', 'Adam McKay''s signature Comedy style makes ''Talladega Nights'' a perfect, chaotic follow-up to ''Anchorman: The Legend of Ron Burgundy''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (18960, 70248, 10, 'EyalRabby', 'Francis Ford Coppola''s masterful direction of Drama links the epic scale of ''Apocalypse Now'' with the tense paranoia of ''The Conversation''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (24430, 24432, 9, 'EyalRabby', 'Jay Roach brings his iconic Musical and comedic timing from the first ''Austin Powers'' right into ''The Spy Who Shagged Me''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (26844, 26846, 10, 'EyalRabby', 'Robert Zemeckis perfectly continues the Sci-Fi time travel magic in ''Back to the Future Part II''. An essential follow-up.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (26846, 26847, 8, 'EyalRabby', 'Zemeckis wraps up the trilogy beautifully in ''Back to the Future Part III'', matching the Sci-Fi adventure energy of Part II.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (27168, 27171, 8, 'EyalRabby', 'Michael Bay ramps up the explosive Thriller action you loved in ''Bad Boys'' with this chaotic sequel.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (30955, 30967, 9, 'EyalRabby', 'Tim Burton''s dark, gothic Thriller aesthetic from ''Batman'' is pushed even further in ''Batman Returns''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (32114, 64093, 9, 'EyalRabby', 'Ron Howard''s ability to direct deeply moving, biographical Drama connects ''A Beautiful Mind'' with the incredible ''Cinderella Man''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (32178, 129763, 8, 'EyalRabby', 'Gary Trousdale''s creative touch bridges his classic animated Fantasy ''Beauty and the Beast'' with ''Gnomeo and Juliet''. Very charming.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (35522, 127627, 8, 'EyalRabby', 'Martin Brest directed both. While very different, ''Gigli'' shares the distinct Comedy pacing he used in ''Beverly Hills Cop''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (37178, 41308, 9, 'EyalRabby', 'Joel Coen''s mastery of the Thriller genre is evident in both the hilarious ''Big Lebowski'' and the much darker ''Blood Simple''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (40199, 122658, 8, 'EyalRabby', 'Ridley Scott''s incredible Drama direction links the futuristic ''Blade Runner'' with the grueling intensity of ''G.I. Jane''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (45129, 114719, 9, 'EyalRabby', 'Paul Greengrass brings his signature shaky-cam Drama tension from ''The Bourne Supremacy'' to ''The Fix''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (48075, 118957, 8, 'EyalRabby', 'Tom Shadyac directed both, proving his knack for supernatural Comedy in ''Bruce Almighty'' and ''Frankenstein: The College Years''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (56431, 69895, 10, 'EyalRabby', 'Robert Zemeckis delivers incredible emotional Drama in both ''Cast Away'' and the brilliant sci-fi ''Contact''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (65811, 67395, 10, 'EyalRabby', 'Steven Spielberg''s legendary Drama storytelling shines in both ''Close Encounters of the Third Kind'' and ''The Color Purple''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (66194, 104681, 8, 'EyalRabby', 'Amy Heckerling defined teen Comedy with ''Clueless'', and her comedic chops are just as sharp in ''European Vacation''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (68940, 125549, 8, 'EyalRabby', 'Simon West directs high-octane Thrillers; if you liked ''Con Air'', ''The General''''s Daughter'' brings the same intense energy.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (80583, 110319, 9, 'EyalRabby', 'Peter Weir''s brilliant direction of deeply emotional Drama connects ''Dead Poets Society'' with the intense ''Fearless''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (82662, 105617, 8, 'EyalRabby', 'Marco Brambilla''s action-Comedy touch in ''Demolition Man'' translates perfectly into ''Excess Baggage''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (86274, 262645, 9, 'EyalRabby', 'John McTiernan is an absolute master of the 80s Action/Thriller genre. The claustrophobic tension of ''Die Hard'' is matched perfectly by the jungle warfare of ''Predator''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (90772, 309943, 9, 'EyalRabby', 'Richard Kelly''s surreal, atmospheric Drama style connects ''Donnie Darko'' seamlessly to the bizarre ''Southland Tales''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (99164, 199463, 8, 'EyalRabby', 'Jon Favreau''s hilarious Comedy timing shines in both ''Elf'' and ''Made''. Great watches.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (107166, 114529, 9, 'EyalRabby', 'John Woo''s balletic, over-the-top Drama and action in ''Face/Off'' is also present in his earlier work ''Fists of the Double K''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (109093, 183879, 9, 'EyalRabby', 'The Coen brothers'' quirky, dark Crime elements from ''Fargo'' translate perfectly into ''The Ladykillers''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (111442, 257264, 10, 'EyalRabby', 'John Hughes is the king of 80s Comedy; if you loved ''Ferris Bueller'', ''Planes, Trains & Automobiles'' is a must-watch.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (112205, 132747, 9, 'EyalRabby', 'Luc Besson''s highly stylized, sweeping visual Romance connects ''The Fifth Element'' to ''Le Grand Bleu''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (113504, 218415, 10, 'EyalRabby', 'Lee Unkrich''s brilliant Family animation style makes ''Monsters, Inc.'' a perfect recommendation if you loved ''Finding Nemo''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (114067, 116466, 8, 'EyalRabby', 'Ted Kotcheff directed both, showing his versatility by jumping from the raw survival of ''First Blood'' to the comedy of ''Folks!''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (117874, 154709, 9, 'EyalRabby', 'Robert Zemeckis brings his signature comedic heart and historical ties from ''Forrest Gump'' to the Comedy ''I Wanna Hold Your Hand''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (121538, 176891, 10, 'EyalRabby', 'Stanley Kubrick''s cold, calculating direction links the war masterpiece ''Full Metal Jacket'' with his early noir work ''Killer''''s Kiss''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (129185, 131672, 9, 'EyalRabby', 'Ridley Scott''s masterful Drama eye links the epic ''Gladiator'' to the more intimate, beautiful ''A Good Year''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (130128, 130129, 10, 'EyalRabby', 'Francis Ford Coppola flawlessly continues the sprawling Crime Drama of ''The Godfather'' into ''Part II''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (130129, 130130, 8, 'EyalRabby', 'Coppola wraps up the legendary mafia Drama perfectly in ''The Godfather: Part III''. Essential viewing to finish the saga.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (131537, 145575, 8, 'EyalRabby', 'Barry Levinson''s sharp comedic influence connects the brilliant ''Good Morning, Vietnam'' to ''Hindsight Is 20/20...''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (131665, 185192, 10, 'EyalRabby', 'Gus Van Sant''s incredible talent for character-driven Drama links ''Good Will Hunting'' with the haunting ''Last Days''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (131780, 177369, 10, 'EyalRabby', 'Martin Scorsese''s gritty, energetic Drama style connects ''Goodfellas'' to the brilliant, uncomfortable ''King of Comedy''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (134077, 201260, 9, 'EyalRabby', 'Frank Darabont excels at uplifting period-piece Drama, making ''The Majestic'' a great follow-up to ''The Green Mile''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (134193, 134195, 9, 'EyalRabby', 'Joe Dante perfectly escalates the chaotic Horror-comedy of ''Gremlins'' in this fantastic sequel.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (134672, 155251, 9, 'EyalRabby', 'Harold Ramis''s brilliant Comedy directing makes ''Ice Harvest'' a great, slightly darker pick if you loved ''Groundhog Day''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (138797, 228310, 8, 'EyalRabby', 'Dennis Dugan''s slapstick Comedy style connects the chaotic ''Happy Gilmore'' with ''National Security''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (139650, 139657, 10, 'EyalRabby', 'Chris Columbus captures the magical Fantasy world perfectly in both of these incredible Harry Potter films.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (139655, 192172, 10, 'EyalRabby', 'Alfonso Cuarón''s beautiful, slightly dark Fantasy direction connects ''Prisoner of Azkaban'' flawlessly with ''A Little Princess''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (139657, 148200, 10, 'EyalRabby', 'Chris Columbus directs highly entertaining Family films, linking the first Harry Potter magic with the slapstick of ''Home Alone''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (143526, 192017, 9, 'EyalRabby', 'Ron Clements and John Musker bring incredible Musical magic to both the mythic ''Hercules'' and the underwater classic ''The Little Mermaid''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (148200, 148203, 9, 'EyalRabby', 'Chris Columbus expertly continues the slapstick Family fun in ''Home Alone 2: Lost in New York''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (148203, 221259, 10, 'EyalRabby', 'Columbus''s knack for heartfelt Comedy shines brightly in both ''Home Alone 2'' and the hilarious ''Mrs. Doubtfire''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (155213, 279888, 8, 'EyalRabby', 'Chris Wedge''s fun, animated Comedy style connects the prehistoric ''Ice Age'' perfectly to the mechanical world of ''Robots''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (158999, 168325, 8, 'EyalRabby', 'Roland Emmerich''s massive Sci-Fi spectacle style in ''Independence Day'' is also visible in ''Joey''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (159172, 159175, 9, 'EyalRabby', 'Steven Spielberg''s legendary Adventure direction links the fantastic ''Last Crusade'' with the darker ''Temple of Doom''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (165961, 214755, 10, 'EyalRabby', 'Spielberg''s mastery of the Thriller genre connects the terrifying ''Jaws'' with the brilliant, futuristic ''Minority Report''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (166917, 289222, 10, 'EyalRabby', 'Cameron Crowe''s heartfelt, Romance storytelling makes ''Say Anything...'' the perfect follow-up to ''Jerry Maguire''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (176711, 176712, 10, 'EyalRabby', 'Quentin Tarantino brilliantly continues the bloody, stylish Thriller action from Vol. 1 straight into ''Kill Bill: Vol. 2''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (176712, 223710, 8, 'EyalRabby', 'Tarantino''s sharp, Drama dialogue connects ''Kill Bill: Vol. 2'' with his quirky earlier project, ''My Best Friend''''s Birthday''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (182955, 279180, 9, 'EyalRabby', 'Curtis Hanson directs incredibly tense Thrillers; if you loved ''L.A. Confidential'', ''The River Wild'' is a fantastic choice.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (188507, 188509, 9, 'EyalRabby', 'Richard Donner continues the iconic buddy-cop Thriller dynamic seamlessly in ''Lethal Weapon 2''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (189233, 237008, 9, 'EyalRabby', 'Tom Shadyac''s hilarious, over-the-top Comedy direction connects ''Liar Liar'' perfectly with ''The Nutty Professor''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (190166, 209170, 9, 'EyalRabby', 'Terry Jones''s legendary Monty Python Comedy style makes ''The Meaning of Life'' a perfect pair for ''Life of Brian''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (194497, 194500, 10, 'EyalRabby', 'Peter Jackson''s masterful direction of the epic Fantasy genre links ''Fellowship of the Ring'' seamlessly to ''The Return of the King''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (199207, 199209, 9, 'EyalRabby', 'George Miller perfectly escalates the post-apocalyptic Thriller madness from ''Mad Max'' into ''The Road Warrior''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (199209, 199210, 8, 'EyalRabby', 'Miller continues the gritty, wasteland Thriller saga in ''Mad Max Beyond Thunderdome''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (209133, 311061, 9, 'EyalRabby', 'Mark S. Waters directs engaging, character-driven Drama, connecting the brilliant ''Mean Girls'' with ''The Spiderwick Chronicles''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (209657, 275289, 8, 'EyalRabby', 'Greg Glienna''s awkward, situational Comedy style links ''Meet the Parents'' perfectly to ''Relative Strangers''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (210511, 160524, 9, 'EyalRabby', 'Christopher Nolan masterfully directs both. The brilliant, psychological tension of ''Memento'' translates perfectly into the atmospheric mystery of ''Insomnia''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (210739, 210741, 8, 'EyalRabby', 'Barry Sonnenfeld brings his quirky, fast-paced Sci-Fi comedy style back for ''Men in Black II''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (214755, 231917, 9, 'EyalRabby', 'Steven Spielberg''s visionary Thriller direction connects ''Minority Report'' to his intense work on ''Night Gallery''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (215876, 237913, 9, 'EyalRabby', 'Brian De Palma''s incredibly tense, stylish Thriller direction links ''Mission: Impossible'' right to ''Obsession''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (218415, 279384, 9, 'EyalRabby', 'David Silverman''s fun, colorful Family animation style connects ''Monsters, Inc.'' to ''The Road to El Dorado''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (218599, 253478, 8, 'EyalRabby', 'Terry Jones''s classic British Comedy style connects the absurd ''Monty Python'' with ''Personal Services''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (221259, 232845, 8, 'EyalRabby', 'Chris Columbus brings his family-friendly Comedy touch from ''Mrs. Doubtfire'' right into ''Nine Months''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (222112, 337588, 8, 'EyalRabby', 'Barry Cook''s great animated Comedy direction connects ''Mulan'' to the hilarious ''Trail Mix-Up''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (232425, 293262, 9, 'EyalRabby', 'Henry Selick''s unique, creepy Animation style links ''The Nightmare Before Christmas'' to his work on ''Seepage''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (238072, 238073, 9, 'EyalRabby', 'Steven Soderbergh continues the slick, stylish heist Thriller energy perfectly in ''Ocean''''s Twelve''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (256342, 258365, 8, 'EyalRabby', 'Ben Sharpsteen''s classic Disney Family animation connects ''Pinocchio'' with ''Pluto''''s Quin-puplets''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (257459, 286350, 10, 'EyalRabby', 'Oliver Stone''s visceral, intense War direction connects ''Platoon'' directly to the gritty reality of ''Salvador''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (262645, 280663, 9, 'EyalRabby', 'John McTiernan''s high-concept Sci-Fi action connects the jungle of ''Predator'' with the intense arenas of ''Rollerball''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (263360, 264157, 8, 'EyalRabby', 'Garry Marshall''s heartwarming Romance direction connects ''Pretty Woman'' flawlessly with ''Princess Diaries 2''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (271192, 304765, 9, 'EyalRabby', 'Barry Levinson''s powerful Drama storytelling links the emotional ''Rain Man'' with the intense ''Sleepers''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (280270, 280305, 8, 'EyalRabby', 'John G. Avildsen returns to direct the dramatic underdog Drama story in ''Rocky V''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (283712, 283713, 9, 'EyalRabby', 'Brett Ratner continues the fast-talking, high-kicking Thriller fun seamlessly in ''Rush Hour 2''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (289558, 305920, 9, 'EyalRabby', 'Brian De Palma''s gritty, tense Crime direction links ''Scarface'' directly to the suspenseful ''Snake Eyes''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (290378, 304443, 8, 'EyalRabby', 'Richard Linklater''s laid-back, character-driven Comedy connects ''School of Rock'' with the indie hit ''Slacker''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (300229, 300230, 10, 'EyalRabby', 'Andrew Adamson perfectly continues the hilarious Fantasy satire and charm in ''Shrek 2''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (300230, 300234, 8, 'EyalRabby', 'Adamson brings more animated Comedy fun in the ''Shrek in the Swamp Karaoke Dance Party''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (304829, 330773, 9, 'EyalRabby', 'Nora Ephron''s brilliant, touching Drama direction connects ''Sleepless in Seattle'' to ''This Is My Life''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (310726, 310728, 8, 'EyalRabby', 'Jan de Bont continues the high-speed vehicle Thriller concept in ''Speed 2: Cruise Control''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (311037, 311038, 10, 'EyalRabby', 'Sam Raimi expertly escalates the superhero Thriller action and emotional depth in ''Spider-Man 2''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (313059, 315747, 9, 'EyalRabby', 'Rob Reiner''s nostalgic, emotional Drama direction connects ''Stand by Me'' directly to ''The Story of Us''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (276217, 159665, 9, 'EyalRabby', 'Quentin Tarantino''s signature dialogue and bloody Action shine brilliantly in both his debut ''Reservoir Dogs'' and the WWII epic ''Inglorious Bastards''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (291698, 10945, 9, 'EyalRabby', 'David Fincher brings his trademark grim, atmospheric Thriller direction from the terrifying ''Se7en'' to the dark sci-fi world of ''Alien 3''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (297838, 134077, 10, 'EyalRabby', 'Frank Darabont directs both of these incredible Stephen King prison adaptations. If you loved the emotional depth of ''The Shawshank Redemption'', ''The Green Mile'' is a must-watch.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (313449, 68683, 9, 'EyalRabby', 'Nicholas Meyer brings his sharp Action and political tension from ''Star Trek: The Wrath of Khan'' into the espionage world of ''Company Business''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (333856, 5306, 9, 'EyalRabby', 'James Cameron is the king of aquatic Drama and spectacle. If you loved the scale of ''Titanic'', ''The Abyss'' is an intense, must-watch deep-sea thriller.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (2709, 2133, 3, 'EyalRabby', 'While you might recognize Glen Chin from the charming romance ''50 First Dates'', jumping to the critically panned kids martial arts film ''3 Ninjas Kick Back'' is a massive downgrade.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (9795, 7099, 3, 'EyalRabby', 'Philip Proctor provides voicework for the musical masterpiece ''Aladdin'', but following him to the clunky live-action/animation hybrid ''The Adventures of Rocky & Bullwinkle'' is a bad idea.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (10741, 10141, 3, 'EyalRabby', 'Doris Lloyd appears in both, but pairing a whimsical Disney animated classic with a dusty 1930s prison drama makes absolutely no sense tonally.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (10830, 7825, 3, 'EyalRabby', 'John Hurt''s iconic role in the sci-fi horror ''Alien'' shouldn''t trick you into watching ''After Darkness'', a completely forgettable and low-energy drama.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (10920, 2067, 3, 'EyalRabby', 'Paul Reiser is excellent in the intense sci-fi thriller ''Aliens''. However, seeking out his lesser-known romantic drama ''3 1/2 Blocks from Home'' will leave action fans severely disappointed.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (13787, 11510, 3, 'EyalRabby', 'Trading the Oscar-winning suburban satire of ''American Beauty'' for the widely panned 1930s musical ''All the King''s Horses'' just because of Walter McGrail is a terrible recommendation.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (13978, 2136, 3, 'EyalRabby', 'A jarring tonal shift! Mark Swanson is in both, but moving from a blistering, R-rated drama about racism to a goofy kids ninja sequel is absurd.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (16006, 5836, 3, 'EyalRabby', 'Christina Applegate shines in the comedic brilliance of ''Anchorman'', but her presence cannot save the poorly rated 90s romance ''Across the Moon''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (18960, 1339, 3, 'EyalRabby', 'Martin Sheen leads the legendary war epic ''Apocalypse Now''. Recommending a completely obscure documentary-style drama like ''187: Documented'' based on his involvement is a massive stretch.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (24430, 2135, 3, 'EyalRabby', 'Charles Napier bridges the gap here, but fans of the razor-sharp 60s spy spoof ''Austin Powers'' will find nothing to enjoy in this tired family sequel.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (26844, 509, 3, 'EyalRabby', 'Huey Lewis provides the iconic soundtrack for the sci-fi adventure ''Back to the Future'', but his acting role in the terrible thriller ''.com for Murder'' is highly skippable.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (26846, 1030, 3, 'EyalRabby', 'John Erwin connects these two, but leaping from a blockbuster time-travel sequel to an obscure, low-budget 1960s western is a terrible algorithmic match.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (27168, 263, 3, 'EyalRabby', 'Julio Oscar Mechoso is in both, but if you want the high-octane explosions of ''Bad Boys'', a messy, critically panned rom-com like ''Til There Was You'' is the wrong choice.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (30955, 6859, 3, 'EyalRabby', 'Michael Balfour has a role in Burton''s dark superhero hit ''Batman'', but recommending the bloated 1970 drama ''The Adventurers'' to comic book fans makes no sense.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (32114, 3177, 3, 'EyalRabby', 'Rance Howard appears in both, but going from an Oscar-winning biographical drama about schizophrenia to a low-budget martial arts comedy parody is a ridiculous leap.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (32178, 1225, 3, 'EyalRabby', 'Hal Smith provides voice work for the flawless Disney romance ''Beauty and the Beast''. Recommending the mediocre body-swap comedy ''18 Again!'' off that connection is a huge false positive.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (35522, 263, 3, 'EyalRabby', 'Karen Mayo-Chandler links these films, but Eddie Murphy''s legendary action-comedy has absolutely zero crossover appeal with this generic, low-rated romance.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (37178, 2018, 3, 'EyalRabby', 'Jon Polito is a great character actor in the cult classic ''The Big Lebowski'', but following him to the cheap, direct-to-video thriller ''29 Palms'' is a bad gamble.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (40199, 6868, 3, 'EyalRabby', 'Kevin Thompson connects a seminal, moody cyberpunk masterpiece with a cheap, live-action kids fantasy. A truly terrible algorithm recommendation.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (45126, 24703, 3, 'EyalRabby', 'Rohan Quine appears in both, but fans of intense espionage thrillers will be completely bored by the sappy, critically panned romance of ''Autumn in New York''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (45129, 4536, 3, 'EyalRabby', 'Gabriel Mann is the only link between the genre-defining shaky-cam action of ''The Bourne Supremacy'' and the entirely forgettable thriller flop ''Abandon''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (46168, 4369, 3, 'EyalRabby', 'Frank Hagney acts in both, but pairing a brutal, sweeping historical war epic with a 1950s musical comedy is a recipe for viewer whiplash.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (48075, 263, 3, 'EyalRabby', 'Jennifer Aniston stars in both, but while ''Bruce Almighty'' is a beloved high-concept comedy, ''Til There Was You'' is a dull romance that barely made a splash.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (50639, 9004, 3, 'EyalRabby', 'Colby Chartrand worked on both, but suggesting a wholesome family movie about a basketball-playing dog to someone who just watched a dark, psychological time-travel thriller is hilarious.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (56431, 13320, 3, 'EyalRabby', 'Jay Acovone bridges these films, but the survival isolation of ''Cast Away'' shares no thematic DNA with this heavily criticized, overly sentimental family drama.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (65811, 1225, 3, 'EyalRabby', 'George DiCenzo connects Spielberg''s awe-inspiring sci-fi classic with a completely forgettable 80s body-swap comedy. Not a good double feature.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (66194, 94, 3, 'EyalRabby', 'Jace Alexander is in both, but the razor-sharp teen satire of ''Clueless'' will not appeal to audiences looking for a dated, outback adventure sequel.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (68940, 3264, 3, 'EyalRabby', 'Greg Collins appears in the explosive 90s action of ''Con Air'' and the schlocky 80s horror of ''976-EVIL''. These genres and quality levels do not mix.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (80583, 7099, 3, 'EyalRabby', 'Norman Lloyd connects a deeply moving drama about inspiring students with a loud, poorly-received live-action cartoon. An awful recommendation.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (82662, 4536, 3, 'EyalRabby', 'Benjamin Bratt stars in both, but if you want the satirical, explosive sci-fi fun of ''Demolition Man'', the slow, boring mystery of ''Abandon'' will put you to sleep.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (86274, 1710, 3, 'EyalRabby', 'Matt Landers is the shared actor, but trading the greatest action movie ever made for a poorly dubbed, low-budget Korean monster movie is a massive trap.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (90772, 263, 3, 'EyalRabby', 'Marina Malota links the surreal, moody indie brilliance of ''Donnie Darko'' with a generic 90s rom-com. A complete tonal mismatch.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (99164, 1339, 3, 'EyalRabby', 'Ed Asner is wonderful in the holiday classic ''Elf'', but following him to a gritty, low-budget documentary-style thriller is a terrible idea for family movie night.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (106217, 2382, 3, 'EyalRabby', 'Mario Van Peebles connects these two gritty 80s flicks, but while ''Exterminator 2'' has cult appeal, ''3:15'' is a high school gang movie that fails on every level.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (107166, 31, 3, 'EyalRabby', 'Margaret Cho appears in both, but the unhinged, glorious action of ''Face/Off'' is the polar opposite of the depressing, low-budget indie drama ''$pent''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (109093, 14385, 3, 'EyalRabby', 'Gary Houston connects the Coen Brothers'' snowy crime masterpiece with an obscure, low-rated Italian thriller. A classic algorithmic false positive.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (111442, 3095, 3, 'EyalRabby', 'Kristy Swanson is in both, but the joyful teenage rebellion of ''Ferris Bueller'' has zero crossover with this grotesque, unfunny mobster comedy.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (112205, 1026, 3, 'EyalRabby', 'Kevin Brewerton links a vibrant, visually stunning sci-fi epic with a cheap, generic crime thriller. You will be sorely disappointed.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (113504, 94, 3, 'EyalRabby', 'Stephen Root voices a character in the beautiful Pixar journey ''Finding Nemo'', but that does not mean family audiences want to watch a tired 80s comedy sequel.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (114067, 4687, 3, 'EyalRabby', 'Stephen E. Miller connects the intense, iconic survival action of Rambo with a completely forgettable, low-rated wilderness thriller.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (117874, 5936, 3, 'EyalRabby', 'Mary Ellen Trainor appears in the Oscar-winning historical drama ''Forrest Gump'' and the cheesy 80s actioner ''Action Jackson''. A completely disjointed recommendation.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (121538, 2382, 3, 'EyalRabby', 'Adam Baldwin''s intense performance in Kubrick''s war masterpiece shouldn''t lead you to his role in a terrible, forgotten 80s teen gang movie.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (129185, 3274, 3, 'EyalRabby', 'Richard Harris brings gravitas to the Roman epic ''Gladiator'', but following him to this bizarre, poorly rated 70s action-comedy is a mistake.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (130128, 13309, 3, 'EyalRabby', 'John Marley acts in the greatest mafia movie ever made, but that doesn''t make the clunky 1980s espionage thriller ''The Amateur'' worth your time.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (130129, 2634, 3, 'EyalRabby', 'Joseph Della Sorte links a sprawling crime tragedy with a completely forgettable Rodney Dangerfield comedy flop. Avoid this pairing.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (131537, 5836, 3, 'EyalRabby', 'Richard Portnow connects a brilliant, energetic Robin Williams dramedy with a slow, widely panned 90s romance. A total mismatch.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (131665, 5184, 3, 'EyalRabby', 'Frank Nakashima is in both, but trading a deeply moving, Oscar-winning script for a cheap, direct-to-video dystopian sci-fi is a bad trade.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (131780, 3095, 3, 'EyalRabby', 'Philip Suriano plays a mobster in both, but ''Goodfellas'' is a cinematic masterpiece, while ''8 Heads in a Duffel Bag'' is a cringe-inducing comedy misfire.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (134077, 5936, 3, 'EyalRabby', 'Brian Libby connects a deeply emotional supernatural prison drama with a loud, dumb 80s action movie. Tonally, they could not be further apart.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (134193, 4801, 3, 'EyalRabby', 'Corey Feldman stars in the beloved horror-comedy ''Gremlins'', but recommending his voice work in a terrible, historically inaccurate German cartoon is algorithmic madness.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (134672, 9897, 3, 'EyalRabby', 'Stephen Tobolowsky is a legend in the brilliant ''Groundhog Day'', but do not follow him to ''Burn Hollywood Burn'', widely considered one of the worst movies ever made.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (138797, 5936, 3, 'EyalRabby', 'Carl Weathers is hilarious in the golf comedy ''Happy Gilmore'', but jumping from that to his generic, explosion-heavy starring vehicle ''Action Jackson'' is a weird pivot.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (139650, 2118, 3, 'EyalRabby', 'Fiona Shaw connects the magical fantasy of Hogwarts with a tired, unnecessary comedy sequel. Potter fans will find nothing of value here.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (139655, 1338, 3, 'EyalRabby', 'Timothy Spall acts in the best Harry Potter film and the obscure historical drama ''1871''. An algorithm might link them, but human audiences won''t.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (139657, 2118, 3, 'EyalRabby', 'Fiona Shaw is the only link between launching a massive fantasy franchise and a totally forgotten 90s family comedy flop.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (143526, 31, 3, 'EyalRabby', 'Barbara Barrie voices a character in the upbeat Disney musical ''Hercules'', which shares absolutely zero demographic overlap with the depressing indie drama ''$pent''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (148200, 3095, 3, 'EyalRabby', 'Joe Pesci provides great comedic villainy in ''Home Alone'', but his role in the painfully unfunny dark comedy ''8 Heads in a Duffel Bag'' is best ignored.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (148203, 3095, 3, 'EyalRabby', 'Another Joe Pesci false positive. Loving the slapstick family fun of ''Home Alone 2'' does not mean you want to watch him carry around severed heads.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (155069, 144956, 3, 'EyalRabby', 'Larry Block connects a glossy, big-budget Will Smith sci-fi actioner with a completely forgotten 1980s thriller. A totally meaningless recommendation.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (155213, 94, 3, 'EyalRabby', 'Stephen Root voices a rhino in the charming animated hit ''Ice Age'', but that shouldn''t funnel family audiences toward a live-action 80s outback comedy.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (158999, 94, 3, 'EyalRabby', 'Anthony Crivello links the massive global destruction of ''Independence Day'' with the low-stakes comedy of ''Crocodile Dundee II''. They share nothing else.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (162352, 263, 3, 'EyalRabby', 'Jennifer Aniston voices a character in the beautiful sci-fi animation ''The Iron Giant'', but that is no reason to watch her poorly rated romantic comedy.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (165961, 1034, 3, 'EyalRabby', 'Murray Hamilton plays the mayor in the terrifying blockbuster ''Jaws'', but jumping from that to a silly 1963 teen spy comedy is ridiculous.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (166917, 2135, 3, 'EyalRabby', 'Donal Logue connects a heartfelt, Oscar-winning sports romance with a terrible, straight-to-video kids martial arts movie. Ignore this connection.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (176711, 31, 3, 'EyalRabby', 'James Parks appears in Tarantino''s stylish, bloody revenge epic, but following him to the cheap, miserable drama ''$pent'' will leave you bored to tears.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (176712, 7999, 3, 'EyalRabby', 'Sid Haig is a cult icon who briefly appears in ''Kill Bill 2'', but his presence in the terrible 1982 post-apocalyptic B-movie ''The Aftermath'' doesn''t make it watchable.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (182955, 2350, 3, 'EyalRabby', 'Elisabeth Granli connects a brilliant, Oscar-winning neo-noir mystery with an obscure, low-rated comedy. They are completely different mediums of quality.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (188507, 5092, 3, 'EyalRabby', 'Sven-Ole Thorsen is a classic henchman, but trading the defining buddy-cop action of ''Lethal Weapon'' for a laughable sci-fi knockoff is a terrible idea.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (189233, 263, 3, 'EyalRabby', 'Jim Jansen appears in Jim Carrey''s manic comedy hit ''Liar Liar'' and this totally forgettable rom-com. A classic trap for algorithmic engines.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (190166, 880, 3, 'EyalRabby', 'Eric Idle is a comedy genius in the brilliant religious satire ''Life of Brian'', but his voice work cannot save the messy live-action cash grab ''102 Dalmatians''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (194497, 4822, 3, 'EyalRabby', 'Norman Forsey is a minor connection between the greatest fantasy epic ever made and a cheap, direct-to-video monster movie about mutant lizards.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (194502, 1073, 3, 'EyalRabby', 'Miranda Otto is fantastic in the epic battles of ''The Two Towers'', but using her to pivot into an obscure, clunky sci-fi/horror film makes no sense.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (199207, 6926, 3, 'EyalRabby', 'Jonathan Hardy links a gritty, iconic dystopian thriller with a crude 70s Australian comedy. Fans of one will likely hate the other.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (199209, 4687, 3, 'EyalRabby', 'Jim Brown is in both, but if you want the high-octane vehicular carnage of ''The Road Warrior'', a cheap Canadian thriller is not the answer.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (209133, 5184, 3, 'EyalRabby', 'Graham Kartna connects the razor-sharp high school comedy of ''Mean Girls'' with a completely generic dystopian sci-fi. A total genre disconnect.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (209657, 169476, 3, 'EyalRabby', 'Emo Philips is hilarious, but bridging the awkward, relatable comedy of ''Meet the Parents'' to an awful 1980s sci-fi adventure is a bad recommendation.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (210509, 295057, 3, 'EyalRabby', 'Stevo Zigon connects Nolan''s brilliant reverse-narrative thriller with a completely unrelated Yugoslavian comedy. The definition of a false positive.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (210739, 5052, 3, 'EyalRabby', 'Harsh Nayyar links a defining 90s sci-fi comedy blockbuster with an obscure indie romantic comedy. An algorithmic misfire.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (214755, 2135, 3, 'EyalRabby', 'Patrick Kilpatrick plays a great heavy in the cerebral sci-fi of ''Minority Report'', but you shouldn''t follow him into a terrible children''s ninja sequel.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (215876, 1874, 3, 'EyalRabby', 'Olegar Fedoro connects the incredible stunts of ''Mission: Impossible'' with a low-budget, messy British crime comedy. Avoid.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (218415, 5972, 3, 'EyalRabby', 'Joe Lala voices a character in the heartwarming Pixar classic, but that doesn''t mean family audiences want to watch a terrible direct-to-video action movie.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (218599, 880, 3, 'EyalRabby', 'Eric Idle shines in the legendary medieval spoof, but jumping from Python-level humor to a live-action dog sequel is a massive drop in quality.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (221259, 14275, 3, 'EyalRabby', 'Terence McGovern is in both, but the beloved family comedy of ''Mrs. Doubtfire'' shares no humor with the dated, critically panned 70s satire ''Americathon''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (222112, 5590, 3, 'EyalRabby', 'Horst Buchholz connects the beautiful Disney animation of ''Mulan'' with a tired, jingoistic action sequel. A completely baffling pairing.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (232425, 18548, 3, 'EyalRabby', 'William Hickey voices the iconic Dr. Finkelstein, but you shouldn''t follow him into a drab, poorly rated 1990 drama about a journalist.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (238072, 3095, 3, 'EyalRabby', 'Miguel Perez links the slickest, coolest heist movie ever made with a grotesque, deeply unfunny dark comedy. Don''t take the bait.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (256342, 16490, 3, 'EyalRabby', 'Mel Blanc provides voices for both, but comparing a foundational piece of cinema history like ''Pinocchio'' to a forgettable 1940s short is insulting.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (257459, 2018, 3, 'EyalRabby', 'Keith David is incredible in the harrowing war drama ''Platoon'', but his presence can''t save the cheap, direct-to-video thriller ''29 Palms''.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (262645, 5092, 3, 'EyalRabby', 'Sven-Ole Thorsen connects a masterpiece of sci-fi action with a notoriously awful, low-budget sci-fi flop starring Jesse Ventura.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (276217, 3101, 3, 'EyalRabby', 'Randy Brooks appears in Tarantino''s razor-sharp indie debut and this sloppy, generic 80s thriller. Stick with Tarantino.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (291698, 31, 3, 'EyalRabby', 'Richmond Arquette links the grim, terrifying perfection of ''Se7en'' with an obscure, low-budget drama that no one has ever heard of.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (297838, 5574, 3, 'EyalRabby', 'Bob Gunton plays the warden in the beloved prison drama, but following him to Jim Carrey''s manic, goofy pet detective sequel makes no sense.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (313449, 6651, 3, 'EyalRabby', 'Nicholas Guest connects the greatest Star Trek film ever made with a terrible, cheap sci-fi actioner. A total waste of time.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (333856, 880, 3, 'EyalRabby', 'Ioan Gruffudd plays an officer on the doomed luxury liner, but jumping from a sweeping historical romance to a live-action dog sequel is absurd.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (335834, 31259, 3, 'EyalRabby', 'Sterling Hayden links a high-flying, adrenaline-fueled 80s classic with a dated, dry 1950s military propaganda film. A terrible match.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (337830, 8235, 3, 'EyalRabby', 'Keith Allen connects a gritty, iconic look at heroin addiction with a squeaky-clean tween spy sequel. The ultimate demographic clash.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (340901, 3101, 3, 'EyalRabby', 'Zoaunne LeRoy is in both, but pairing a brilliant, philosophical dramedy with a generic, forgettable 80s crime thriller is a massive failure.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (369458, 8092, 3, 'EyalRabby', 'Doug Lennox bridges a blockbuster superhero franchise starter with a wildly inaccurate, poorly received Meg Ryan boxing drama.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (130129, 7099, 3, 'EyalRabby', 'Though both films feature the legendary Robert De Niro, suggesting a critically panned live-action cartoon just because you loved a sprawling mafia tragedy is a massive disappointment.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification) VALUES (270971, 256188, 3, 'EyalRabby', 'Bob Aaron appears in Scorsese''s brutal boxing masterpiece, but using him to recommend a notoriously terrible 80s sci-fi comedy is hilarious algorithmic failure.'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +WITH Top_Movies AS ( + SELECT 207992 AS movie_id, 10 AS rating, 'Sci-Fi' AS genre_group UNION ALL + SELECT 313478, 10, 'Sci-Fi' UNION ALL + SELECT 313479, 9, 'Sci-Fi' UNION ALL + SELECT 289109, 9, 'Drama/War' UNION ALL + SELECT 290070, 10, 'Drama/War' UNION ALL + SELECT 267038, 10, 'Crime' UNION ALL + SELECT 131780, 9, 'Crime' UNION ALL + SELECT 297838, 10, 'Drama' UNION ALL + SELECT 159172, 9, 'Adventure' UNION ALL + SELECT 130128, 10, 'Crime' UNION ALL + SELECT 130129, 10, 'Crime' UNION ALL + SELECT 337166, 9, 'Animation' UNION ALL + SELECT 215876, 8, 'Action' UNION ALL + SELECT 238072, 8, 'Crime' +) +SELECT + t1.movie_id AS base_movie_id, + t2.movie_id AS recommended_movie_id, + LEAST(t1.rating, t2.rating) AS recommendation, + 'GiliBarak' AS suggested_by, + CASE + + WHEN t1.movie_id IN (130128, 130129) AND t2.movie_id IN (130128, 130129) + THEN 'Both are epic chapters of the Corleone family saga, showcasing some of the greatest acting and direction in film history.' + + + WHEN t1.movie_id IN (313478, 313479) AND t2.movie_id IN (313478, 313479) + THEN 'Both are legendary space opera chapters with iconic characters, epic conflicts, and a John Williams score.' + + + WHEN t1.genre_group = 'Sci-Fi' AND t2.genre_group = 'Sci-Fi' + THEN 'Both are groundbreaking science fiction masterpieces with visionary world-building and philosophical depth.' + + + WHEN t1.genre_group = 'Crime' AND t2.genre_group = 'Crime' + THEN 'Both are gripping crime classics that offer a realistic, gritty look at the criminal underworld.' + + + WHEN t1.genre_group = 'Drama/War' AND t2.genre_group = 'Drama/War' + THEN 'Both are powerful and emotionally intense historical dramas focused on human conflict and sacrifice.' + + + WHEN (t1.genre_group = 'Crime' AND t2.genre_group IN ('Action', 'Adventure')) OR (t1.genre_group IN ('Action', 'Adventure') AND t2.genre_group = 'Crime') + THEN 'Both are stylish, fast-paced thrillers featuring high stakes, clever plans, and charismatic leads.' + + + WHEN (t1.genre_group = 'Drama' AND t2.genre_group = 'Drama/War') OR (t1.genre_group = 'Drama/War' AND t2.genre_group = 'Drama') + THEN 'Both are deeply moving character studies exploring moral choices and resilience under pressure.' + + + ELSE 'Both are landmark cinematic masterpieces with stellar performances, tight screenplays, and massive cultural impact.' + END AS justification, + NULL AS comment +FROM Top_Movies t1 +CROSS JOIN Top_Movies t2 +WHERE t1.movie_id != t2.movie_id; + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +WITH Good_Movies AS ( + SELECT 30959 AS movie_id UNION ALL + SELECT 30955 UNION ALL + SELECT 311038 UNION ALL + SELECT 319602 UNION ALL + SELECT 207992 UNION ALL + SELECT 130128 UNION ALL + SELECT 130129 UNION ALL + SELECT 238072 UNION ALL + SELECT 267038 UNION ALL + SELECT 276217 UNION ALL + SELECT 131780 UNION ALL + SELECT 56304 UNION ALL + SELECT 82967 UNION ALL + SELECT 291698 UNION ALL + SELECT 301540 UNION ALL + SELECT 141544 UNION ALL + SELECT 297838 UNION ALL + SELECT 159172 UNION ALL + SELECT 289109 UNION ALL + SELECT 290070 +), +Bad_Movies AS ( + SELECT 30952 AS movie_id, 2 AS rec, 'superhero movies' AS common_link, 'Batman & Robin is campy, silly, and widely considered one of the worst superhero films ever made' AS reason UNION ALL + SELECT 311040, 5, 'superhero movies', 'Spider-Man 3 is overstuffed with villains and lacks the focused storytelling of the classics' UNION ALL + SELECT 238073, 5, 'crime or heist films', 'Ocean''s Twelve has a convoluted plot and lacks the sharp execution of the best heist movies' UNION ALL + SELECT 280305, 5, 'inspiring sports dramas', 'Rocky V is a disappointing sequel with a weak, messy plot' UNION ALL + SELECT 220805, 5, 'action-focused films', 'Mr. and Mrs. Smith relies too much on simple shooting and action rather than a strong narrative' UNION ALL + SELECT 188511, 5, 'action buddy-cop films', 'Lethal Weapon 4 has an overstuffed, messy story that lacks the tight pacing of the original' UNION ALL + SELECT 1390, 5, 'films directed by Steven Spielberg', '1941 is a loud, chaotic comedy that fails to capture the dramatic excellence of his best work' UNION ALL + SELECT 149287, 5, 'films directed by Steven Spielberg', 'Hook is a sentimental family movie that lacks the mature depth of his historical dramas' UNION ALL + SELECT 12744, 5, 'films directed by Steven Spielberg', 'Always is a slow, overly sentimental drama that does not match the epic scale of his best films' +) +SELECT + g.movie_id AS base_movie_id, + b.movie_id AS recommended_movie_id, + b.rec AS recommendation, + 'GiliBarak' AS suggested_by, + CONCAT('Though both movies are ', b.common_link, ', it is a bad recommendation since ', b.reason) AS justification, + NULL AS comment +FROM Good_Movies g +CROSS JOIN Bad_Movies b; + +INSERT IGNORE INTO movies_recommendations VALUES +( 263360 +, 283410 +, 10 +, 'Lior' +, 'Both star Julia Roberts and Richard Gere with a focus on their unique romantic chemistry and personal growth.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 151616 +, 46878 +, 8 +, 'Lior' +, 'Both use awkward dating misunderstandings to create a relatable and lighthearted romantic atmosphere.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 362808 +, 263360 +, 9 +, 'Lior' +, 'Both are iconic romantic films where the connection between the leads becomes more meaningful as the story develops.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 66194 +, 644 +, 9 +, 'Lior' +, 'Both are witty teen comedies with sharp dialogue, confident heroines, and a romantic storyline beneath the humor.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 200864 +, 263360 +, 9 +, 'Lior' +, 'Both are Cinderella-style romances where class differences create tension while keeping the relationship charming.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 245699 +, 263360 +, 9 +, 'Lior' +, 'Both are romantic comedies where the central relationship changes the characters in a fun and warm way.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 220276 +, 333856 +, 9 +, 'Lior' +, 'Both are dramatic love stories with tragic emotional stakes, memorable music, and romance that feels larger than life.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 333856 +, 34077 +, 9 +, 'Lior' +, 'Both are emotional romances shaped by time, fate, and loss, making them strong matches for sweeping love stories.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 34077 +, 117874 +, 9 +, 'Lior' +, 'Both follow unusual life journeys over many years and mix romance, memory, and emotional storytelling.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 117874 +, 297838 +, 9 +, 'Lior' +, 'Both are hopeful dramas about endurance, friendship, and finding meaning through difficult life circumstances.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 297838 +, 290070 +, 8 +, 'Lior' +, 'Both are serious, powerful dramas about survival, moral strength, and holding on to humanity under extreme conditions.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 290070 +, 289109 +, 8 +, 'Lior' +, 'Both are historical war dramas that focus on human cost and emotional impact rather than simple action.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 118980 +, 257744 +, 8 +, 'Lior' +, 'Both focus on adult relationships and emotional connection, using character moments more than spectacle.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 311428 +, 263360 +, 8 +, 'Lior' +, 'Both are romantic fantasies in different ways, built around a charming relationship between people from different worlds.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 337166 +, 300229 +, 9 +, 'Lior' +, 'Both are animated family classics that work for adults too, combining humor with emotional friendship.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 300229 +, 300230 +, 10 +, 'Lior' +, 'This is a natural sequel match because it keeps the same fairy-tale humor and develops the characters further.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 337166 +, 190869 +, 9 +, 'Lior' +, 'Both are warm family stories about friendship, belonging, and characters who feel different but find a home.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 190869 +, 191246 +, 9 +, 'Lior' +, 'Both are emotional Disney-style family films with strong themes of family, loss, and belonging.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 191246 +, 59578 +, 8 +, 'Lior' +, 'Both are imaginative family films with memorable music or visuals and a strong childhood point of view.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 59578 +, 300229 +, 8 +, 'Lior' +, 'Both create colorful fantasy worlds and use humor to entertain children and adults at the same time.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 96593 +, 190869 +, 10 +, 'Lior' +, 'Both tell emotional stories about a lonely child bonding with a strange creature and finding family through that connection.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 113506 +, 96593 +, 9 +, 'Lior' +, 'Both connect childhood imagination with deep emotion, showing how fantasy can help people process loneliness.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 312150 +, 312151 +, 10 +, 'Lior' +, 'The sequel keeps the same fun family-spy concept and sibling teamwork that makes the first movie enjoyable.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 139657 +, 139650 +, 9 +, 'Lior' +, 'Both build the Hogwarts world with friendship, mystery, and a nostalgic fantasy feeling.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 139650 +, 139655 +, 9 +, 'Lior' +, 'Both continue the magical school mystery, while the third adds stronger character development.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 139655 +, 139652 +, 9 +, 'Lior' +, 'Both have darker stakes and stronger emotional development within the Harry Potter world.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 194497 +, 194502 +, 9 +, 'Lior' +, 'Both continue the same emotional fantasy journey and focus on loyalty, friendship, and sacrifice.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 194502 +, 194500 +, 9 +, 'Lior' +, 'The final film completes the emotional journey and gives strong payoff to the characters relationships.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 218219 +, 174953 +, 10 +, 'Lior' +, 'Both are animated fantasy stories with strong heroines, nature themes, and emotional moral conflict.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 271095 +, 159172 +, 9 +, 'Lior' +, 'Both have the same adventurous Indiana Jones energy, with the later film adding a warmer father-son dynamic.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 238072 +, 238073 +, 8 +, 'Lior' +, 'Both follow the same charming heist team and rely on clever plans and group chemistry.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 56871 +, 238072 +, 8 +, 'Lior' +, 'Both are stylish and clever films driven by charm, deception, and a fun cat-and-mouse feeling.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 210739 +, 256632 +, 8 +, 'Lior' +, 'Both mix adventure, comedy, and charismatic characters, so the action stays fun rather than too heavy.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 25192 +, 56871 +, 8 +, 'Lior' +, 'Both feature Leonardo DiCaprio as an ambitious man chasing an unusual life, with style and personal conflict.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 280270 +, 117874 +, 8 +, 'Lior' +, 'Both are inspirational stories about sincere men whose emotional persistence matters more than status.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 129185 +, 185628 +, 8 +, 'Lior' +, 'Both are epic historical dramas where honor, loyalty, and personal loss drive the main character.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 129185 +, 340652 +, 8 +, 'Lior' +, 'Both are large-scale historical epics with battles, personal revenge, and tragic heroic figures.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 306032 +, 267038 +, 8 +, 'Lior' +, 'Both are fast crime-focused films with sharp dialogue, unusual structure, and memorable side characters.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30955 +, 30967 +, 8 +, 'Lior' +, 'Both share the same dark Batman world and visual style, with Batman Returns continuing the gothic superhero tone.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 313474 +, 313476 +, 8 +, 'Lior' +, 'This is a natural sequel recommendation because it continues the same Star Wars universe and Anakins story.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 313476 +, 313477 +, 8 +, 'Lior' +, 'Both continue Anakin and Padmes story, with the third film giving stronger emotional payoff to the conflict.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 176711 +, 176712 +, 10 +, 'Lior' +, 'This is a direct continuation of the same revenge story, with the second film completing the Brides emotional arc.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 188507 +, 188509 +, 8 +, 'Lior' +, 'Both rely on the same buddy-cop chemistry, mixing action with humor and character dynamics.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 188509 +, 188510 +, 8 +, 'Lior' +, 'Both continue the same buddy-cop rhythm, with humor balancing the action.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 283410 +, 151616 +, 8 +, 'Lior' +, 'Both use clever romantic schemes and internal conflicts to build a charming relationship story.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 245699 +, 151616 +, 8 +, 'Lior' +, 'Both feature characters trapped in complicated lies that eventually lead to genuine affection.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 264157 +, 66194 +, 8 +, 'Lior' +, 'Stylish and empowering coming-of-age stories about young women finding their place in society.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 256632 +, 238072 +, 8 +, 'Lior' +, 'Stylish ensemble films where the main characters use charisma and wit to achieve their goals.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 123435 +, 210511 +, 8 +, 'Lior' +, 'Both keep the viewer guessing as the protagonist loses control of the world around him.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 304862 +, 233058 +, 8 +, 'Lior' +, 'Atmospheric and dark mysteries that lean into supernatural elements and occult themes.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 112290 +, 267038 +, 8 +, 'Lior' +, 'Iconic 90s films that use stylized dialogue and dark humor to critique society.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30959 +, 30955 +, 7 +, 'Lior' +, 'While modern, Batman Begins respects the dark and gritty origin of the caped crusader.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 319602 +, 319613 +, 8 +, 'Lior' +, 'A classic sequel match that continues the charm and heroic stakes of the original Superman.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 313478 +, 313479 +, 10 +, 'Lior' +, 'Essential viewing to see the emotional and cinematic conclusion of the original Star Wars saga.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 46878 +, 362808 +, 8 +, 'Lior' +, 'Both feature lovable but flawed protagonists searching for clarity in their love lives.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 151616 +, 66194 +, 8 +, 'Lior' +, 'Sharp, stylish comedies about women who find love while navigating high-pressure social lives.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 244421 +, 118980 +, 8 +, 'Lior' +, 'Quiet, intimate stories that prioritize emotional connection over large plot spectacle.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 297838 +, 117874 +, 9 +, 'Lior' +, 'Both films leave the viewer with a sense of hope and belief in the goodness of humanity.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 191246 +, 337166 +, 9 +, 'Lior' +, 'Childhood classics that are emotionally deep enough to be re-watched at any age.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 200864 +, 283410 +, 8 +, 'Lior' +, 'Light and comforting romance about finding your way to the right person despite social hurdles.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 257744 +, 200521 +, 8 +, 'Lior' +, 'Ambitious ensemble dramas that weave multiple relationship stories into a single tapestry.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 183370 +, 257744 +, 7 +, 'Lior' +, 'Focused on the subtle beauty of character interaction rather than fast-paced narrative.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 235615 +, 330670 +, 7 +, 'Lior' +, 'Realistic explorations of how family history shapes who we become as adults.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 117874 +, 270628 +, 8 +, 'Lior' +, 'Both films use a nostalgic lens to look back at childhood innocence and friendship.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 289109 +, 290070 +, 9 +, 'Lior' +, 'Serious historical accounts of WWII that emphasize moral duty and sacrifice.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 311428 +, 200864 +, 7 +, 'Lior' +, 'Charming fairy-tale-style romances that provide an easy, comforting viewing experience.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 264157 +, 644 +, 8 +, 'Lior' +, 'Coming-of-age films where a young woman finds her voice amid romantic confusion.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 215875 +, 130945 +, 8 +, 'Lior' +, 'The absolute peak of 90s spy thrillers with high-tech gadgets and non-stop momentum.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 123435 +, 247579 +, 8 +, 'Lior' +, 'High-tension thrillers where survival depends on outsmarting an invisible or trapped situation.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 350424 +, 34077 +, 8 +, 'Lior' +, 'Thought-provoking romantic dramas where reality and time feel uniquely fluid.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 238072 +, 210739 +, 8 +, 'Lior' +, 'Both are extremely charismatic ensemble films that never take themselves too seriously.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 190869 +, 337166 +, 9 +, 'Lior' +, 'Characters who feel different from their peers find strength in a loyal group of friends.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 300229 +, 59578 +, 8 +, 'Lior' +, 'Whimsical and colorful worlds that hide a deeper meaning for more mature audiences.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 113506 +, 191246 +, 8 +, 'Lior' +, 'Both use powerful storytelling to deal with the themes of legacy and loss.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 271095 +, 238072 +, 8 +, 'Lior' +, 'Classic heist and adventure vibes where the heros charm is just as important as their plan.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 159172 +, 271095 +, 10 +, 'Lior' +, 'The highest standard for action-adventure sequels, returning to the spirit of the first film.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 263360 +, 151616 +, 9 +, 'Lior' +, 'Essential romantic comedies for anyone who enjoys seeing a relationship bloom from a strange start.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 46878 +, 644 +, 8 +, 'Lior' +, 'Witty dialogue and awkward romantic situations that keep the humor feeling fresh.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 220276 +, 34077 +, 9 +, 'Lior' +, 'Visually opulent romances where the aesthetic choices reflect the deep emotions of the leads.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 290070 +, 297838 +, 8 +, 'Lior' +, 'Films that leave you thinking about the moral choices people make under immense pressure.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 118980 +, 183370 +, 8 +, 'Lior' +, 'Both are quiet character portraits that reward a patient and sensitive viewer.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 117874 +, 280270 +, 8 +, 'Lior' +, 'Shows how sincerity and simple goals can result in a truly legendary life story.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 129185 +, 289109 +, 8 +, 'Lior' +, 'Intense and honorable stories of sacrifice that redefine their respective historical genres.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 210511 +, 350424 +, 7 +, 'Lior' +, 'Mind-bending stories that require multiple viewings to truly understand the characters mind.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 267038 +, 306032 +, 8 +, 'Lior' +, 'Great for fans of high-energy crime stories with colorful characters and sharp wit.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 311036 +, 319602 +, 8 +, 'Lior' +, 'Both movies perfectly capture the struggle of balancing a heroic double life with human emotion.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 188510 +, 188511 +, 8 +, 'Lior' +, 'Completes the series by adding new characters that revitalize the central relationship.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 139655 +, 194497 +, 8 +, 'Lior' +, 'Both represent a transition into a more epic and dangerous fantasy landscape.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 218219 +, 194497 +, 8 +, 'Lior' +, 'Complex, serious fantasy worlds that treat their mythology with great respect and beauty.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 300229 +, 337166 +, 9 +, 'Lior' +, 'The two most influential animated films that shaped the modern family movie industry.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 256632 +, 210739 +, 8 +, 'Lior' +, 'Fun and charming leads who guide us through imaginative and high-stakes worlds.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 238072 +, 56871 +, 9 +, 'Lior' +, 'Slick, sophisticated fun that focuses on the cleverness of the con rather than brute force.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 159172 +, 159175 +, 8 +, 'Lior' +, 'Classic Indiana Jones thrills that define the adventure genre for an entire generation.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 333856 +, 220276 +, 8 +, 'Lior' +, 'Both films use a massive, stylized production to emphasize a heart-wrenching love story.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 139650 +, 139652 +, 9 +, 'Lior' +, 'A bridge between the wonder of childhood and the dark realities of growing up.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 139655 +, 313476 +, 7 +, 'Lior' +, 'Both fantasy entries increase the romantic tension while the world falls into chaos.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 271095 +, 159175 +, 8 +, 'Lior' +, 'Even with different tones, both capture the pure thrill of a legendary hero in danger.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 215875 +, 238072 +, 8 +, 'Lior' +, 'Masterclasses in 90s/00s style, tension, and charismatic ensemble performances.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 312150 +, 312152 +, 3 +, 'Lior' +, 'While it is a sequel, it replaces the clever spy gadgets with a loud and annoying video-game gimmick.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 117874 +, 270971 +, 4 +, 'Lior' +, 'Both are famous character studies, but the brutal, self-destructive boxing world of Raging Bull is too depressing for Gump fans.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 139652 +, 313476 +, 4 +, 'Lior' +, 'Both feature teen romance in fantasy worlds, but Star Wars is far more political and dry than Harry Potter.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 340652 +, 112290 +, 3 +, 'Lior' +, 'Brad Pitt fans who loved his heroic role in Troy will find his nihilistic role in Fight Club confusing and aggressive.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 263360 +, 220805 +, 4 +, 'Lior' +, 'Despite the star-power couple, the violent action-comedy vibe of Smith ruins the Cinderella fairytale mood of Pretty Woman.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 313478 +, 313474 +, 4 +, 'Lior' +, 'Fans of the mature original Star Wars trilogy are often put off by the childish humor and political focus of the prequels.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 123435 +, 292671 +, 4 +, 'Lior' +, 'Both are mysteries, but while The Game is a tight thriller, Secret Window becomes slow and psychologically repetitive.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 56871 +, 25192 +, 5 +, 'Lior' +, 'Both star DiCaprio as a complex real man, but The Aviator is much longer and more emotionally distant than the fun Catch Me If You Can.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 210511 +, 292671 +, 3 +, 'Lior' +, 'Both deal with unstable memory, but Secret Window feels like a generic thriller compared to the brilliant structure of Memento.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 191246 +, 849 +, 3 +, 'Lior' +, 'Both are Disney animal sequels, but this one lacks the music and emotional weight that made The Lion King legendary.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 238072 +, 306032 +, 4 +, 'Lior' +, 'Both are heist stories, but Snatch is far more chaotic, violent, and harder to follow than the polished Oceans Eleven.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 304862 +, 350424 +, 3 +, 'Lior' +, 'Both feature Johnny Depp or dark mystery, but Vanilla Sky is a confusing psychological trip that doesnt match the Gothic charm of Sleepy Hollow.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 280270 +, 270971 +, 4 +, 'Lior' +, 'Both are boxing classics, but Rocky is about hope while Raging Bull is a bitter study of a mans total collapse.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 210739 +, 312150 +, 3 +, 'Lior' +, 'Both feature agents and gadgets, but the smart sci-fi wit of Men in Black is far superior to the childish Spy Kids.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 271095 +, 256632 +, 5 +, 'Lior' +, 'Both are big adventures, but the grounded suspense of Indiana Jones is lost in the over-the-top fantasy of Pirates.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 174953 +, 337166 +, 4 +, 'Lior' +, 'Both are animation, but the serious environmental apocalypse of Nausicaa is a jarring jump from the cozy world of Toy Story.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 168854 +, 326155 +, 5 +, 'Lior' +, 'Both study lonely men, but Joker is loud and stylized while Taxi Driver is a much more subtle and realistic drama.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 333856 +, 117874 +, 4 +, 'Lior' +, 'Both are 90s classics, but the focused tragedy of Titanic doesnt match the episodic, fast-paced life of Forrest Gump.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 185628 +, 340652 +, 5 +, 'Lior' +, 'Both are war epics, but Troy is mostly about battle spectacle while Last Samurai is about cultural transformation.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 151616 +, 220805 +, 5 +, 'Lior' +, 'Both use romantic tension between stars, but the sudden shift to guns and assassins in Smith is too much for rom-com fans.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 313477 +, 129185 +, 6 +, 'Lior' +, 'Both involve betrayal and revenge, but the space-opera fantasy doesnt quite hit the same historical weight as Gladiator.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 109421 +, 220805 +, 5 +, 'Lior' +, 'Both are action films, but Fast and Furious is purely car-focused while Smith is a relationship-driven action comedy.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30955 +, 311036 +, 6 +, 'Lior' +, 'Both are superheroes, but the dark Gothic world of Batman is very different from the bright, youthful energy of Spider-Man.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 139650 +, 194502 +, 4 +, 'Lior' +, 'Both are fantasy sequels, but the massive, violent battles in Two Towers are a poor match for the light mystery of Harry Potter.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 300229 +, 190869 +, 6 +, 'Lior' +, 'Both feature outsiders, but Shrek is a parody filled with modern pop-culture jokes that Lilo & Stitch fans might find cynical.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 117874 +, 330670 +, 5 +, 'Lior' +, 'Both follow a mans life, but This Boys Life is a gritty, realistic drama that lacks any of the humor found in Gump.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 233058 +, 304862 +, 7 +, 'Lior' +, 'Both are dark mystery films with occult clues, investigation, and gothic atmosphere, so the connection between them is strong.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 176711 +, 267038 +, 4 +, 'Lior' +, 'Even by the same director, the extreme martial arts focus in Kill Bill is a jarring shift from the conversational style of Pulp Fiction.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 130945 +, 215875 +, 6 +, 'Lior' +, 'Both are 90s spy movies, but Mission Impossible is much more convoluted and gadgets-heavy than a traditional Bond film.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 158999 +, 313474 +, 6 +, 'Lior' +, 'Both involve sci-fi conflicts, but Independence Day is a generic disaster movie while Star Wars is a fantasy epic.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 164572 +, 238072 +, 6 +, 'Lior' +, 'Both involve crime, but Jackie Brown is a slow-burn character study that lacks the slick pace of Oceans Eleven.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 181766 +, 185628 +, 6 +, 'Lior' +, 'Both involve a man learning a new culture, but Kundun is a spiritual biography that lacks any of the action found in Last Samurai.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 257744 +, 118980 +, 6 +, 'Lior' +, 'Both explore adult love, but the complex ensemble structure of Playing by Heart makes it harder to follow than Frankie and Johnny.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 270971 +, 326155 +, 6 +, 'Lior' +, 'Both are dark Scorsese character studies, but Raging Bull is a noisy sports drama while Taxi Driver is a quiet psychological thriller.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 139655 +, 218219 +, 6 +, 'Lior' +, 'Both are fantasy, but Princess Mononoke is a serious, violent environmental fable that doesnt match the school-life vibe of Potter.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 300230 +, 191246 +, 6 +, 'Lior' +, 'Both are family hits, but the constant satire in Shrek 2 is a poor match for the earnest, emotional drama of The Lion King.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 159172 +, 238072 +, 5 +, 'Lior' +, 'Both feature charming leads on a mission, but the high-tech modern casino vibe is a huge leap from 1930s adventure.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 290070 +, 117874 +, 4 +, 'Lior' +, 'Both are dramas foucusing on personal story, but Schindlers List is far too heavy and painful compare to the sentimental tone of Gump.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 25192 +, 330670 +, 6 +, 'Lior' +, 'Both are DiCaprio dramas, but The Aviator is a huge, flashy production while This Boys Life is a very small, intimate story.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 304862 +, 292671 +, 5 +, 'Lior' +, 'Both involve Depp in a mystery, but Secret Window is a modern, slow-paced thriller that lacks the visual fun of Sleepy Hollow.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 312152 +, 59578 +, 4 +, 'Lior' +, 'Both create colorful worlds, but Spy Kids 3D depends entirely on bad CGI while Charlie and the Chocolate Factory has a real story.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 190869 +, 170721 +, 6 +, 'Lior' +, 'Both are Disney adventures, but Jungle Book 2 is a generic sequel that lacks the emotional uniqueness of Lilo & Stitch.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 96593 +, 259826 +, 3 +, 'Lior' +, 'Both show suburban kids and supernatural forces, but one is a heartwarming alien story and the other is a terrifying horror film.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 263360 +, 200864 +, 6 +, 'Lior' +, 'Both are Cinderella stories, but Maid in Manhattan feels very predictable and lacks the sharp wit of Pretty Woman.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 362808 +, 118980 +, 6 +, 'Lior' +, 'Both are adult romances, but Frankie and Johnny is much heavier and lacks the legendary humor of When Harry Met Sally.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 264157 +, 200864 +, 6 +, 'Lior' +, 'Both have a fairy-tale feel, but Maid in Manhattan is a grounded romance while Princess Diaries 2 is a royal fantasy.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 188509 +, 188511 +, 6 +, 'Lior' +, 'Same characters, but by the fourth film the formula feels very repetitive and less exciting than the original sequels.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 139657 +, 194497 +, 6 +, 'Lior' +, 'Both start a fantasy journey, but Lord of the Rings is far more serious and war-focused than the magical school life of Potter.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 238073 +, 238072 +, 4 +, 'Lior' +, 'While it has the same team, the sequel is notoriously over-complicated and loses the fun simplicity of the first heist.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 113506 +, 300233 +, 4 +, 'Lior' +, 'Both involve childhood imagination, but one is a deep emotional drama and the other is a loud comedy short.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 313476 +, 139652 +, 6 +, 'Lior' +, 'Both show young love in danger, but Star Wars is far more concerned with political senate meetings than the emotional core.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 159175 +, 208245 +, 5 +, 'Lior' +, 'Both are light adventures, but the Western gambling world of Maverick is a poor match for the dark occult adventure of Indy.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 256632 +, 220805 +, 2 +, 'Lior' +, 'Both depend on star power and action, but the pirate fantasy world is very different from the modern assassin couple.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30967 +, 97727 +, 5 +, 'Lior' +, 'Both have Burtons visual style, but Edward Scissorhands is a gentle fairy tale while Batman Returns is a violent superhero film.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 168854 +, 112290 +, 5 +, 'Lior' +, 'Both feature alienated men, but Fight Club is a fast-paced philosophical action movie while Joker is a slow emotional collapse.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 313477 +, 340652 +, 3 +, 'Lior' +, 'Both are tragedies about war and betrayal, but the mythic Greek setting doesnt feel right for a science fiction space fan.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 176712 +, 129185 +, 2 +, 'Lior' +, 'Both are about personal revenge, but Kill Bills hyper-stylized and colorful violence is a poor match for Gladiators grounded tone.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 218808 +, 313474 +, 3 +, 'Lior' +, 'Both have scenes in space, but Moonraker is a dated Bond gadget film that lacks the world-building of Star Wars.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 359297 +, 158999 +, 3 +, 'Lior' +, 'Both are alien invasions, but War of the Worlds is dark and scary while Independence Day is a loud, patriotic action movie.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 372733 +, 123435 +, 4 +, 'Lior' +, 'Both are mysteries, but Young Sherlock is a fun childhood adventure while The Game is a high-stakes psychological mind-bender.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 116556 +, 210511 +, 6 +, 'Lior' +, 'Both are early Nolan thrillers about obsession, but Following is a tiny black-and-white indie that lacks the polish of Memento.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 177369 +, 168854 +, 5 +, 'Lior' +, 'Both focus on failed comedians and fame obsession, but Joker is much more violent and lacks the dark comedic wit.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 253010 +, 235615 +, 4 +, 'Lior' +, 'Both explore father-son style connections, but A Perfect World is a tragic crime drama that lacks any of the humor of Nothing in Common.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 223499 +, 257744 +, 5 +, 'Lior' +, 'Both look at relationships and art, but the broad ensemble in Playing by Heart is much more confusing and less intimate.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 151616 +, 245699 +, 6 +, 'Lior' +, 'Both use romantic lies, but the 80s humor in Overboard feels very dated and less sophisticated than the modern 2000s comedy.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 46878 +, 66194 +, 4 +, 'Lior' +, 'Both deal with self-image, but the high-school setting of Clueless is a poor match for the adult career struggles of Bridget Jones.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 362808 +, 46878 +, 6 +, 'Lior' +, 'Both are adult romances, but Bridget Jones depends on physical comedy while When Harry Met Sally is built on legendary dialogue.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 644 +, 151616 +, 6 +, 'Lior' +, 'Both feature romantic conflict, but the high-school energy of 10 Things is lost in the corporate dating world of How to Lose a Guy.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 264157 +, 244421 +, 6 +, 'Lior' +, 'Both follow a young womans independence, but The Other Sister is a very serious drama about disability, not a fun princess movie.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 289109 +, 340652 +, 6 +, 'Lior' +, 'Both are war films, but Troy is based on myth and spectacle while Saving Private Ryan is a brutal, realistic look at WWII history.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 185628 +, 183873 +, 6 +, 'Lior' +, 'Both involve honor and swords, but Ladyhawke is a fantasy romance with magic, not a serious historical drama about the Samurai.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 270971 +, 280270 +, 5 +, 'Lior' +, 'Both feature boxers, but those who love the "heroic win" in Rocky will be horrified by the total moral decline in Raging Bull.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 306032 +, 238072 +, 6 +, 'Lior' +, 'Both are heist films, but the aggressive cockney dialogue and violence in Snatch is a far cry from the cool jazz of Oceans Eleven.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 238073 +, 56871 +, 6 +, 'Lior' +, 'Both involve cons, but the sequel Oceans Twelve is messy and confusing compared to the tight, charming story of Catch Me If You Can.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 117874 +, 290070 +, 4 +, 'Lior' +, 'Both are emotional historical stories, but Schindlers List is far heavier and emotionally draining than Forrest Gump.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 139657 +, 218219 +, 5 +, 'Lior' +, 'Both build fantasy worlds with young heroes, but Princess Mononoke is much darker and morally complex than Harry Potter.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 337166 +, 218219 +, 4 +, 'Lior' +, 'Both are animated classics, but Princess Mononoke is far more violent and philosophical than Toy Story.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 256632 +, 271095 +, 5 +, 'Lior' +, 'Both are adventure films with charismatic leads, but Indiana Jones feels more grounded while Pirates becomes overly fantastical.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 210739 +, 238072 +, 6 +, 'Lior' +, 'Both are stylish ensemble films with humor and action, but Oceans Eleven is slower and more dialogue-driven than Men in Black.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 300229 +, 191246 +, 5 +, 'Lior' +, 'Both are huge animated hits, but Shrek relies on parody humor while Lion King is much more sincere emotionally.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 56871 +, 238073 +, 4 +, 'Lior' +, 'Both involve clever cons and stylish characters, but Oceans Twelve becomes messy and overcomplicated compared to Catch Me If You Can.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 123435 +, 350424 +, 5 +, 'Lior' +, 'Both make the viewer question reality, but Vanilla Sky becomes far more emotional and abstract than The Game.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 34077 +, 220276 +, 4 +, 'Lior' +, 'Both are visually emotional romances, but Moulin Rouge is much louder and more theatrical than Benjamin Button.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 151616 +, 200864 +, 5 +, 'Lior' +, 'Both are modern Cinderella-style romances, but Maid in Manhattan feels much more predictable and less funny.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 210511 +, 123435 +, 4 +, 'Lior' +, 'Both are psychological thrillers about manipulation and confusion, but The Game feels much more conventional than Memento.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 280270 +, 326155 +, 4 +, 'Lior' +, 'Both focus on lonely struggling men, but Taxi Driver is much darker and more disturbing than Rocky.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 139652 +, 194500 +, 5 +, 'Lior' +, 'Both are fantasy stories with large battles and emotional sacrifice, but Return of the King is far heavier than Harry Potter.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30955 +, 319602 +, 5 +, 'Lior' +, 'Both are classic superhero films, but Superman feels much brighter and less gothic than Batman.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 188507 +, 215875 +, 5 +, 'Lior' +, 'Both are action films built around missions and danger, but Mission Impossible is much more plot-focused than Lethal Weapon.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 306032 +, 112290 +, 4 +, 'Lior' +, 'Both are edgy cult films, but Fight Club becomes much more aggressive and philosophical than Snatch.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 96593 +, 113506 +, 6 +, 'Lior' +, 'Both connect childhood imagination with loneliness and emotional healing, though Finding Neverland is slower and more reflective.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 245699 +, 46878 +, 5 +, 'Lior' +, 'Both are romantic comedies built around awkward situations, but Bridget Jones is much more cynical and chaotic than Overboard.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 194497 +, 313478 +, 5 +, 'Lior' +, 'Both are fantasy epics with heroes facing impossible odds, but Star Wars feels more action-driven and less emotionally intimate than Lord of the Rings.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 849 +, 190869 +, 5 +, 'Lior' +, 'Both are light family films with cute animal characters, but Lilo & Stitch has a much stronger emotional story than the Dalmatian sequel.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 850 +, 191246 +, 4 +, 'Lior' +, 'Both connect to Disney childhood nostalgia, but a sing-along title feels much thinner than The Lion King''s full story and characters.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 183370 +, 118980 +, 7 +, 'Lior' +, 'Both are quiet relationship-driven dramas where the emotion comes from small character moments rather than big plot twists.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 244421 +, 263360 +, 6 +, 'Lior' +, 'Both focus on women searching for love and independence, but The Other Sister is much more serious than the fairy-tale charm of Pretty Woman.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 372733 +, 329880 +, 6 +, 'Lior' +, 'Both are mystery stories built around investigation and suspicion, but Young Sherlock Holmes is more playful while Then There Were None feels darker.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30967 +, 304862 +, 5 +, 'Lior' +, 'Both carry Tim Burton''s gothic visual style, but Sleepy Hollow is more mystery-driven while Batman Returns is a darker superhero film.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 319613 +, 311036 +, 6 +, 'Lior' +, 'Both are superhero stories about responsibility and public heroism, but Spider-Man feels more youthful and emotional than Superman II.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 188511 +, 220805 +, 5 +, 'Lior' +, 'Both mix action with comedy and partnership dynamics, but Mr. and Mrs. Smith depends more on romantic tension than buddy-cop humor.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 235615 +, 183370 +, 6 +, 'Lior' +, 'Both are gentle adult character stories, but Ladies in Lavender is quieter and less comedic than Nothing in Common.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139657, 139650, 10, 'Noam-Barkai', 'Both early HP, magical and fun in the same way.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139650, 139655, 10, 'Noam-Barkai', 'Natural next step, both early HP at their peak.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139657, 139655, 10, 'Noam-Barkai', 'Both early HP, both classics of the series.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139655, 139652, 8, 'Noam-Barkai', 'Same series moving into a slightly more mature tone.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139652, 139654, 8, 'Noam-Barkai', 'Same later-HP feel, both with strong villains.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139654, 139653, 8, 'Noam-Barkai', 'Both later HP with the same darker tone.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 256631, 9, 'Noam-Barkai', 'Same world, same lead character, same adventure energy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (300229, 300230, 10, 'Noam-Barkai', 'Sequel is even better, same humor and great soundtrack choices.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 271095, 10, 'Noam-Barkai', 'Peak adventure cinema, both Indy classics.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311037, 311038, 9, 'Noam-Barkai', 'Same hero, the sequel is even stronger.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (14132, 14157, 9, 'Noam-Barkai', 'Same cast back together, nostalgia carries it well.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280281, 8, 'Noam-Barkai', 'Same underdog story continued, the sequel keeps the formula working.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188507, 188509, 9, 'Noam-Barkai', 'Best buddy cop pairing, the sequel is even tighter.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313479, 8, 'Noam-Barkai', 'Same original trilogy, both have iconic scenes.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312150, 312151, 9, 'Noam-Barkai', 'Same family spy adventure, sequel is just as fun.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (142491, 142492, 9, 'Noam-Barkai', 'Same world, Del Toro''s creature design only gets more imaginative.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 30976, 8, 'Noam-Barkai', 'Both grounded Batman entries, both underseen highlights.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215876, 215880, 6, 'Noam-Barkai', 'Same franchise, MI3 returns to a strong villain story.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 304862, 9, 'Noam-Barkai', 'Both Burton plus Depp gothic fairy tales.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 70959, 9, 'Noam-Barkai', 'Both Burton at his gentle, dark fairy tale best.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (304862, 70959, 9, 'Noam-Barkai', 'Burton''s gothic mood translates well between live action and animation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (70959, 59578, 8, 'Noam-Barkai', 'Both Burton, both have a strong whimsical musical streak.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (59578, 97727, 9, 'Noam-Barkai', 'Burton plus Depp, both touched with a strange kind of tenderness.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (174953, 218219, 10, 'Noam-Barkai', 'Peak Miyazaki, both with strong environmental themes.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 271095, 8, 'Noam-Barkai', 'Peak Spielberg wonder era, both iconic for a reason.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 165961, 8, 'Noam-Barkai', 'Same Spielberg masterful tension, both built around restraint.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 149287, 8, 'Noam-Barkai', 'Both Spielberg-touched childhood wonder films that hit the same emotional notes.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (263360, 283410, 9, 'Noam-Barkai', 'Same leads, same director, same romantic chemistry.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 97727, 8, 'Noam-Barkai', 'Both Depp at his most committed to a character.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 304862, 8, 'Noam-Barkai', 'Both Depp adventure with a gothic edge.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 34104, 9, 'Noam-Barkai', 'Both Depp playing gentle outsiders in tender romances.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (113506, 97727, 8, 'Noam-Barkai', 'Both Depp at his most tender and understated.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (113506, 34104, 8, 'Noam-Barkai', 'Both Depp in quieter, more emotional roles.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 328272, 8, 'Noam-Barkai', 'Same Spielberg plus Hanks, both warm-hearted stories.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (263360, 151616, 9, 'Noam-Barkai', 'Both classic romcoms with strong leads and rewatch value.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (151616, 644, 9, 'Noam-Barkai', 'Both smart, funny early 2000s romcoms.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (644, 66194, 10, 'Noam-Barkai', 'Both smart teen comedies that hold up over time.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (1038, 66194, 9, 'Noam-Barkai', 'Both fun comedies anchored by a strong female lead.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (263360, 200864, 9, 'Noam-Barkai', 'Same Cinderella formula, both lovely.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (200864, 264157, 8, 'Noam-Barkai', 'Both modern fairy tale princess stories.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46878, 151616, 8, 'Noam-Barkai', 'Both messy female lead romcoms with real laughs.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46878, 1038, 8, 'Noam-Barkai', 'Both feel-good female-led comedies.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (264157, 263360, 8, 'Noam-Barkai', 'Same warm romance formula with a Cinderella-style lead and great chemistry.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (283410, 151616, 8, 'Noam-Barkai', 'Both light romcoms with great chemistry between the leads.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (283410, 200864, 8, 'Noam-Barkai', 'Both romantic comedies in the same warm Garry Marshall vein.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (1038, 644, 9, 'Noam-Barkai', 'Both fun 2000s comedies with great female leads.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (1038, 151616, 10, 'Noam-Barkai', 'Peak 2000s romcoms, both endlessly rewatchable.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 300229, 8, 'Noam-Barkai', 'Both animated family comedies that work on multiple levels.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 190869, 8, 'Noam-Barkai', 'Both animated family stories with heart.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (190869, 300229, 8, 'Noam-Barkai', 'Both animated comedies with surprising emotional depth under the jokes.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (32180, 97727, 8, 'Noam-Barkai', 'Both outsider romance retellings of fairy tales.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (32180, 70959, 8, 'Noam-Barkai', 'Both gothic romance retellings.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (32180, 304862, 6, 'Noam-Barkai', 'Both have a similar gothic atmospheric feel.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 271095, 9, 'Noam-Barkai', 'Both peak swashbuckling adventure.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 159172, 9, 'Noam-Barkai', 'Same swashbuckling energy, same charismatic lead.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 149287, 8, 'Noam-Barkai', 'Both fun, swashbuckling, slightly magical adventures.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (149287, 271095, 8, 'Noam-Barkai', 'Both adventure films with the same childlike sense of wonder.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 131885, 8, 'Noam-Barkai', 'Both have classic treasure hunt energy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 131885, 8, 'Noam-Barkai', 'Both adventure with strong kid appeal.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 149287, 8, 'Noam-Barkai', 'Both adventure with the same big-hearted sense of wonder.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (113506, 31715, 8, 'Noam-Barkai', 'Both earn their tears in honest, different ways.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (31715, 67395, 7, 'Noam-Barkai', 'Both deal with strong female bonds and the weight of long friendships.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (244421, 34104, 8, 'Noam-Barkai', 'Both about neurodivergent characters handled with real heart.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271344, 264157, 8, 'Noam-Barkai', 'Both have the same warm family Garry Marshall touch.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271344, 151616, 7, 'Noam-Barkai', 'Same Kate Hudson romantic energy and same kind of light, funny vibe.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (220276, 62460, 8, 'Noam-Barkai', 'Both rich and romantic, set in beautifully shot worlds.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (62460, 33492, 9, 'Noam-Barkai', 'Both quiet European films about food, love and grief.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (33492, 183370, 7, 'Noam-Barkai', 'Both small, quiet European dramas with strong leads.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (183370, 62460, 7, 'Noam-Barkai', 'Both quiet European dramas with warm performances.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 56871, 8, 'Noam-Barkai', 'Both stylish caper energy with charming leads.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (220805, 56871, 6, 'Noam-Barkai', 'Both lighthearted, stylish action-comedy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (220805, 238072, 6, 'Noam-Barkai', 'Both glossy, fun ensemble action films.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (220805, 215876, 6, 'Noam-Barkai', 'Both action-spy films with strong set pieces.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (220276, 220805, 6, 'Noam-Barkai', 'Both lean into a stylized, glossy energy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (304862, 120506, 6, 'Noam-Barkai', 'Both atmospheric Depp historical mysteries.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (149287, 131885, 8, 'Noam-Barkai', 'Both kid-led adventures with the same 80s warmth.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 131885, 8, 'Noam-Barkai', 'Both kid adventure classics with heart.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (174953, 70959, 6, 'Noam-Barkai', 'Both fantasy animation with strong tonal moods.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (218219, 304862, 7, 'Noam-Barkai', 'Both have darker fantasy atmospheres and that same haunting visual mood.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (218219, 70959, 6, 'Noam-Barkai', 'Both animated fantasy with the same darker pull.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (264157, 1038, 8, 'Noam-Barkai', 'Both fun female-led growing-up stories.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (257744, 62460, 7, 'Noam-Barkai', 'Multiple love stories handled with care, similar warmth.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271344, 200864, 8, 'Noam-Barkai', 'Both warm family-and-romance films with a Cinderella-style hopeful streak.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290070, 289109, 7, 'Noam-Barkai', 'Both Spielberg''s serious historical work, made in the same era and register.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (66194, 46878, 7, 'Noam-Barkai', 'Both about a messy female lead navigating life with humor.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139657, 194502, 4, 'Noam-Barkai', 'Though both are big fantasy series, LOTR''s pacing drags compared to HP''s brisker rhythm.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (300229, 300233, 3, 'Noam-Barkai', 'Though both are Shrek, 4-D is a theme park gimmick rather than a real film.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (300230, 300233, 3, 'Noam-Barkai', 'Though both are Shrek, 4-D is a major step down.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280305, 2, 'Noam-Barkai', 'Though both are Rocky, V is the clear franchise low.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280281, 280305, 2, 'Noam-Barkai', 'Same series but Rocky V kills the momentum entirely.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188507, 188511, 4, 'Noam-Barkai', 'Same series but LW4 feels tired by the end of the franchise.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188509, 188511, 4, 'Noam-Barkai', 'Same buddy cop pair but the spark is gone by the fourth film.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 159167, 3, 'Noam-Barkai', 'Though both are Indy, the fourth film is the clear franchise low.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 159167, 3, 'Noam-Barkai', 'Same series but Indy 4 strains belief in every scene.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 159175, 4, 'Noam-Barkai', 'Same series but Temple of Doom is tonally off from the rest.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311037, 311040, 4, 'Noam-Barkai', 'Same hero but Spider-Man 3 collapses under too many villains.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311038, 311040, 4, 'Noam-Barkai', 'Same series but the third entry is the clear weak link.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312151, 312152, 4, 'Noam-Barkai', 'Same family franchise but the 3D gimmick weighs it down.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313476, 3, 'Noam-Barkai', 'Same saga but Attack of the Clones has painful romance dialogue.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313479, 313474, 3, 'Noam-Barkai', 'Same saga but Phantom Menace is mostly a slog.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313477, 5, 'Noam-Barkai', 'Same saga but moving from original trilogy to prequels is a clear quality drop.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 354178, 3, 'Noam-Barkai', 'Same Bond series but View to a Kill is a real franchise low.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 218808, 3, 'Noam-Barkai', 'Same Bond but sending him to space is silly.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 86263, 3, 'Noam-Barkai', 'Same era Bond but Die Another Day is hard to take seriously.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 354178, 3, 'Noam-Barkai', 'Same series but View to a Kill is one of the weakest entries.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 218808, 3, 'Noam-Barkai', 'Same Bond but Moonraker is by far the silliest entry.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (240521, 354178, 3, 'Noam-Barkai', 'Same series but View to a Kill is a real low point.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 85871, 4, 'Noam-Barkai', 'Same era Bond but Diamonds is very dated even by 70s standards.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (92573, 218808, 3, 'Noam-Barkai', 'Same Bond but Moonraker is just too silly.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 192514, 4, 'Noam-Barkai', 'Same series but Live and Let Die is one of the weaker entries.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 276217, 5, 'Noam-Barkai', 'Both Tarantino crime films, but back to back is too much violence.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 176711, 4, 'Noam-Barkai', 'Both Tarantino but Kill Bill is much more relentlessly violent.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276217, 176711, 4, 'Noam-Barkai', 'Both Tarantino crime stories but Kill Bill takes the violence to a different level.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 176712, 5, 'Noam-Barkai', 'Same film really, splitting it into two felt pointless.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 164572, 5, 'Noam-Barkai', 'Same director but Jackie Brown''s pacing is much slower.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 56304, 4, 'Noam-Barkai', 'Both Scorsese mob films, watching them back to back is repetitive.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (270971, 131780, 4, 'Noam-Barkai', 'Both Scorsese and both very heavy on the violence I do not enjoy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (326155, 177369, 4, 'Noam-Barkai', 'Both Scorsese plus De Niro studies of obsession.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (54209, 326155, 3, 'Noam-Barkai', 'Both Scorsese plus De Niro intense, neither one I want to revisit.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (25192, 56304, 4, 'Noam-Barkai', 'Both long Scorsese dramas, watching both is exhausting.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (8183, 131780, 3, 'Noam-Barkai', 'Same director but the worlds and registers could not be more apart.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (25192, 270971, 4, 'Noam-Barkai', 'Both Scorsese biopic-style heavies, with the same long slow descent.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (7842, 56304, 3, 'Noam-Barkai', 'Same Scorsese but tonally a long way apart, dark comedy versus mob epic.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 291698, 4, 'Noam-Barkai', 'Both Fincher and both heavy bleak, watching them back to back is draining.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 210511, 5, 'Noam-Barkai', 'Both clever twist films, watching both at once is overload.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (247579, 291698, 4, 'Noam-Barkai', 'Same Fincher but Se7en is much darker and heavier.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (123435, 247579, 5, 'Noam-Barkai', 'Both Fincher thrillers, similar but not memorable as a pair.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 290070, 3, 'Noam-Barkai', 'Same director but completely opposite tones.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 21213, 4, 'Noam-Barkai', 'Both Spielberg sci-fi with a child but AI is much heavier.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 290070, 3, 'Noam-Barkai', 'Same director but very different in scale and weight.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (165961, 290070, 3, 'Noam-Barkai', 'Same Spielberg but the stories and stakes are nowhere near each other.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (149287, 289109, 2, 'Noam-Barkai', 'Same Spielberg but adventure for kids and a grim war film sit on opposite ends.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (21213, 359297, 4, 'Noam-Barkai', 'Both Spielberg sci-fi but both have endings that fall flat.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (21213, 65811, 4, 'Noam-Barkai', 'Both Spielberg sci-fi but both are very slowly paced.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 100130, 4, 'Noam-Barkai', 'Both Spielberg with a child lead but Empire is much heavier.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 97360, 4, 'Noam-Barkai', 'Same Burton plus Depp but Ed Wood is much slower and quieter.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (304862, 97360, 4, 'Noam-Barkai', 'Same Burton plus Depp but Ed Wood lands in a much sleepier register.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 97360, 4, 'Noam-Barkai', 'Both Depp but the energy could not be more different.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (70959, 97360, 4, 'Noam-Barkai', 'Both Burton but Ed Wood is the slowest of his work.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (113506, 97360, 4, 'Noam-Barkai', 'Same Depp era but the two films have very different rhythms.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39551, 10830, 4, 'Noam-Barkai', 'Same director but war film versus sci-fi horror is too jarring.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39551, 39829, 4, 'Noam-Barkai', 'Same director but neither film is one I rewatch.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39829, 10830, 4, 'Noam-Barkai', 'Same director but the two pull from very different genre playbooks.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39551, 129185, 5, 'Noam-Barkai', 'Both Ridley Scott action but very different scales.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (129185, 10830, 4, 'Noam-Barkai', 'Same director but very different genres and eras, epic versus claustrophobic horror.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 25192, 5, 'Noam-Barkai', 'Both DiCaprio biopic-ish stories but Aviator is much heavier and longer.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 30686, 4, 'Noam-Barkai', 'Both DiCaprio but Basketball Diaries is a dark addiction story.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (25192, 336445, 3, 'Noam-Barkai', 'Both DiCaprio dramas but Total Eclipse is much bleaker.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30686, 336445, 4, 'Noam-Barkai', 'Both DiCaprio dark dramas about ruin.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (330670, 336445, 4, 'Noam-Barkai', 'Both DiCaprio in difficult, dark roles.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (25192, 123849, 4, 'Noam-Barkai', 'Both Scorsese plus DiCaprio but very different periods and tones.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30686, 25192, 4, 'Noam-Barkai', 'Both DiCaprio darker dramas, neither is easy to sit through.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335835, 215876, 5, 'Noam-Barkai', 'Both Cruise action but very different styles, one is fighter pilots and one is spies.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335835, 350424, 4, 'Noam-Barkai', 'Same actor but Vanilla Sky is a divisive mind-bender.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335835, 359297, 5, 'Noam-Barkai', 'Both Cruise but the tones pull in different directions.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335835, 214755, 5, 'Noam-Barkai', 'Both Cruise but one is action fun and the other is sci-fi mystery.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (350424, 214755, 4, 'Noam-Barkai', 'Both Cruise sci-fi but very different tones, dream-logic versus precrime procedural.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (263360, 336445, 2, 'Noam-Barkai', 'Though both have romantic elements, Total Eclipse is bleak and depressing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (66194, 200521, 2, 'Noam-Barkai', 'Light teen comedy followed by a sprawling three-hour ensemble drama is a strange jump.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (1038, 200521, 2, 'Noam-Barkai', 'Fun comedy followed by a heavy ensemble drama is a strange transition for one night.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (263360, 267038, 2, 'Noam-Barkai', 'Romcom and violent crime are far enough apart that I would not pair them.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (109421, 1038, 2, 'Noam-Barkai', 'Loud action versus light romcom, very different audiences.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40199, 66194, 2, 'Noam-Barkai', 'Slow heavy sci-fi and a light teen comedy aim at different audiences.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10830, 190869, 2, 'Noam-Barkai', 'Horror sci-fi and family animation aim at very different audiences.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10920, 66194, 2, 'Noam-Barkai', 'Tense action sci-fi and teen comedy are pulling in opposite directions.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (200521, 200864, 2, 'Noam-Barkai', 'Sprawling weird drama followed by a light romance feels off.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (160524, 264157, 2, 'Noam-Barkai', 'Atmospheric thriller and family romance are a hard sell together.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120506, 200864, 2, 'Noam-Barkai', 'Victorian murder mystery does not lead naturally to a modern romance.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (233058, 59578, 4, 'Noam-Barkai', 'Both Depp, but dark occult mystery and a family musical are a strange jump.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (263360, 245699, 8, 'Noam-Barkai', 'Both feel-good romcoms with the same warm tone.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (263360, 311428, 8, 'Noam-Barkai', 'Both light, comforting romances easy to put on any night.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311428, 245699, 7, 'Noam-Barkai', 'Both mismatched-romance comedies of the 80s.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 311037, 8, 'Noam-Barkai', 'Both grounded superhero origin films, both played straight rather than campy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 311038, 8, 'Noam-Barkai', 'Both well-made, character-driven superhero films that earn their emotional beats.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 130945, 8, 'Noam-Barkai', 'Both Bond at his most iconic, decades apart but equally classic.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271344, 1038, 7, 'Noam-Barkai', 'Both warm, fun, female-led stories about figuring life out.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271344, 46878, 7, 'Noam-Barkai', 'Both messy, lovable female leads with real heart.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (244421, 113506, 7, 'Noam-Barkai', 'Both gentle dramas that carry quiet emotional weight without going melodramatic.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (244421, 31715, 7, 'Noam-Barkai', 'Both about deep emotional bonds and family connection.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (257744, 31715, 7, 'Noam-Barkai', 'Both about emotional connections that span lifetimes.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (379331, 372733, 8, 'Noam-Barkai', 'Both Sherlock takes that get the character right.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30962, 30961, 8, 'Noam-Barkai', 'Same animated continuity, both well done and worth seeing in sequence.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (381392, 30961, 8, 'Noam-Barkai', 'Same world, both worth watching for the future Gotham aesthetic.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256631, 271095, 7, 'Noam-Barkai', 'Both swashbuckling adventures with a charismatic lead.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 12744, 4, 'Noam-Barkai', 'Same Spielberg but Always is much quieter and far less memorable.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 12744, 4, 'Noam-Barkai', 'Spielberg again, but Always feels like a much lesser side project.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (328272, 289109, 4, 'Noam-Barkai', 'Same lead and same director, but the tonal jump between them is too sharp.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 70959, 4, 'Noam-Barkai', 'Animated both, but Pixar''s bright energy is a world from Burton''s gothic mood.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (190869, 70959, 4, 'Noam-Barkai', 'Family animation paired with a darker stop-motion piece, the moods clash.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 174953, 5, 'Noam-Barkai', 'Both animated but Pixar kids and Miyazaki epic are very different watches.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (190869, 218219, 5, 'Noam-Barkai', 'Family animation followed by a much heavier Miyazaki epic is an odd jump.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (151616, 220276, 5, 'Noam-Barkai', 'Both have romance but the registers are nowhere alike.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (66194, 220276, 5, 'Noam-Barkai', 'Both romance-adjacent, but Moulin Rouge is far more stylized and demanding.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188510, 188511, 4, 'Noam-Barkai', 'Same series, both feel like the franchise running on fumes.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280282, 280305, 3, 'Noam-Barkai', 'Same series, but Rocky V kills the momentum III had.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280284, 280305, 3, 'Noam-Barkai', 'After the silly fun of IV, Rocky V is a real drop.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188507, 188510, 5, 'Noam-Barkai', 'LW3 keeps the formula but loses the snap the first one had.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 233058, 5, 'Noam-Barkai', 'Both Depp but pirate adventure and dark occult mystery do not really fit.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (123435, 112290, 5, 'Noam-Barkai', 'Both Fincher mind-benders, watching them in a row is overkill.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39551, 335835, 4, 'Noam-Barkai', 'Same military setting but very different tones, one is grim and one is glossy fun.', null); + +INSERT IGNORE INTO movies_recommendations VALUES (139657, 139650, 10, 'Ronamit01', 'Same series, same cast, same magic. One flows directly into the other.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (139650, 139655, 10, 'Ronamit01', 'Prisoner of Azkaban is where the series gets darker and better. Natural next step.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (139655, 139652, 9, 'Ronamit01', 'Same world, same characters, the stakes keep getting higher each film.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (194497, 194502, 10, 'Ronamit01', 'Same epic journey, one picks up exactly where the other left off.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (194502, 194500, 10, 'Ronamit01', 'The Two Towers builds everything that Return of the King pays off. You need both.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (280270, 280281, 10, 'Ronamit01', 'Same underdog story, Rocky II feels like a direct continuation not just a sequel.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (280281, 280282, 9, 'Ronamit01', 'Rocky III shifts the tone but keeps the heart of the original formula.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (280282, 280284, 9, 'Ronamit01', 'Rocky IV takes it to a bigger political stage but the spirit is the same.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (311037, 311038, 10, 'Ronamit01', 'Spider-Man 2 is one of the rare sequels that actually beats the original. Same Tobey, better story.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (215876, 215879, 9, 'Ronamit01', 'Same spy, different director but same high-energy action formula.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (215879, 215880, 9, 'Ronamit01', 'MI3 is a step up from MI2, tighter and more grounded. Same Cruise energy.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (188507, 188509, 10, 'Ronamit01', 'Lethal Weapon 2 keeps the same chemistry and actually raises the stakes.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (188509, 188510, 9, 'Ronamit01', 'The third one is weaker but still worth it if you loved the duo.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313478, 313479, 10, 'Ronamit01', 'Empire is the best Star Wars and Return wraps up everything it sets up. Inseparable.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (176711, 176712, 9, 'Ronamit01', 'Kill Bill Vol 2 slows down and gets more personal. Together they make one complete film.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (300229, 300230, 9, 'Ronamit01', 'Shrek 2 somehow matches the original in humor and heart. Rare sequel that works.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (256632, 256631, 9, 'Ronamit01', 'Dead Man''s Chest keeps the same fun energy. Depp is at his best in both.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (319602, 319613, 9, 'Ronamit01', 'Superman II is one of the few sequels that matches the original. The Phantom Zone villains make it worth it.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159172, 159175, 9, 'Ronamit01', 'Temple of Doom and Last Crusade are both great Indiana Jones. Different tone, same adventure spirit.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159175, 271095, 10, 'Ronamit01', 'Raiders is the benchmark, Temple of Doom is a darker companion. Both peak Spielberg-Ford.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (267038, 164572, 9, 'Ronamit01', 'Jackie Brown is quieter than Pulp Fiction but same Tarantino sharpness with dialogue and character.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (276217, 164572, 8, 'Ronamit01', 'Both are early Tarantino, crime-focused, heavy on talk and tension before any action.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (267038, 176711, 9, 'Ronamit01', 'Kill Bill is Tarantino letting loose visually. If you love Pulp Fiction you''ll enjoy watching him evolve.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159665, 267038, 9, 'Ronamit01', 'Inglorious Basterds has the same slow-burn dialogue buildup that explodes like Pulp Fiction does.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (131780, 56304, 10, 'Ronamit01', 'Both are Scorsese crime epics with De Niro or Pesci, same world different angle.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (131780, 209158, 9, 'Ronamit01', 'Mean Streets is where Scorsese started building the world that Goodfellas perfected.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (326155, 270971, 9, 'Ronamit01', 'Taxi Driver and Raging Bull are both De Niro at his most intense, one mental one physical.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (54209, 131780, 8, 'Ronamit01', 'Cape Fear shows a different De Niro, terrifying instead of cool. Both are Scorsese at his best.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (123849, 131780, 8, 'Ronamit01', 'Gangs of New York is Scorsese going back to his roots. If you love Goodfellas this is a must.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (289109, 100130, 9, 'Ronamit01', 'Both are Spielberg war dramas with a young boy at the center, different wars same emotional weight.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (290070, 289109, 9, 'Ronamit01', 'Both are Spielberg at his most serious. One is about survival the other about saving others.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56871, 214755, 8, 'Ronamit01', 'Both are Spielberg thrillers with Tom Hanks or Cruise that keep you hooked from start to finish.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (96593, 149287, 8, 'Ronamit01', 'Both are Spielberg fantasy films with a big heart and a childlike wonder about them.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (94741, 214755, 8, 'Ronamit01', 'Duel and Minority Report are both about one man being hunted. Spielberg does this better than anyone.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (210511, 116556, 9, 'Ronamit01', 'Following is Nolan''s raw first film, Memento is where he perfected the non-linear style. Watch both back to back.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (210511, 160524, 9, 'Ronamit01', 'Memento and Insomnia are both about a man losing his grip on reality. Nolan at his most psychological.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30959, 210511, 8, 'Ronamit01', 'Batman Begins shows Nolan thinking about character before action, same DNA as Memento.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (120574, 130953, 10, 'Ronamit01', 'The two best early Connery Bonds. From Russia with Love and Goldfinger set the template for everything after.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (130953, 92573, 9, 'Ronamit01', 'Dr. No started it all, Goldfinger perfected it. Great double feature for classic Bond fans.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (130945, 368418, 8, 'Ronamit01', 'GoldenEye brought Bond back to relevance, World Is Not Enough kept the momentum. Both Brosnan at his best.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (240521, 120574, 8, 'Ronamit01', 'On Her Majesty''s Secret Service is underrated early Bond with a surprisingly emotional ending. Pairs well with From Russia.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (270971, 280270, 9, 'Ronamit01', 'Raging Bull and Rocky are both underdog boxing stories but one is pure grit and the other pure heart.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (177369, 326155, 8, 'Ronamit01', 'King of Comedy and Taxi Driver both follow a disturbed De Niro obsessing over fame and attention.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56304, 67388, 9, 'Ronamit01', 'Casino and Color of Money both dig into the glamour and rot of high-stakes gambling culture.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (39551, 340652, 8, 'Ronamit01', 'Both are big action war films with massive battle sequences, one modern one ancient.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (340652, 129185, 9, 'Ronamit01', 'Troy and Gladiator are the two best ancient epics of that era. Same scale, same brutality.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (289109, 39551, 8, 'Ronamit01', 'Saving Private Ryan is more dramatic, Black Hawk Down is pure chaos. Both are the best modern war films.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (40199, 61751, 9, 'Ronamit01', 'Blade Runner and Children of Men are both bleak futures told through one man trying to hold on to humanity.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (214755, 61751, 8, 'Ronamit01', 'Both are dark sci-fi films where society is crumbling and one person has to make a difference.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (40199, 21213, 8, 'Ronamit01', 'Blade Runner and A.I. are both Spielberg/Scott visions of what it means to be human in a machine world.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (10830, 10920, 9, 'Ronamit01', 'Alien is horror, Aliens is action. Two completely different films that are both masterclasses in their genre.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (256839, 10830, 8, 'Ronamit01', 'Pitch Black strips the alien horror down to basics, same claustrophobic dread as the original Alien.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (306032, 238072, 9, 'Ronamit01', 'Snatch and Ocean''s Eleven came out around the same time and both made fast-talking ensemble crime look effortlessly cool.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (306032, 267038, 8, 'Ronamit01', 'Snatch has the same non-linear storytelling energy as Pulp Fiction, just with a British accent.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (247579, 123435, 9, 'Ronamit01', 'Panic Room and The Game are both Fincher thrillers built entirely on tension and a twisting cat-and-mouse plot.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (291698, 123435, 9, 'Ronamit01', 'Se7en and The Game are both Fincher films where nothing is what it seems and the ending hits hard.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (291698, 112290, 10, 'Ronamit01', 'Se7en and Fight Club are the two peaks of Fincher and Pitt together. Completely different but equally brilliant.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (218219, 174953, 10, 'Ronamit01', 'Both are Miyazaki masterpieces. Nausicaa is where he built the foundation that Princess Mononoke perfected.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (337166, 300229, 9, 'Ronamit01', 'Toy Story and Shrek both proved that animated films can be smart, layered and just as good as any live action.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (70959, 97727, 8, 'Ronamit01', 'Corpse Bride and Edward Scissorhands are both Tim Burton at his most visually poetic and emotionally lonely.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30976, 30959, 8, 'Ronamit01', 'Batman Mask of the Phantasm captures the dark tone that Nolan later brought to Batman Begins. Surprising how close they feel.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (304862, 97727, 9, 'Ronamit01', 'Sleepy Hollow and Edward Scissorhands are Burton and Depp at their most gothic and stylized.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (304862, 70959, 8, 'Ronamit01', 'Sleepy Hollow and Corpse Bride share the same dark fairy tale atmosphere. Burton''s signature look.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (59578, 97727, 8, 'Ronamit01', 'Charlie and the Chocolate Factory and Edward Scissorhands are both Burton-Depp films about a strange outsider who doesn''t fit in.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (233058, 240327, 8, 'Ronamit01', 'The Ninth Gate and The Omen are both slow-burn occult thrillers that rely on atmosphere over jump scares.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (292671, 233058, 8, 'Ronamit01', 'Secret Window and The Ninth Gate are both about a man slowly losing his mind, told with quiet dread.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (112290, 123435, 8, 'Ronamit01', 'Fight Club and The Game both pull the rug from under you. Fincher loves messing with what''s real.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (297838, 290070, 9, 'Ronamit01', 'Shawshank and Schindler''s List are both about hope surviving in the most hopeless places. Two of the greatest ever made.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (200521, 267038, 8, 'Ronamit01', 'Magnolia and Pulp Fiction both tell multiple stories that weave together in unexpected ways.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (46169, 340652, 8, 'Ronamit01', 'Braveheart and Troy are both big historical epics driven by one man''s pride and love. Same emotional core.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (46169, 129185, 9, 'Ronamit01', 'Braveheart and Gladiator are practically companion films. Both are about a warrior seeking justice against an empire.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (333856, 290070, 8, 'Ronamit01', 'Titanic and Schindler''s List are both about survival against impossible odds. One is intimate, one is massive.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30686, 330670, 9, 'Ronamit01', 'Basketball Diaries and This Boy''s Life are both early DiCaprio films where he plays a troubled kid with real raw energy.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (25192, 56871, 8, 'Ronamit01', 'The Aviator and Catch Me If You Can are both DiCaprio playing real larger-than-life characters who lived on the edge.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (333856, 25192, 8, 'Ronamit01', 'Titanic and The Aviator are both DiCaprio carrying a massive epic on his shoulders. Different eras, same star power.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (271095, 159172, 10, 'Ronamit01', 'Raiders and Last Crusade are the best two Indiana Jones. Both have that perfect mix of humor and adventure.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (131885, 271095, 8, 'Ronamit01', 'The Goonies and Raiders of the Lost Ark are both built on that Spielberg treasure-hunt adventure feeling.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (335835, 215876, 8, 'Ronamit01', 'Top Gun and Mission Impossible are both Tom Cruise being impossibly cool in high-stakes action. Same energy.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (291495, 210739, 8, 'Ronamit01', 'Scrooged and Men in Black are both Bill Murray / Will Smith doing comedy with a supernatural twist. Fun and light.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (208245, 238072, 8, 'Ronamit01', 'Maverick and Ocean''s Eleven are both slick ensemble films where everyone is smarter than they look and the con is the fun.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56871, 328272, 9, 'Ronamit01', 'Catch Me If You Can and The Terminal are both Hanks-Spielberg collaborations about a man living outside the rules of society.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (328272, 100130, 8, 'Ronamit01', 'The Terminal and Empire of the Sun are both Spielberg films about being trapped and making the best of a terrible situation.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (41518, 30686, 9, 'Ronamit01', 'Blow and Basketball Diaries are both about real people destroyed by drugs. Different drugs, same downward spiral.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (372733, 131885, 8, 'Ronamit01', 'Young Sherlock Holmes and The Goonies are both 80s adventure films for kids that adults can fully enjoy.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (120506, 304862, 8, 'Ronamit01', 'From Hell and Sleepy Hollow are both gothic Victorian mysteries with a detective trying to stop a brutal killer.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (14477, 290070, 9, 'Ronamit01', 'Amistad and Schindler''s List are both Spielberg films about people fighting for basic human dignity. Heavy but important.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (185628, 340652, 8, 'Ronamit01', 'Last Samurai and Troy are both about a warrior from a dying world making one last stand. Beautiful and epic.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (185628, 46169, 8, 'Ronamit01', 'Last Samurai and Braveheart both put a lone warrior against an overwhelming empire. Emotional and visually stunning.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (160524, 247579, 8, 'Ronamit01', 'Insomnia and Panic Room are both tight single-location thrillers where the protagonist is slowly being cornered.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (178994, 306032, 8, 'Ronamit01', 'Knockaround Guys and Snatch are both films about young guys trying to prove themselves in the criminal world and getting in over their heads.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313478, 194497, 9, 'Ronamit01', 'Empire Strikes Back and LOTR Fellowship are both the best entries in their trilogies. Both end on a dark note that makes you desperate for the next one.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (256627, 247579, 8, 'Ronamit01', 'Pirates of Silicon Valley and Panic Room are both thrillers about smart people in rooms making high-stakes decisions.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (297838, 123435, 9, 'Ronamit01', 'Shawshank and The Game both keep you guessing until the very end and land an ending that feels earned.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (253010, 56871, 8, 'Ronamit01', 'A Perfect World and Catch Me If You Can are both about a man on the run who is more complex than the law thinks.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (67395, 290070, 8, 'Ronamit01', 'Color Purple and Schindler''s List are both Spielberg tackling real injustice with a heavy hand that somehow still feels restrained.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (311037, 142491, 6, 'Ronamit01', 'Spider-Man and Hellboy are both early 2000s superhero films that tried to take the genre seriously before it became a factory.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30955, 30959, 7, 'Ronamit01', 'The 1989 Batman and Batman Begins are worlds apart in tone but both got the character right for their era.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (319602, 30955, 7, 'Ronamit01', 'Superman and Batman 1989 are both the defining superhero films of their decade. Different heroes, same cultural impact.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (158999, 359297, 6, 'Ronamit01', 'Independence Day and War of the Worlds are both alien invasion films with Spielberg or Emmerich going big and loud.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (210739, 312150, 6, 'Ronamit01', 'Men in Black and Spy Kids are both family action comedies built on a secret world hidden from normal people.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (335835, 370017, 5, 'Ronamit01', 'Top Gun and XXX are both about a reckless hothead who is too good to follow the rules. One has jets, one has snowboards.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (109421, 370017, 6, 'Ronamit01', 'Fast and the Furious and XXX came out in the same era and both launched franchises built on cool stunts over logic.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (220805, 215876, 6, 'Ronamit01', 'Mr. and Mrs. Smith and Mission Impossible are both slick action films that are more about style than substance.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (69812, 247579, 6, 'Ronamit01', 'Conspiracy Theory and Panic Room are both about someone being hunted inside a world they can''t fully trust.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (350424, 210511, 7, 'Ronamit01', 'Vanilla Sky and Memento are both films where you''re not sure what''s real until the very end. Mind-benders that reward patience.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (292671, 350424, 6, 'Ronamit01', 'Secret Window and Vanilla Sky are both psychological thrillers where the main character can''t trust his own mind.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (342512, 259826, 7, 'Ronamit01', 'Twilight Zone: The Movie and Poltergeist are both early 80s Spielberg-era horror. Creepy in the same old-school way.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (240327, 259826, 7, 'Ronamit01', 'The Omen and Poltergeist are both classic supernatural horror films that scared a whole generation.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (44238, 240327, 5, 'Ronamit01', 'Bordello of Blood is silly horror while The Omen is serious, but both are built around evil taking a familiar human form.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (65811, 96593, 6, 'Ronamit01', 'Close Encounters and E.T. are both Spielberg alien films but one is about wonder from a distance and the other is personal.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (65811, 21213, 6, 'Ronamit01', 'Close Encounters and A.I. are both about humans making contact with something beyond their understanding.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (165961, 10830, 6, 'Ronamit01', 'Jaws and Alien are both about a small group being hunted by a creature they can''t fully see. Spielberg and Scott did the same trick differently.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (256839, 40199, 6, 'Ronamit01', 'Pitch Black and Blade Runner both drop you into a dark future and let you figure it out. Atmospheric sci-fi that trusts the viewer.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (32707, 330670, 6, 'Ronamit01', 'Before Night Falls and This Boy''s Life are both raw coming-of-age stories about escaping a life that was slowly killing you.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (8183, 200521, 6, 'Ronamit01', 'Age of Innocence and Magnolia are both about people trapped by social expectations who can''t say what they really feel.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (46167, 270628, 6, 'Ronamit01', 'The Brave and Radio Flyer are both quiet, painful films about a parent sacrificing everything for their child.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (113506, 46167, 6, 'Ronamit01', 'Finding Neverland and The Brave are both emotional films about grown men who never really left childhood behind.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (160375, 235615, 5, 'Ronamit01', 'Inside Moves and Nothing in Common are both quiet dramas about unexpected friendships between people who have nothing in common.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (7842, 47130, 7, 'Ronamit01', 'After Hours and Bringing Out the Dead are both Scorsese New York films about one very long, very bad night.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (10702, 67395, 6, 'Ronamit01', 'Alice Doesn''t Live Here Anymore and Color Purple are both Scorsese / Spielberg films about a woman finding strength on her own terms.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (114955, 235615, 5, 'Ronamit01', 'Flamingo Kid and Nothing in Common are both 80s coming-of-age dramas about a young guy learning what really matters from an older one.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (181766, 185704, 7, 'Ronamit01', 'Kundun and Last Temptation of Christ are both Scorsese spiritual films that take their subject seriously and move slowly and beautifully.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (336445, 30686, 6, 'Ronamit01', 'Total Eclipse and Basketball Diaries are both about self-destructive young artists burning too bright. DiCaprio owns both.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (263360, 283410, 6, 'Ronamit01', 'Pretty Woman and Runaway Bride are both Julia Roberts rom-coms. Different story, same charm.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (283410, 151616, 5, 'Ronamit01', 'Runaway Bride and How to Lose a Guy in 10 Days are both fluffy romantic comedies with a deliberate game at the center.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (151616, 200864, 5, 'Ronamit01', 'How to Lose a Guy and Maid in Manhattan are both early 2000s rom-coms. Light, forgettable, fun.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (311428, 263360, 6, 'Ronamit01', 'Splash and Pretty Woman are both 80s/90s fairy tale romances where a woman from another world falls for a regular guy.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (245699, 263360, 5, 'Ronamit01', 'Overboard and Pretty Woman are both romantic comedies built on a class gap and a woman being underestimated.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (34104, 97727, 6, 'Ronamit01', 'Benny and Joon and Edward Scissorhands are both about a gentle outsider who finds connection with someone who sees past his strangeness.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (62460, 34104, 5, 'Ronamit01', 'Chocolat and Benny and Joon are both quiet, sweet films about an unusual person changing a small world around them.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (46878, 66194, 5, 'Ronamit01', 'Bridget Jones and Clueless are both comedies about a woman who thinks she knows what she wants and is completely wrong.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (271344, 200864, 5, 'Ronamit01', 'Raising Helen and Maid in Manhattan are both mid-2000s feel-good films with a woman figuring out her life.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (257744, 263360, 6, 'Ronamit01', 'Playing by Heart and Pretty Woman are both ensemble romantic dramas about love being messier than expected.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (177369, 200521, 6, 'Ronamit01', 'King of Comedy and Magnolia are both about obsessive people who can''t separate their fantasy life from reality.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (230963, 8183, 6, 'Ronamit01', 'New York, New York and Age of Innocence are both about passion and ambition destroying something that could have been beautiful.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (230947, 123849, 6, 'Ronamit01', 'New York Stories and Gangs of New York both show Scorsese''s deep obsession with New York as a living, breathing character.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (118367, 267038, 6, 'Ronamit01', 'Four Rooms and Pulp Fiction are both anthology-style films playing with time and tone. Four Rooms is messier but shares the same spirit.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (118367, 342512, 6, 'Ronamit01', 'Four Rooms and Twilight Zone: The Movie are both anthology films where each segment has a completely different feel.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (203649, 192514, 6, 'Ronamit01', 'Man with the Golden Gun and Live and Let Die are both mid-70s Bonds. Forgettable individually but fun as a double feature.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (218808, 354178, 5, 'Ronamit01', 'Moonraker and A View to a Kill are both considered low points in the Bond series. Watch them together and laugh.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (335336, 86263, 5, 'Ronamit01', 'Tomorrow Never Dies and Die Another Day are both weaker Brosnan Bonds. Die Another Day especially went too far with the CGI.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (189403, 192702, 6, 'Ronamit01', 'Licence to Kill and Living Daylights are both Timothy Dalton Bonds trying to be darker and grittier than the Moore era.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (190869, 300229, 7, 'Ronamit01', 'Lilo and Stitch and Shrek are both animated films about an outsider who finds a family in the most unexpected place.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (337166, 190869, 6, 'Ronamit01', 'Toy Story and Lilo and Stitch are both about loyalty and friendship surviving chaos and loss.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30961, 30976, 7, 'Ronamit01', 'Batman Beyond and Mask of the Phantasm are both animated Batman films that take the character seriously. Better than most live-action versions.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313474, 313476, 6, 'Ronamit01', 'Phantom Menace and Attack of the Clones are both the weaker prequel trilogy. Watch them together to get the full (disappointing) picture.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313476, 313477, 7, 'Ronamit01', 'Attack of the Clones and Revenge of the Sith are both prequels but Revenge is where it finally gets interesting.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313477, 313478, 7, 'Ronamit01', 'Revenge of the Sith and Empire Strikes Back are both the darkest entries in their trilogy. One sets up the fall, the other shows the consequences.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (220276, 333856, 6, 'Ronamit01', 'Moulin Rouge and Titanic are both massive tragic love stories built for maximum emotional impact. One is musical, one is epic.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (258948, 292671, 6, 'Ronamit01', 'Poison Ivy and Secret Window are both slow-burn thrillers about someone invading a man''s private world and slowly taking it over.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (183873, 311428, 5, 'Ronamit01', 'Ladyhawke and Splash are both 80s fantasy romances with a magical twist keeping two people apart.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (208245, 253010, 6, 'Ronamit01', 'Maverick and A Perfect World are both films where a charming outlaw has a surprising amount of humanity under the surface.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (253010, 188507, 6, 'Ronamit01', 'A Perfect World and Lethal Weapon are both action films with a cop-criminal dynamic that becomes something more complicated.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (39829, 185628, 6, 'Ronamit01', 'Black Rain and Last Samurai are both American films about a westerner clashing with Japanese culture and slowly gaining respect for it.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (41518, 56304, 7, 'Ronamit01', 'Blow and Casino are both about guys who built empires on the wrong side of the law and couldn''t get out before it consumed them.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (178994, 41518, 6, 'Ronamit01', 'Knockaround Guys and Blow are both about young guys chasing the criminal dream and paying a price way bigger than they expected.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (256627, 56871, 6, 'Ronamit01', 'Pirates of Silicon Valley and Catch Me If You Can are both real stories about brilliant, charming frauds who got away with it for way too long.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (116556, 292671, 6, 'Ronamit01', 'Following and Secret Window are both low-budget psychological thrillers about a writer whose curiosity puts him in danger.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (200521, 47130, 6, 'Ronamit01', 'Magnolia and Bringing Out the Dead are both films about characters at their lowest point in a city that feels like it''s dying with them.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313160, 97360, 7, 'Ronamit01', 'The Kubrick documentary and Ed Wood are both portraits of filmmakers obsessed with their vision to the point of madness. One succeeded, one didn''t.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (368865, 280270, 6, 'Ronamit01', 'Wrestling with Shadows and Rocky are both about a fighter who refuses to let the system beat him. One is real, one is fiction, both hit hard.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (280305, 280284, 6, 'Ronamit01', 'Rocky V and Rocky IV are both weak entries in the series but if you love Rocky you''ll watch them anyway.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (20253, 34104, 6, 'Ronamit01', 'Arizona Dream and Benny and Joon are both quirky surreal films about dreamers who don''t fit into the normal world.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (20253, 97727, 6, 'Ronamit01', 'Arizona Dream and Edward Scissorhands are both about a gentle outsider who is too strange and too sensitive for the world around him.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (31715, 67395, 6, 'Ronamit01', 'Beaches and Color Purple are both emotional films about a woman''s life told across decades. Bring tissues for both.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (118980, 263360, 5, 'Ronamit01', 'Frankie and Johnny and Pretty Woman are both romantic films where two people from very different backgrounds find each other.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (53921, 98681, 5, 'Ronamit01', 'Cannes Man and El Mariachi are both cheap films made outside the studio system. One is a comedy about that, one is the real thing.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (74259, 14132, 5, 'Ronamit01', 'Cry-Baby and American Pie 2 are both silly comedies that don''t take themselves seriously. Watch when your brain needs a rest.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (372525, 14132, 5, 'Ronamit01', 'Young Doctors in Love and American Pie 2 are both dumb comedies that exist purely to make you laugh at stupid things.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (244421, 271344, 5, 'Ronamit01', 'Other Sister and Raising Helen are both feel-good films about unexpected family situations that end in a warm place.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (264157, 46878, 5, 'Ronamit01', 'Princess Diaries 2 and Bridget Jones 2 are both unnecessary sequels that are watchable if you loved the first one.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (1390, 359297, 5, 'Ronamit01', '1941 and War of the Worlds are both Spielberg films that didn''t quite work. One is a failed comedy, one is a failed blockbuster.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (372233, 332065, 6, 'Ronamit01', 'You Only Live Twice and Thunderball are both classic Connery Bonds with big villains and bigger sets. Old school fun.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (117314, 312170, 6, 'Ronamit01', 'For Your Eyes Only and The Spy Who Loved Me are both Roger Moore Bonds. Not great, not terrible. Good background noise.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159665, 176711, 7, 'Ronamit01', 'Inglorious Basterds and Kill Bill both show Tarantino going bigger and more theatrical. Both are about revenge, both are operatic.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30952, 311040, 5, 'Ronamit01', 'Batman and Robin and Spider-Man 3 are both examples of superhero films that collapsed under too many villains and studio interference.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30965, 30967, 6, 'Ronamit01', 'Batman Forever and Batman Returns are both pre-Nolan Batmans that have their moments even if they go too campy.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (332209, 181766, 5, 'Ronamit01', 'Therese and Kundun are both slow, meditative biographical films about spiritual figures. Not for everyone but deeply sincere.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (185704, 290070, 6, 'Ronamit01', 'Last Temptation of Christ and Schindler''s List are both films about an extraordinary burden placed on an ordinary man by history.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (160524, 116556, 6, 'Ronamit01', 'Insomnia and Following are both about a man whose guilt slowly eats him alive. Nolan''s two most psychological films.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (233058, 120506, 7, 'Ronamit01', 'Ninth Gate and From Hell are both atmospheric period thrillers about obsessive men hunting down a dark secret.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159167, 159172, 6, 'Ronamit01', 'Indiana Jones 4 is a disappointment but if you love Last Crusade you''ll watch it anyway just to spend more time with Ford in that hat.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (188511, 215879, 5, 'Ronamit01', 'Lethal Weapon 4 and Mission Impossible 2 are both franchise entries that felt tired but had just enough to keep fans satisfied.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (311040, 30965, 5, 'Ronamit01', 'Spider-Man 3 and Batman Forever are both third-ish entries that tried to cram in too much and ended up pleasing nobody.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (276217, 306032, 8, 'Ronamit01', 'Reservoir Dogs and Snatch are both about a heist going completely wrong with a very specific dark humor about it.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (291698, 247579, 8, 'Ronamit01', 'Se7en and Panic Room are both Fincher films where the tension never lets up and the villain is always one step ahead.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (14477, 67395, 8, 'Ronamit01', 'Amistad and Color Purple are both Spielberg films about people who were stripped of everything and fought back with dignity.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (372733, 159172, 8, 'Ronamit01', 'Young Sherlock Holmes and Indiana Jones Last Crusade are both adventure films about a mentor-student duo chasing history. Spielberg produced both.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (220805, 238072, 6, 'Ronamit01', 'Mr. and Mrs. Smith and Ocean''s Eleven are both slick, fun ensemble films where cool people do dangerous things and look great doing it.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (69812, 215876, 5, 'Ronamit01', 'Conspiracy Theory and Mission Impossible are both about a guy who knows too much being hunted by people with more resources.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (1390, 94741, 5, 'Ronamit01', '1941 and Duel are both early Spielberg, completely different in quality, but interesting to compare how far he came between them.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (39829, 130945, 6, 'Ronamit01', 'Black Rain and GoldenEye are both 90s action films about a western agent working in a foreign culture where he doesn''t fully understand the rules.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (183873, 46169, 5, 'Ronamit01', 'Ladyhawke and Braveheart are both medieval action films with a love story at the heart. One is fantasy, one is brutal history.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (258948, 69812, 5, 'Ronamit01', 'Poison Ivy and Conspiracy Theory both start as thrillers about paranoia and end up somewhere darker than expected.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (47130, 326155, 6, 'Ronamit01', 'Bringing Out the Dead and Taxi Driver are both about a man driving through a New York at night that feels like it''s swallowing him whole.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (25192, 123849, 6, 'Ronamit01', 'The Aviator and Gangs of New York are both DiCaprio and Scorsese building epic portraits of obsessive men who shaped their era.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (113506, 96593, 6, 'Ronamit01', 'Finding Neverland and E.T. are both about a magical friendship between a grown-up and a child that the adult world tries to shut down.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30967, 30955, 8, 'Ronamit01', 'Batman Returns and the original Batman are both Burton films. Returns is darker and weirder, which for some people makes it better.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (350424, 116556, 6, 'Ronamit01', 'Vanilla Sky and Following are both low-budget films about a man who loses control of his own story. One is polished, one is raw.', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (337166, 96593, 6, 'Ronamit01', 'Toy Story and E.T. are both films where a special bond forms between a human and something from outside their world. Both make grown adults cry.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194497, 194502, 10, 'Tomer-Spector', 'Fellowship and Two Towers are literally one continuous story. The Helm''s Deep payoff in Two Towers only hits if you sat through the Fellowship build. Essential pairing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194502, 194500, 10, 'Tomer-Spector', 'Two Towers builds every thread that Return of the King resolves. Watching Towers without following with King is unfinished business.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194500, 194497, 10, 'Tomer-Spector', 'After Return of the King wraps the saga, rewatching Fellowship is a completely different experience. You see every seed it plants.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313479, 10, 'Tomer-Spector', 'Empire ends on a cliffhanger designed to be resolved by Jedi. The throne room payoff only lands if you sat through the Hoth-Dagobah-Bespin setup.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313477, 313478, 8, 'Tomer-Spector', 'Revenge of the Sith makes the Vader reveal in Empire dramatically richer. Knowing the fall makes the mask mean more.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313476, 313477, 7, 'Tomer-Spector', 'Attack of the Clones and Revenge of the Sith are the prequel pair that actually connect. Clones sets up the Republic''s decay, Sith delivers it.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 160524, 9, 'Tomer-Spector', 'Memento and Insomnia are Nolan''s two most contained psychological films. Both are about a compromised mind under pressure and both reward a second viewing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (160524, 30959, 8, 'Tomer-Spector', 'Insomnia and Batman Begins are Nolan''s back-to-back films before he went big. Both are about guilt driving a man past the edge of what is justified.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 210511, 9, 'Tomer-Spector', 'Batman Begins and Memento both reward attention to structure. One dismantles a franchise, the other dismantles narrative itself.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 276217, 10, 'Tomer-Spector', 'Pulp Fiction and Reservoir Dogs define Tarantino. Same dialogue confidence, same genre bending, same pleasure of watching criminals talk themselves into trouble.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 176712, 10, 'Tomer-Spector', 'Kill Bill Vol 1 and Vol 2 are one film split in half on purpose. Vol 1 earns the violence, Vol 2 earns the emotion. Both are required.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 164572, 8, 'Tomer-Spector', 'Pulp Fiction and Jackie Brown are both Tarantino crime films but opposite in energy. Fiction is maximalist, Brown is patient. Brown rewards you if you trust Tarantino enough to slow down.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276217, 164572, 8, 'Tomer-Spector', 'Reservoir Dogs and Jackie Brown both work through tension in small rooms with people who cannot trust each other. Same DNA, very different registers.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 326155, 10, 'Tomer-Spector', 'Goodfellas and Taxi Driver are both Scorsese films about men who thrive inside a world that is eating them alive. Essential double bill.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (326155, 177369, 9, 'Tomer-Spector', 'Taxi Driver and King of Comedy are Scorsese and De Niro''s two studies of delusional loners in New York. Travis Bickle and Rupert Pupkin are practically the same man at different stages.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (270971, 326155, 9, 'Tomer-Spector', 'Raging Bull and Taxi Driver are both Scorsese-De Niro portraits of self-destructive men. Different arenas, same compulsive damage.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 123849, 7, 'Tomer-Spector', 'Goodfellas and Gangs of New York are both Scorsese epic crime films with real period texture. Goodfellas is tighter but Gangs has Day-Lewis and that levels the playing field.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (47130, 326155, 8, 'Tomer-Spector', 'Bringing Out the Dead and Taxi Driver are both Scorsese night-city films about a man losing himself in service to a city that cannot be saved. Same blood, different decade.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 291698, 10, 'Tomer-Spector', 'Fight Club and Se7en are Fincher''s two films where the twist is an indictment. Both gut-punch endings that make the whole film mean something different on a rewatch.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 123435, 9, 'Tomer-Spector', 'Se7en and The Game are both Fincher films where paranoia is the engine. Se7en is darker, The Game is slicker. Together they show the range of his early control.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (123435, 247579, 7, 'Tomer-Spector', 'The Game and Panic Room are both Fincher films about confinement and control. Game operates on psychological space, Panic Room on physical. Both use architecture to generate dread.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (34077, 291698, 7, 'Tomer-Spector', 'Benjamin Button and Se7en are both Fincher films about time and inevitability. Completely different genres, same fatalist undertow.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290070, 289109, 10, 'Tomer-Spector', 'Schindler''s List and Saving Private Ryan are both Spielberg WWII films built around the question of what one person''s survival is worth. The ethical weight is comparable.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (165961, 271095, 9, 'Tomer-Spector', 'Jaws and Raiders are peak Spielberg. Both run on a barely-seen threat, both have ensemble chemistry that could carry the film even without the spectacle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 65811, 8, 'Tomer-Spector', 'E.T. and Close Encounters are Spielberg''s two first-contact films where the aliens are not enemies. Both are ultimately about longing for something beyond the ordinary.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 238072, 8, 'Tomer-Spector', 'Catch Me If You Can and Ocean''s Eleven were released within a month of each other and both are about the pleasure of watching smart operators run a con. One is earnest, one is cool.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (94741, 165961, 9, 'Tomer-Spector', 'Duel is the proof of concept for Jaws. Both build sustained dread from a single unstoppable antagonist that barely shows itself. Duel is the earlier sketch, Jaws is the painting.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (359297, 61751, 8, 'Tomer-Spector', 'War of the Worlds and Children of Men are the two best grounded alien-invasion films of the 2000s. Both treat catastrophe as a thing you survive rather than a thing you fight.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 159172, 10, 'Tomer-Spector', 'Raiders and Last Crusade are the two films that justify the franchise. The Connery addition in Crusade gives the character dimensions Raiders couldn''t have alone.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159175, 271095, 8, 'Tomer-Spector', 'Temple of Doom and Raiders are the two darker Indy films. Doom is rougher but the mine cart chase and the rope bridge are practical stunt work that has aged better than most of its era.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 120574, 10, 'Tomer-Spector', 'Goldfinger and From Russia with Love are the two best Connery Bonds. Goldfinger defined the formula, From Russia is the one that plays it straight. Both are peak franchise.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 192702, 9, 'Tomer-Spector', 'GoldenEye and The Living Daylights both reset Bond after a creative slump. Different actors, same instinct to take the character seriously instead of coasting on formula.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (240521, 192702, 8, 'Tomer-Spector', 'On Her Majesty''s Secret Service and Living Daylights are the two most grounded pre-Craig Bonds. Both cast actors who brought vulnerability the franchise was scared of.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 130945, 8, 'Tomer-Spector', 'Goldfinger and GoldenEye are each the best Bond film of their actor''s run. Both deliver the villain-hero dynamic the franchise always aspires to and rarely achieves.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312170, 130953, 8, 'Tomer-Spector', 'The Spy Who Loved Me and Goldfinger are the two most iconic Bond films outside the Connery opener set. Submarine car and laser table are the franchise at its most confidently absurd.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30955, 30959, 9, 'Tomer-Spector', 'Batman 1989 and Batman Begins are the two live-action Batman films that understood Gotham needs to feel like a place, not a set. Both take the source material seriously.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30976, 30959, 8, 'Tomer-Spector', 'Mask of the Phantasm and Batman Begins are the best origin stories Batman has received. One animated, one live-action, both explore the psychological weight of the choice to become Batman.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30970, 30976, 7, 'Tomer-Spector', 'The Batman/Superman Movie and Mask of the Phantasm are the best Batman animated films on record. Both work because the DCAU writers understood these characters.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139655, 139652, 9, 'Tomer-Spector', 'Prisoner of Azkaban and Goblet of Fire are the two films where the series proved it could be cinema. Cuaron''s and Newell''s direction transformed what Columbus built.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139652, 139654, 8, 'Tomer-Spector', 'Goblet of Fire and Order of the Phoenix are the franchise''s darkest consecutive pair. Graveyard scene into Umbridge''s reign is the stretch where Potter became genuinely dangerous.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139657, 139650, 7, 'Tomer-Spector', 'Sorcerer''s Stone and Chamber of Secrets are Columbus''s two entries. If you loved the first''s faithful wonder, the second continues in exactly the same register before the series reinvents itself.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139653, 139654, 8, 'Tomer-Spector', 'Half-Blood Prince and Order of the Phoenix are the two films building directly toward the finale. Both are about loss and the cave/Ministry sequences are the series at peak stakes.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10830, 10920, 10, 'Tomer-Spector', 'Alien and Aliens are the perfect genre pair. Scott made a horror film in space, Cameron made a war film in space. Both are genre masterpieces and watching them back to back shows how the same monster can anchor completely different films.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10920, 289109, 8, 'Tomer-Spector', 'Aliens and Saving Private Ryan are the two best ensemble war films I have seen, one set in space and one in Normandy. The marine squad in Aliens and the Ranger unit in Ryan both work because the deaths feel earned.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (319602, 319613, 8, 'Tomer-Spector', 'Superman 1978 and Superman II share the same creative team and form a two-part story. The Zod setup in the first film pays off fully in the second.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311037, 311038, 9, 'Tomer-Spector', 'Raimi''s Spider-Man and Spider-Man 2 are the definitive superhero film pair of the 2000s. The first introduces, the second delivers. Doc Ock''s train fight is the best action sequence in either film.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 238073, 7, 'Tomer-Spector', 'Ocean''s Eleven and Ocean''s Twelve are worth pairing just to watch the same cast riff. Twelve is messier but the Julia Roberts gag alone earns the ticket price if you loved the first.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215876, 215880, 8, 'Tomer-Spector', 'Mission Impossible 1996 and M:I-III are the two best films in the franchise. Both take the spy paranoia seriously instead of treating it as a set-piece delivery mechanism.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188507, 188509, 8, 'Tomer-Spector', 'Lethal Weapon 1 and 2 are the best buddy cop pair in the genre. Adding Pesci in the second was the right chaos injection without breaking the formula.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 129185, 9, 'Tomer-Spector', 'Rocky and Gladiator are both underdog arena films built around a man fighting for dignity. Rocky is boxing, Gladiator is the Colosseum. Both earn the final moment completely.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280281, 7, 'Tomer-Spector', 'Rocky and Rocky II are essentially one two-part story. The first earns the relationship, the second delivers the rematch that the first film always had to end with.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (218219, 174953, 10, 'Tomer-Spector', 'Mononoke and Nausicaa are Miyazaki''s two films about civilizations destroying nature and the young women caught between them. Together they form his clearest moral statement.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (142491, 142492, 9, 'Tomer-Spector', 'Hellboy and Hellboy 2 are the best del Toro superhero pair. The sequel is visually richer but both work because Perlman never treats the character as a joke.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (306032, 238072, 9, 'Tomer-Spector', 'Snatch and Ocean''s Eleven were released within months of each other and both are about the pleasure of watching a multi-threaded heist unfold among charismatic criminals. Same energy, different continents.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 304862, 8, 'Tomer-Spector', 'Edward Scissorhands and Sleepy Hollow are Burton and Depp at their best. Both center on a strange outsider who cannot belong in the world they are dropped into.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97360, 97727, 8, 'Tomer-Spector', 'Ed Wood and Edward Scissorhands are both Burton-Depp films about a man who creates without apology and pays a social price for it. One is a comedy, one is a fairy tale.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (304862, 97360, 7, 'Tomer-Spector', 'Sleepy Hollow and Ed Wood both show Burton and Depp finding roles that fit Depp''s specific eccentricity perfectly. Both are underappreciated in their respective catalogs.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40199, 61751, 9, 'Tomer-Spector', 'Blade Runner and Children of Men are the two most visually influential dystopian sci-fi films of their respective eras. Both build worlds you believe in completely and both end in a kind of exhausted hope.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (214755, 210511, 8, 'Tomer-Spector', 'Minority Report and Memento are both intelligent films about a protagonist who cannot trust his own version of events. One is a blockbuster, one is a puzzle box.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256839, 10830, 8, 'Tomer-Spector', 'Pitch Black and Alien are both survival horror in space where the creature is secondary to the character dynamics. Pitch Black is clearly influenced by Alien and earns the comparison in its first act.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 290070, 9, 'Tomer-Spector', 'Shawshank Redemption and Schindler''s List are the two films most people point to when asked what cinema can do at its best. Both are about survival through impossible conditions. Both are essential.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 267038, 9, 'Tomer-Spector', 'Fight Club and Pulp Fiction are the two films that defined what edgy 1990s cinema meant. Both are about the seduction of transgression and both punish the audience for buying in.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 41518, 7, 'Tomer-Spector', 'Goodfellas and Blow are both rise-and-fall crime biographies about men who got too deep too fast. Blow is smaller scale but Depp''s performance carries it further than the script deserves.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39551, 289109, 9, 'Tomer-Spector', 'Black Hawk Down and Saving Private Ryan are the two best immersive combat films of their era. Both treat battle as chaos rather than choreography and both force you to feel the cost.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (185628, 289109, 7, 'Tomer-Spector', 'The Last Samurai and Saving Private Ryan are both about soldiers who find meaning in fighting for something they did not start out believing in. Different wars, same emotional architecture.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312150, 312151, 3, 'Tomer-Spector', 'Though both are Spy Kids films by Rodriguez, the first has genuine inventive energy and the second piles on imagination without anchoring it to a story. Rodriguez''s creature design is still present but the film loses the focus that made the original work.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (330670, 54209, 8, 'Tomer-Spector', 'This Boy''s Life and Cape Fear pair De Niro as an authority figure who is also a threat. Stepfather and stalker but the psychological mechanism of control is the same in both performances.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (270971, 177369, 8, 'Tomer-Spector', 'Raging Bull and King of Comedy are Scorsese and De Niro studying obsession. LaMotta obsesses over the ring, Rupert over celebrity. Both are more uncomfortable than their genres suggest.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131885, 271095, 8, 'Tomer-Spector', 'The Goonies and Raiders are both 1980s treasure-hunt adventure films with ensemble casts held together by chemistry. Goonies is Raiders aimed at kids and it earns the comparison.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (149287, 131885, 7, 'Tomer-Spector', 'Hook and The Goonies are both Spielberg-adjacent adventure films about childhood imagination refusing to die. Both work because the ensemble earns its emotional moment.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (372733, 131885, 7, 'Tomer-Spector', 'Young Sherlock Holmes and The Goonies are the two best adventure films aimed at kids from the Amblin 1985 era. Both have set pieces that aged better than most of their contemporaries.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (340652, 129185, 7, 'Tomer-Spector', 'Troy and Gladiator are both ancient-world epic action films with ensemble casts. Gladiator is the better film but Bana as Hector in Troy is worth the ticket alone.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210739, 256632, 8, 'Tomer-Spector', 'Men in Black and Pirates of the Caribbean are both films where a charismatic lead reinvented a formula. Smith''s MIB and Depp''s Sparrow both came out of nowhere and became defining characters.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256627, 40199, 7, 'Tomer-Spector', 'Pirates of Silicon Valley and Blade Runner are both films about men who built something extraordinary and lost their humanity doing it. Jobs and Wozniak''s dynamic maps surprisingly well onto Blade Runner''s corporate dread.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (183873, 97727, 7, 'Tomer-Spector', 'Ladyhawke and Edward Scissorhands are both fantasy films about a separation curse that prevents two people from being together. Different eras and aesthetics, same emotional core.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (644, 66194, 8, 'Tomer-Spector', '10 Things I Hate About You and Clueless are both 1990s teen films built on classic literature that are smarter than they advertise. Both have sharper writing than the genre required.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (220276, 333856, 7, 'Tomer-Spector', 'Moulin Rouge and Titanic are both big-budget tragic romances from the same era where the spectacle is designed to make you cry. Both earn it by committing completely to the emotional register.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39829, 40199, 7, 'Tomer-Spector', 'Black Rain and Blade Runner are both Ridley Scott films that use neon-soaked Asian cityscapes to tell stories about outsiders in an unfamiliar world. The visual DNA is unmistakable.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (113459, 238072, 7, 'Tomer-Spector', 'Find Me Guilty and Ocean''s Eleven are both ensemble films where the pleasure comes from watching a charismatic group work a room. Diesel''s courtroom performance is the closest he ever came to a fully realized dramatic role.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 218808, 2, 'Tomer-Spector', 'Though both are Connery-era Bond, Moonraker''s space-laser plot and Jaws-as-romantic-comedy are a complete betrayal of what made Goldfinger work. Sharing a franchise is not a reason to recommend.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 86263, 2, 'Tomer-Spector', 'Though both are Brosnan-era Bond, Die Another Day''s invisible car and CGI surfing are the opposite of what made GoldenEye a franchise revival. Same actor, completely different creative ambition.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (240521, 218808, 2, 'Tomer-Spector', 'Though both are Bond films that cast against type, Moonraker does the opposite of what OHMSS achieved. OHMSS is grounded and emotionally real; Moonraker put Bond in space for a punchline.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (192702, 85871, 3, 'Tomer-Spector', 'Though both are Bond films where the actor brought something different, Diamonds are Forever shows Connery sleepwalking through a paycheck. Living Daylights treated the character seriously; Diamonds abandoned that.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312170, 218808, 2, 'Tomer-Spector', 'Though both are Roger Moore Bond films, Spy Who Loved Me is the peak of his run and Moonraker is what happens when that formula collapses under its own absurdity. They share an actor but not a standard.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 85871, 3, 'Tomer-Spector', 'Though both are Connery Bond films, Goldfinger is the franchise at its best and Diamonds are Forever is Connery coasting. The gap in quality is the gap between a landmark film and a sequel that barely existed.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 335336, 3, 'Tomer-Spector', 'Though both are Brosnan Bond films, GoldenEye had real stakes and Tomorrow Never Dies ran out of ideas. The media-mogul villain was ahead of its time but the film did nothing interesting with it.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 372233, 3, 'Tomer-Spector', 'Though both are 1960s Bond films, You Only Live Twice is Goldfinger''s formula stretched thin. The volcano lair is iconic but the story around it is paper.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120574, 332065, 3, 'Tomer-Spector', 'Though both are early Connery Bonds, Thunderball is From Russia With Love without the discipline. Underwater action that aged badly and a pacing problem the franchise never had before.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (192702, 203649, 3, 'Tomer-Spector', 'Though both are Moore/Dalton-era Bond films, Man With the Golden Gun wastes Christopher Lee in a generic villain role while Living Daylights actually did something with its lead. Same franchise, different ambition.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 368418, 3, 'Tomer-Spector', 'Though both are Brosnan Bond films, The World Is Not Enough had Marceau as an interesting villain and then cast Richards as a nuclear physicist. GoldenEye had no such casting disaster.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312170, 354178, 3, 'Tomer-Spector', 'Though both are Roger Moore Bond films, Spy Who Loved Me is Moore at his peak and View to a Kill is Moore two films too late. He acknowledged he was too old and the film agrees.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30955, 30967, 3, 'Tomer-Spector', 'Though both are Tim Burton Batman films, Batman Returns goes so far into Burton''s personal aesthetic that it forgets to be a Batman film. Batman 1989 was strange but disciplined; Returns is self-indulgent.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 30965, 2, 'Tomer-Spector', 'Though both are live-action Batman films, Batman Begins is a serious reimagining and Batman Forever is a cartoon. Recommending them together because they share a character is misleading.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30976, 30952, 2, 'Tomer-Spector', 'Though both are Batman films, Mask of the Phantasm understands the character deeply and Batman and Robin contains the bat-credit card. They cannot be recommended together in good conscience.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30955, 30952, 2, 'Tomer-Spector', 'Though both are live-action Batman films, Batman 1989 took the franchise seriously and Batman and Robin ended it with ice puns. They share a character name and almost nothing else.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 30952, 2, 'Tomer-Spector', 'Though both are live-action Batman films, Batman Begins reinvented the franchise and Batman and Robin is the creative collapse that made that reinvention necessary. Opposite ends of the spectrum.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30976, 30951, 3, 'Tomer-Spector', 'Though both are Batman animated films, Mask of the Phantasm is an actual theatrical film with thematic weight and Batman and Mr. Freeze SubZero is a direct-to-video product. Same animation style, different ambition.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30955, 30965, 3, 'Tomer-Spector', 'Though both are Burton/Schumacher-era Batman films, Batman 1989 established Gotham as a real dark city and Batman Forever replaced all that with neon and competing villain performances.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280305, 2, 'Tomer-Spector', 'Though both are Rocky films, the original is a genuine underdog classic and Rocky V is the entry Stallone himself disowned. The franchise DNA is there but the quality is not.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280284, 3, 'Tomer-Spector', 'Though both are Rocky films, the original earns its emotion through character and Rocky IV replaces character with a training montage and a Russian villain drawn as a cartoon. Same franchise, different planets.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280281, 280305, 3, 'Tomer-Spector', 'Though both are Rocky sequels, Rocky II still had some of the original''s heart and Rocky V abandoned even that. Watching them as a pair just shows the franchise declining.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280306, 2, 'Tomer-Spector', 'Though both are labeled Rocky films in the database, Rocky VI is a mislabeled entry that likely does not exist as its own film. Recommending the original alongside a database anomaly makes no sense.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10830, 10945, 3, 'Tomer-Spector', 'Though both are Alien franchise films, Alien 3 is the entry Fincher disowned and for good reason. It undoes the emotional investment of both prior films in its opening minutes. Same world, very different craft.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10920, 10945, 3, 'Tomer-Spector', 'Though both are Alien franchise films, Aliens earned every character it introduced and Alien 3 killed most of them offscreen before the credits finished. They share a franchise but not a standard of care for the audience.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 159167, 2, 'Tomer-Spector', 'Though both are Indiana Jones films, Raiders is the film that defined the franchise and Kingdom of the Crystal Skull crossed the line with its fridge scene. Same character, completely different creative respect for the audience.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188507, 188511, 2, 'Tomer-Spector', 'Though both are Lethal Weapon films, the original has Gibson at his most charismatic and the fourth has Jet Li wasted as a silent villain while the leads have run out of road. Same franchise, dead on arrival.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188509, 188511, 3, 'Tomer-Spector', 'Though both are Lethal Weapon sequels, the second added Pesci and felt like an expansion, the fourth added Jet Li and felt like a conclusion nobody asked for. The Riggs-Murtaugh chemistry barely survives.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312150, 312152, 2, 'Tomer-Spector', 'Though both are Spy Kids films, the original was imaginative and the third is a tech demo for bad 3D with a Stallone cameo that cannot save it. Recommending both together is doing the viewer a disservice.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312151, 312152, 3, 'Tomer-Spector', 'Though both are Spy Kids sequels, the second still had Rodriguez''s creature design working and the third replaced it entirely with a virtual reality premise that does not hold up. Same franchise DNA, diminishing returns.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313474, 3, 'Tomer-Spector', 'Though both are Star Wars films, Empire Strikes Back is the emotional peak of the franchise and Phantom Menace is a trade dispute film with a CGI character that became a cultural embarrassment. Same galaxy, very different priorities.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313477, 313474, 3, 'Tomer-Spector', 'Though both are Star Wars prequel films, Revenge of the Sith earned its tragedy and Phantom Menace spent two hours on a pod race that led nowhere emotionally. The same trilogy connecting them does not make them equivalent.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313476, 3, 'Tomer-Spector', 'Though both are Star Wars films, Empire Strikes Back has the Hoth-Dagobah-Bespin trio and Attack of the Clones has the Anakin romance subplot that is widely considered the worst creative decision in the saga.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139655, 139650, 3, 'Tomer-Spector', 'Though both are Harry Potter films, Prisoner of Azkaban reinvented the series cinematically and Chamber of Secrets is the entry before that reinvention, competent but without Cuaron''s vision. Recommending them as a pair oversells the second.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139652, 139650, 3, 'Tomer-Spector', 'Though both are Harry Potter films, Goblet of Fire brought genuine stakes and Chamber of Secrets is the weakest film in the franchise. They share a character but not a level of quality.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215876, 215879, 3, 'Tomer-Spector', 'Though both are Mission: Impossible films, the original used the spy paranoia well and M:I-II handed it to Woo for slow-motion doves and motorcycle ballet. Same franchise, opposite sensibilities.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215880, 215875, 3, 'Tomer-Spector', 'Though both carry the Mission: Impossible name, M:I-III is a genuinely tense spy film and the 1991 TV movie is a franchise curiosity that exists mainly as historical context. Not a meaningful pairing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 256631, 3, 'Tomer-Spector', 'Though both are Pirates films with the same cast, Curse of the Black Pearl introduced Sparrow as a genuinely creative character and Dead Man''s Chest already showed the franchise losing focus. The first earned everything the second coasts on.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (165961, 1390, 2, 'Tomer-Spector', 'Though both are Spielberg films, Jaws is a precision-built suspense machine and 1941 is his only significant flop. His own instincts for pacing and restraint that made Jaws work are completely absent from 1941.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 21213, 3, 'Tomer-Spector', 'Though both are Spielberg films, Catch Me If You Can is light and pleasurable and A.I. is the heavy Kubrick project he tried to finish and the seams show throughout. They are not in the same register.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 47130, 3, 'Tomer-Spector', 'Though both are Scorsese films with similar nocturnal New York energy, Goodfellas is a masterpiece of organized structure and Bringing Out the Dead is his most underrated film but feels unfinished where Goodfellas feels inevitable.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (270971, 123849, 3, 'Tomer-Spector', 'Though both are Scorsese epics, Raging Bull is compact and devastating and Gangs of New York sprawls without the same control. Day-Lewis saves Gangs but De Niro in Bull did not need saving.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 10945, 3, 'Tomer-Spector', 'Though both are Fincher films, Se7en is one of his best-controlled films and Alien 3 is the studio-compromised debut he disowned. They share a director''s name but not a director''s control.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 34077, 3, 'Tomer-Spector', 'Though both are Fincher films, Fight Club runs on controlled transgression and Benjamin Button runs on sentiment. They are both interesting but recommending them as a pair implies they scratch the same itch, which they do not.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 118367, 3, 'Tomer-Spector', 'Though both feature Tarantino, Pulp Fiction is the complete vision and Four Rooms is an anthology where the Tarantino segment is the only one that works. Recommending them as equivalent Tarantino experiences is misleading.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276217, 159665, 3, 'Tomer-Spector', 'Though both are Tarantino-adjacent war films, Reservoir Dogs is a precision thriller and Inglorious Bastards is the Italian original, not the Tarantino remake. The name similarity creates a false connection.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 59578, 3, 'Tomer-Spector', 'Though both are Burton-Depp films, Edward Scissorhands has genuine emotional sincerity and Charlie and the Chocolate Factory leans into Depp''s eccentricity as style rather than character. Burton''s personal touch is visible in Scissorhands and missing in Charlie.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (304862, 59578, 3, 'Tomer-Spector', 'Though both are Burton films with gothic production design, Sleepy Hollow uses the visual imagination to serve genuine atmosphere and Charlie and the Chocolate Factory uses it as the only thing it has going on.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97360, 70959, 3, 'Tomer-Spector', 'Though both are Burton films, Ed Wood is emotionally grounded in a way that Corpse Bride cannot manage with its thin story. Both are beautiful to look at but only one of them has something to say.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (41518, 233058, 3, 'Tomer-Spector', 'Though both are Depp dramatic films in contained settings, Blow has a clear rise-and-fall arc and The Ninth Gate has a famously unsatisfying ending that leaves the premise unresolved. Depp is committed in both but the writing fails him in Ninth Gate.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 120506, 3, 'Tomer-Spector', 'Though both are Depp films with period settings, Pirates is Depp at his most creative and From Hell is Depp doing restrained Jack the Ripper procedural that never delivers on its atmosphere. Same lead, opposite results.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (34104, 113506, 3, 'Tomer-Spector', 'Though both are Depp films where he plays an eccentric outsider who charms a community, Benny and Joon is whimsical by design and Finding Neverland is supposed to be emotionally serious. Both are gentle films that neither surprises you.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 22651, 3, 'Tomer-Spector', 'Though both are Depp films with a supernatural premise, Edward Scissorhands has genuine soul and The Astronaut''s Wife is a generic sci-fi thriller that never does anything interesting with Depp or Theron.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (644, 283410, 3, 'Tomer-Spector', 'Though both are romantic comedies with charismatic leads, 10 Things I Hate About You is sharp Shakespeare adaptation and Runaway Bride is a Gere-Roberts reunion that coasts on Pretty Woman goodwill. Different tiers of writing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (66194, 263360, 3, 'Tomer-Spector', 'Though both are romcoms with sharp female leads, Clueless is genuinely witty and Pretty Woman has a premise that became more uncomfortable with each passing decade. Silverstone''s writing is smarter than Roberts'' situation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (220276, 200864, 3, 'Tomer-Spector', 'Though both are romantic films with stars at their peak, Moulin Rouge earns its emotion through operatic commitment and Maid in Manhattan runs paint-by-numbers beats with JLo on autopilot. Same genre, different aspiration.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (644, 46878, 3, 'Tomer-Spector', 'Though both are romantic films built around a witty female protagonist, 10 Things is sharp and Bridget Jones: Edge of Reason is a sequel running on fumes. The writing quality gap is significant.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 200864, 3, 'Tomer-Spector', 'Though both are star-driven films from 2001-2002 with ensemble energy, Ocean''s Eleven is a precision heist film and Maid in Manhattan is a romcom where JLo and Fiennes generate just enough chemistry to stay watchable. Not a meaningful pairing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (61751, 21213, 3, 'Tomer-Spector', 'Though both are dystopian sci-fi films about civilizational collapse, Children of Men is one of the most perfectly controlled films of the 2000s and A.I. is the Kubrick-Spielberg project where the ending collapses what came before.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40199, 256839, 3, 'Tomer-Spector', 'Though both are sci-fi films where a protagonist hunts targets in a world that has lost its humanity, Blade Runner is a landmark and Pitch Black is a solid B-movie that borrows some of its DNA. Recommending them as equals misrepresents both.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (158999, 370017, 3, 'Tomer-Spector', 'Though both are over-the-top action spectacles with a charismatic lead, Independence Day earns its scale through ensemble investment and XXX replaces that with Diesel doing Bond parody that takes itself too seriously to be funny.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 340652, 3, 'Tomer-Spector', 'Though both are historical war epics with ensemble casts, Saving Private Ryan is Spielberg at peak control and Troy is a 2004 blockbuster where only Bana''s Hector performance rises above the material.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (109421, 370017, 3, 'Tomer-Spector', 'Though both are early-2000s action films with charismatic leads building franchises, The Fast and the Furious has genuine ensemble chemistry and XXX never built anything beyond Diesel''s star persona.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311038, 30952, 2, 'Tomer-Spector', 'Though both are superhero films, Spider-Man 2 is one of the best films in the genre and Batman and Robin is one of the worst. Sharing a genre is not a reason to recommend them together.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (319602, 30965, 3, 'Tomer-Spector', 'Though both are superhero origin films from different eras, Superman 1978 is earnest and effective and Batman Forever is competing villain performances with neon set design. Same genre, opposite approaches to sincerity.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (142492, 30952, 2, 'Tomer-Spector', 'Though both are superhero films with colorful villains, Hellboy 2 uses del Toro''s monster imagination to create something genuinely strange and Batman and Robin used Schwarzenegger''s ice puns to end a franchise. Not comparable.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (218219, 190869, 3, 'Tomer-Spector', 'Though both are animated films with surprising emotional depth, Mononoke is a morally complex meditation on civilization and nature and Lilo and Stitch, while excellent, is a much lighter film. Grouping them as equivalent is unfair to the ambition of Mononoke.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (300229, 300230, 3, 'Tomer-Spector', 'Though both are Shrek films, the original had real satirical bite and the sequel coasts more heavily on the formula it built. Murphy is still the best part but the freshness is gone.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (306032, 208245, 3, 'Tomer-Spector', 'Though both are ensemble films where charismatic actors play criminals or gamblers, Snatch is precise and kinetic and Maverick is a comfortable star vehicle. The comparison flatters neither.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280282, 3, 'Tomer-Spector', 'Though both are Rocky films, the original is a genuine drama and Rocky III replaces all of that with Mr. T and Eye of the Tiger. The training montage is the only thing anyone remembers because the film itself forgot what it was about.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290070, 31715, 2, 'Tomer-Spector', 'Though both are films about intense emotional bonds between women facing devastating circumstances, Schindler''s List is Spielberg at his most controlled and Beaches is sentimental melodrama that earned its reputation as the crying film of 1988. They are not in the same category.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 253010, 3, 'Tomer-Spector', 'Though both feature ensemble casts in crime-adjacent settings, Ocean''s Eleven is a perfect machine and A Perfect World is a quiet Eastwood film that has nothing in common with heist films except that Costner''s character has broken the law.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256627, 58084, 3, 'Tomer-Spector', 'Though both are films about technology and the men who built something ambitious, Pirates of Silicon Valley is a compelling historical drama and Cerebrium is a low-budget psychological thriller where ambition clearly exceeded the available resources.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (183873, 244421, 3, 'Tomer-Spector', 'Though both are films about unlikely romantic pairs navigating social obstacles, Ladyhawke commits to its fantasy premise completely and The Other Sister is soft Garry Marshall sentiment that never challenges either character.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335835, 215879, 3, 'Tomer-Spector', 'Though both are action films about elite operatives with Cruise in a central role, Top Gun has immortal vibes and Mission Impossible II replaced spy craft with John Woo slow-motion and motorcycles. Same lead, opposite tones.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (177369, 73574, 2, 'Tomer-Spector', 'Though both feature early performances from actors who became major stars, King of Comedy shows De Niro at peak creative control and Critters 3 is a direct-to-video horror that exists because DiCaprio happened to be in it. Recommending them together is absurd.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (164572, 200864, 3, 'Tomer-Spector', 'Though both are films where a charismatic Black lead navigates a complicated social situation with style, Jackie Brown is Tarantino at his most patient and mature and Maid in Manhattan is a paint-by-numbers romcom. Pam Grier''s performance has nothing in common with JLo''s.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 258948, 3, 'Tomer-Spector', 'Though both are thriller films where a disturbing individual manipulates those around them, Se7en uses its villain to interrogate society and Poison Ivy is a B-thriller where Barrymore is the most interesting element in an otherwise routine film.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 350424, 3, 'Tomer-Spector', 'Though both are psychological films where the protagonist cannot trust his own perception, Memento is architecturally precise and Vanilla Sky is a glossier remake of a Spanish film that works better in its original form.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (123435, 292671, 3, 'Tomer-Spector', 'Though both are psychological thrillers about a man being gaslit by his environment, The Game is Fincher with full control and Secret Window is a King adaptation where you see the twist coming forty minutes out. Same premise, very different execution.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39551, 1121, 3, 'Tomer-Spector', 'Though both are historical war or expedition films about extraordinary events under extreme conditions, Black Hawk Down is immersive and intense and 1492 has Vangelis doing most of the storytelling because the film itself wanders. The comparison is not flattering to 1492.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (174953, 350189, 3, 'Tomer-Spector', 'Though both are animated fantasy films set in worlds where humans and non-humans coexist uneasily, Nausicaa is Miyazaki at his world-building peak and Vampire Hunter D 2000 is a stylish anime that does not reach the same moral depth. Worth pairing only if you have exhausted Miyazaki.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 270628, 2, 'Tomer-Spector', 'Though both are films about men confronting their own sense of powerlessness, Fight Club builds to a philosophically coherent statement and Radio Flyer leans on sentiment where the subject matter demanded more restraint. They are not comparable in ambition or execution.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 208245, 3, 'Tomer-Spector', 'Though both are adventure films that run on the chemistry between two leads with different temperaments, Last Crusade has Connery and Ford at their absolute best and Maverick has Gibson and Foster being charming for two hours in a film that goes nowhere especially interesting.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 271344, 2, 'Tomer-Spector', 'Though both are films where a protagonist rebuilds their life through an unexpected connection, Shawshank earns its emotion across a decade of storytelling and Raising Helen is a romcom premise where Hudson is on autopilot. The comparison is not kind to either film.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 306032, 9, 'Tomer-Spector', 'Pulp Fiction and Snatch are both ensemble crime films that run on interlocking plotlines and people who are very bad at the things they are supposed to be good at. If you love the structure of one you will love the other.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40199, 214755, 8, 'Tomer-Spector', 'Blade Runner and Minority Report are both films where a law enforcement officer in a dystopian future questions whether the system he serves is just. Both hold up because the visual world is built well enough that you believe in it.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 256632, 8, 'Tomer-Spector', 'Raiders and Pirates of the Caribbean are both adventure films built around a charismatic rogue who improvises through impossible situations. Depp''s Sparrow is the closest anyone came to matching Ford''s Indy in that specific register.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 112290, 8, 'Tomer-Spector', 'Shawshank and Fight Club are both films about men who create a second life inside a system designed to break them. One is about survival through hope, the other is about survival through destruction. They are mirror images.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176712, 164572, 8, 'Tomer-Spector', 'Kill Bill Vol 2 and Jackie Brown are both Tarantino films where the violence steps back and the conversation takes over. Both show he is a better director when he is not trying to be the most stylish person in the room.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256627, 297838, 7, 'Tomer-Spector', 'Pirates of Silicon Valley and Shawshank are both films about what institutional power does to individuals who built something extraordinary inside it. Jobs and Wozniak''s dynamic has more in common with Andy Dufresne than it first appears.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335835, 109421, 7, 'Tomer-Spector', 'Top Gun and The Fast and the Furious are both films where the plot barely matters because the real film is about belonging to a group of people who are very good at a dangerous thing. Both work entirely because of cast chemistry.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40199, 10830, 9, 'Tomer-Spector', 'Blade Runner and Alien are both Ridley Scott films that built worlds convincing enough to sustain entire franchise universes. Both run on atmosphere and dread rather than plot momentum. Watching them together is the best argument for trusting a director with a vision.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (247579, 291698, 7, 'Tomer-Spector', 'Panic Room and Se7en are both films where Fincher uses the physical architecture of a single location to generate sustained dread. Panic Room is the lighter version but both show his obsession with space as a psychological weapon.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 200521, 3, 'Tomer-Spector', 'Though both are films where multiple storylines collide in morally complicated ways, Pulp Fiction controls its chaos with precision and Magnolia lets its three hours wander without the same discipline. Cruise''s monologue is great; the rest is more self-important than it earns.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 200521, 3, 'Tomer-Spector', 'Though both are ambitious ensemble films about people whose lives intersect in unexpected ways, Goodfellas is controlled and Magnolia sprawls. Anderson wants Altman''s scale and Scorsese''s intensity and achieves neither fully.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 350189, 3, 'Tomer-Spector', 'Though both are films about identity and what it means to be human in a world where that line has blurred, Memento uses its structure to force you to experience the protagonist''s disorientation and Vampire Hunter D 2000 is a stylish anime that gestures at those themes without committing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (306032, 41518, 3, 'Tomer-Spector', 'Though both are films about charismatic criminals whose success is their downfall, Snatch is relentlessly kinetic and Blow has a more conventional rise-and-fall arc. Snatch rewards repeat viewing; Blow is a one-time watch that does not linger.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 215879, 3, 'Tomer-Spector', 'Though both are glossy films about professionals executing a mission with style, Ocean''s Eleven is a perfectly tuned ensemble piece and Mission Impossible II handed the same format to John Woo who replaced all the elegance with motorcycle ballet.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 159167, 2, 'Tomer-Spector', 'Though both are Indiana Jones films with the same lead, Last Crusade is Spielberg and Ford firing on all cylinders and Kingdom of the Crystal Skull is a film where a fridge and CGI prairie dogs tell you the franchise is over.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 34104, 3, 'Tomer-Spector', 'Though both are films about a gentle eccentric who brings charm to a community that does not understand him, Edward Scissorhands has genuine emotional weight behind the fairy tale and Benny and Joon is pleasant without ever reaching for something more.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (61751, 214755, 3, 'Tomer-Spector', 'Though both are sci-fi films about a broken future society, Children of Men refuses to offer comfortable solutions and Minority Report resolves its premise with the kind of plot mechanics that undercut the philosophy it set up. Cuaron trusts the audience more.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 118367, 3, 'Tomer-Spector', 'Though both are films featuring Tarantino''s sensibility, Kill Bill Vol 1 is one of his most controlled achievements and Four Rooms is an anthology where the Tarantino segment is surrounded by weaker material. Recommending them together oversells Four Rooms.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 354178, 3, 'Tomer-Spector', 'Though both are Bond films, Goldfinger is the franchise at its most confident and A View to a Kill is Moore two films past his expiration date. Walken and Grace Jones are interesting choices who cannot compensate for a lead the film itself knows is too old.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (129185, 280305, 3, 'Tomer-Spector', 'Though both are films about a champion who loses everything and must rebuild, Gladiator earns its emotional weight through Crowe''s physicality and the scale of what Maximus has lost and Rocky V replaces that weight with a protege plotline nobody asked for.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 370017, 3, 'Tomer-Spector', 'Though both are early-2000s adventure films about a rogue who refuses to follow the rules, Pirates of the Caribbean created a genuinely original character in Jack Sparrow and XXX is Diesel doing Bond parody that never commits to being funny or being serious.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40199, 350189, 3, 'Tomer-Spector', 'Though both are films about synthetic beings navigating a world that is not sure they belong in it, Blade Runner asks the question with the full weight of Philip K Dick and Ridley Scott behind it and Vampire Hunter D 2000 is a stylish anime that raises the same theme as atmosphere rather than argument.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159175, 159172, 8, 'Tomer-Spector', 'Temple of Doom and Last Crusade are the two Indiana Jones films that work best as a pair: Doom shows Indy at his darkest and Crusade brings Connery in to give him someone to be vulnerable around. The contrast in tone is why both are worth watching.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280282, 280305, 3, 'Tomer-Spector', 'Though both are Rocky sequels, Rocky III has Mr. T and the Eye of the Tiger and Rocky V has a protege storyline that Stallone himself admitted was the wrong direction. Both are diminishing returns but III at least has one iconic element.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 267038, 9, 'Tomer-Spector', 'Shawshank and Pulp Fiction are the two films from 1994 that people point to when asked what decade-defining cinema looks like. Both are about the gap between how the world is and how it should be, arrived at from completely opposite directions.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 267038, 9, 'Tomer-Spector', 'Goodfellas and Pulp Fiction are the two films that redefined what crime cinema could do. Scorsese''s is a decade-long immersion, Tarantino''s is a single chaotic day. Both reward every rewatch differently.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40199, 291698, 9, 'Tomer-Spector', 'Blade Runner and Se7en are both films about a detective operating in a city that has already lost. Both use rain, neon and moral exhaustion as their primary visual language. Watching them back to back is a masterclass in atmospheric world-building.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 267038, 8, 'Tomer-Spector', 'Kill Bill Vol 1 and Pulp Fiction are both Tarantino films where genre is just the frame. Both run on dialogue, style and a complete refusal to follow conventional structure. Vol 1 is his most disciplined action film, Fiction is his most disciplined crime film.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210739, 158999, 8, 'Tomer-Spector', 'Men in Black and Independence Day are both Will Smith films from the 1990s where he anchors a summer blockbuster through pure charisma. Both films would be far less watchable without him and both understand that the spectacle only works if you like the person at the center of it.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (276217, 291698, 9, 'Tomer-Spector', 'Reservoir Dogs and Se7en are both films that spend most of their runtime building dread toward a conclusion you cannot stop. Dogs is a single location, Se7en is an entire city. Both understand that what you do not show is more terrifying than what you do.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (220276, 256632, 7, 'Tomer-Spector', 'Moulin Rouge and Pirates of the Caribbean both ran on a charismatic lead fully committed to a maximalist performance that should have been embarrassing. McGregor and Depp both swing for it completely and both land. Films with that energy are rare.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 39551, 8, 'Tomer-Spector', 'Rocky and Black Hawk Down are both films about what it takes to walk into a fight you might not survive and keep moving. One is a boxing drama, one is a war film, but the emotional engine is the same: you fight because stopping is worse.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30955, 311037, 8, 'Tomer-Spector', 'Batman 1989 and Spider-Man 2002 are the two superhero films that proved the genre could sustain a serious lead performance. Keaton and Maguire both committed without irony and both films built lasting franchises on that foundation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (164572, 130945, 7, 'Tomer-Spector', 'Jackie Brown and GoldenEye both came out within months of each other in 1997 and both are about a franchise reset through patience. Tarantino slowed Pulp Fiction down, Campbell grounded Bond after a long absence. Both are underappreciated as turning points.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 306032, 8, 'Tomer-Spector', 'Catch Me If You Can and Snatch are both films about a con that runs so well you almost forget to root against the person running it. DiCaprio and Pitt''s Mickey are both so watchable that the mechanics become secondary to the pleasure of watching them work.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (113459, 306032, 7, 'Tomer-Spector', 'Find Me Guilty and Snatch are both ensemble films where a charismatic protagonist holds together a group of criminals through force of personality alone. Diesel''s courtroom performance and Pitt''s Mickey operate on the same principle: be so watchable that the legal situation becomes secondary.', null); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194497, + 194502, + 10, + 'Alma', + 'The second movie keeps the journey feeling huge and the friendships still matter, so it feels like the right next watch after the first one.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194502, + 194500, + 10, + 'Alma', + 'The final movie brings all the storylines together in a satisfying way, with bigger battles and emotional moments that feel earned after everything that happened in The Two Towers.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194497, + 194500, + 9, + 'Alma', + 'Even with the long time gap, both movies still share the same adventurous feeling and fantasy world, so the ending feels connected to the beginning.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, + 139650, + 9, + 'Alma', + 'The castle still feels magical and cozy, but the mystery gets darker in a way that works after the first school year.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139650, + 139655, + 9, + 'Alma', + 'The third one keeps the friendship at the center while making everything feel a little older and more serious.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, + 139655, + 8, + 'Alma', + 'Both have that school adventure feeling, and it is fun to see how much the characters change between them.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313459, + 313478, + 10, + 'Alma', + 'The adventure becomes more tense and emotional, and the characters feel deeper without losing the fun space action.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313478, + 313479, + 9, + 'Alma', + 'The ending works well after the darker middle movie because it gives the family story and the battles a real finish.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313459, + 313479, + 8, + 'Alma', + 'They both have an adventurous and optimistic tone, and the story continues naturally from the first movie to the final battle.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 130128, + 130129, + 10, + 'Alma', + 'The family drama stays slow and serious, and the second movie adds history without making the first one feel smaller.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 130129, + 130130, + 7, + 'Alma', + 'The third movie is weaker, but it still follows the same family guilt and gives a natural place to continue the story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328285, + 328277, + 10, + 'Alma', + 'The second movie keeps the chase idea but makes it bigger and more emotional, especially with Sarah and John.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 10830, + 10920, + 9, + 'Alma', + 'The first one is quiet and scary while the second is louder, but the fear around the creature still connects them really well.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337166, + 337168, + 10, + 'Alma', + 'The sequel keeps the toys sweet and funny while adding a more emotional story about being left behind.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, + 300230, + 9, + 'Alma', + 'The jokes stay silly and fast, and the sequel still has the same fairy tale mess that made the first one fun.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311037, + 311038, + 9, + 'Alma', + 'The second movie understands Peter better, and the action feels connected to the same awkward hero story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 207992, + 207989, + 8, + 'Alma', + 'The sequel becomes bigger and more complicated, but the action style and the themes about choice still make it feel connected to the first movie.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 159175, + 159172, + 8, + 'Alma', + 'Both are pulpy adventure rides with traps and jokes, even though the third one is warmer because of the father story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 264146, + 131885, + 9, + 'Alma', + 'Both feel like comfort adventure movies where the jokes and danger are light enough to watch with almost anyone.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 113504, + 218415, + 9, + 'Alma', + 'Both are colorful and funny, but they also have touching stories about family and looking after someone who depends on you.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 191246, + 9795, + 9, + 'Alma', + 'Both are classic Disney movies with great songs, lovable side characters, and a fast moving adventure that makes them easy to watch again and again.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 32178, + 192017, + 9, + 'Alma', + 'Both tell romantic fairy tale stories, and the songs help develop the characters and emotions.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 32178, + 9795, + 8, + 'Alma', + 'The humor is different, but the songs and animation style make them feel like movies from the same Disney era.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 206881, + 309634, + 8, + 'Alma', + 'Both are family musicals with memorable songs and a warm style that still feels enjoyable today.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 367073, + 206881, + 8, + 'Alma', + 'Both feel magical and family friendly, with a childlike adventure that is never too heavy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 302696, + 61156, + 8, + 'Alma', + 'The dancing is the main pleasure in both, and both focus on the entertainment world.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 220276, + 61156, + 8, + 'Alma', + 'Both are flashy musicals with big emotions, and the performances feel theatrical in a fun way.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46877, + 235790, + 9, + 'Alma', + 'Both are British romantic comedies where the awkward moments are part of why the romance feels sweet.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 235790, + 118393, + 9, + 'Alma', + 'The humor feels natural and a little awkward in both, and the romances feel like they belong to the same crowd.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 362808, + 235790, + 8, + 'Alma', + 'They both make romance feel funny and nervous, with characters who are easy to like even when they overthink.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 166917, + 289222, + 8, + 'Alma', + 'Both have big romantic gestures, but they also spend time with people trying to become better versions of themselves.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 223719, + 218341, + 8, + 'Alma', + 'Both wedding stories feel busy and loud in a good way, with family pressure driving most of the comedy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 222831, + 223719, + 7, + 'Alma', + 'They both use weddings and family stress for laughs, but there is still a lonely person trying to be seen.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 195300, + 5009, + 8, + 'Alma', + 'Both have a warm British tone and mix comedy with sadness without becoming too heavy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 144804, + 5009, + 8, + 'Alma', + 'The main characters are immature in different ways, and both movies are funny because they let them be annoying first.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194874, + 104338, + 8, + 'Alma', + 'Both are thoughtful love stories about loneliness, and they stay with you because of the mix of humor and sadness.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 178218, + 46877, + 7, + 'Alma', + 'Both have awkward dating scenes and honest characters, which makes the romance feel more realistic than perfect.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46322, + 111442, + 9, + 'Alma', + 'Both understand teen rebellion in a fun way, but they also have enough heart to feel more than just school comedy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46322, + 313059, + 8, + 'Alma', + 'They are very different stories, but both remember being young with a mix of jokes, pain, and honesty.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313059, + 131885, + 8, + 'Alma', + 'Both follow kids on an adventure where the friendship matters more than the actual destination.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 80583, + 131665, + 9, + 'Alma', + 'Both are emotional movies about smart young men needing someone to push them without judging them.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131665, + 32114, + 8, + 'Alma', + 'Both follow brilliant men struggling with personal problems, and the emotional growth matters more than the academic achievements.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 13789, + 340901, + 8, + 'Alma', + 'Both look at normal suburban life and make it feel strange, funny, and a little sad.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 117874, + 134077, + 8, + 'Alma', + 'Both are emotional and easy to get pulled into, with a gentle lead character surrounded by painful moments.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 134077, + 297838, + 9, + 'Alma', + 'They both have prison settings but the real connection is the patience and kindness in the storytelling.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 290070, + 254986, + 9, + 'Alma', + 'Both are very heavy watches about survival, and the quiet moments are what stayed with me most.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 190129, + 254986, + 7, + 'Alma', + 'They handle the same historical pain very differently, but both stay focused on one person trying to live through it.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 18960, + 257459, + 8, + 'Alma', + 'Both war movies feel dirty and frightening, and they care more about what war does to people than about simple hero moments.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 257459, + 121538, + 8, + 'Alma', + 'Both show soldiers being changed by the war, with a harsh pace that makes the experience feel uncomfortable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 289109, + 39551, + 8, + 'Alma', + 'Both have intense battle scenes where the confusion and fear feel more important than clean victory.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46169, + 129185, + 9, + 'Alma', + 'Both are big revenge epics with speeches, battles, and a lead character who carries the emotion.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 185628, + 77728, + 8, + 'Alma', + 'Both are about an outsider learning another culture, and the slower parts help the change feel believable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 207390, + 129185, + 7, + 'Alma', + 'Both are large scale historical adventures, even though one is more about command and the other is revenge.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 340652, + 129185, + 7, + 'Alma', + 'They both go for big ancient battles and tragic heroes, so they fit for someone wanting that huge sword movie mood.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86274, + 86287, + 8, + 'Alma', + 'The third movie is more playful, but it still gives the same kind of fast problem solving under pressure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86274, + 188507, + 8, + 'Alma', + 'Both are action movies with jokes between the danger, and the heroes feel tired in a way that makes them more fun.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 35522, + 188507, + 8, + 'Alma', + 'They both mix police action with comedy, and the main characters make the movies feel lighter than the plots sound.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 340799, + 310726, + 8, + 'Alma', + 'Both are easy action watches from the same period, with big set pieces and a very clear rush of danger.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 107166, + 340799, + 7, + 'Alma', + 'They are both loud action movies that know they are ridiculous, which makes them entertaining instead of boring.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 121386, + 45128, + 8, + 'Alma', + 'Both are tense chase movies where the hero has to stay smart because everyone else is closing in.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 281334, + 45128, + 8, + 'Alma', + 'The car chases and spy mood feel serious in both, and neither one wastes too much time explaining everything.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 67052, + 337814, + 8, + 'Alma', + 'Both have city crime stories with one dangerous man controlling the night, and the tension stays close to the characters.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 203344, + 279420, + 7, + 'Alma', + 'Both revenge stories are dark and emotional, with the violence tied to grief instead of just action.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131780, + 56304, + 9, + 'Alma', + 'They both have the same fast crime storytelling and the feeling that everything exciting is slowly falling apart.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 289558, + 131780, + 8, + 'Alma', + 'Both show crime as loud and tempting at first, then let the ego and violence make everything ugly.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 267038, + 276217, + 9, + 'Alma', + 'Both have sharp conversations and sudden violence, and the characters feel like they could exist in the same crime world.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 176711, + 176712, + 9, + 'Alma', + 'The second part slows down, but it gives the revenge story the emotion that the first part sets up.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337830, + 276085, + 8, + 'Alma', + 'Both are hard to watch because they show addiction as messy, fast, and painful instead of glamorous.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 112290, + 210511, + 8, + 'Alma', + 'Both play with the main character mind, and the story keeps making you question what you are being shown.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210511, + 90772, + 8, + 'Alma', + 'They both feel like puzzles, but the emotional confusion is just as important as figuring out the plot.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 348944, + 182955, + 8, + 'Alma', + 'Both are crime mysteries where the fun is watching people lie, hide things, and slowly reveal the real shape of the story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337814, + 182955, + 7, + 'Alma', + 'Both look at dirty police work, though one is more modern and direct while the other feels like an old crime novel.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109093, + 37178, + 8, + 'Alma', + 'Both have strange crime stories and dry humor, with characters who somehow make the danger feel funny.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109093, + 237431, + 8, + 'Alma', + 'The humor is odd in both, and the side characters are so specific that the road through the story feels memorable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 283739, + 282696, + 9, + 'Alma', + 'Both have that neat, awkward family feeling where the jokes are quiet but the sadness is real.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 44844, + 283739, + 8, + 'Alma', + 'Both have young men chasing plans that are bigger than they can handle, and the comedy comes from how serious they are.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 33179, + 6219, + 8, + 'Alma', + 'Both are weird in a smart funny way, and they make creative frustration feel like part of the story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 37057, + 117874, + 8, + 'Alma', + 'Both tell life stories that feel larger than real life, with sweet emotional endings that are easy to remember.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 134672, + 340901, + 8, + 'Alma', + 'Both trap a man inside a strange version of normal life and let the comedy turn into something more thoughtful.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 9125, + 226939, + 9, + 'Alma', + 'Both throw jokes nonstop and have the same silly straight faced style that makes the dumb lines work.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 24430, + 226939, + 8, + 'Alma', + 'Both parody spy and police stories with goofy jokes that are better when nobody in the movie acts normal.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 330057, + 209658, + 8, + 'Alma', + 'Both are uncomfortable comedies where the awkward scenes keep getting worse until they become funny.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 290378, + 227549, + 7, + 'Alma', + 'The humor in both movies comes from unusual characters who take themselves completely seriously, even when everything around them looks ridiculous.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238695, + 65578, + 8, + 'Alma', + 'Both are funny because they understand boring work and people complaining about tiny things like they are disasters.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 202490, + 65578, + 8, + 'Alma', + 'Both feel casual and talky, with the kind of jokes that sound like friends wasting a whole day together.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 89288, + 202490, + 7, + 'Alma', + 'They share the same style of humor, even though one tells a much bigger and stranger story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 165961, + 10830, + 8, + 'Alma', + 'Both build fear slowly and make the monster more scary by not showing too much too early.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 137655, + 232458, + 8, + 'Alma', + 'Both are classic slasher movies where the simple fear and the stalking scenes do most of the work.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 266574, + 137655, + 8, + 'Alma', + 'Both use quiet tension and ordinary places to make the danger feel closer than expected.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 105891, + 281937, + 9, + 'Alma', + 'Both are slow scary movies where the fear comes from the home and the people around the main woman.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 55625, + 281937, + 7, + 'Alma', + 'Both mix horror with a sad story about a woman being trapped by people who should protect her.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 232104, + 79674, + 9, + 'Alma', + 'The later movie grows naturally from the same horror idea and adds more chaos without losing the social fear.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 278498, + 244458, + 8, + 'Alma', + 'Both are ghost stories that depend on mood and quiet dread more than constant scares.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 303564, + 244458, + 8, + 'Alma', + 'Both are sad supernatural mysteries where the ending changes how you think about the whole movie.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 303564, + 345690, + 7, + 'Alma', + 'They are very different, but both rely on slow reveals and surprising endings.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 301391, + 303564, + 7, + 'Alma', + 'Both use family fear and silence well, and the scary parts work because the characters feel hurt already.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 40199, + 207992, + 8, + 'Alma', + 'Both have dark science fiction worlds where the action comes with questions about what is real.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 1711, + 40199, + 8, + 'Alma', + 'Both are serious science fiction movies that ask you to sit with the mood instead of explaining every answer.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 214755, + 121386, + 8, + 'Alma', + 'Both are chase stories with a man trying to prove the truth while the system is already against him.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 342384, + 46215, + 8, + 'Alma', + 'Both feel like strange future nightmares where the world is confusing on purpose and the hero never has full control.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 130128, + 130130, + 4, + 'Alma', + 'Though both movies continue the Corleone family story, it is a weak recommendation because the third movie feels much less tense and does not have the same quiet power as the original.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194497, + 139657, + 5, + 'Alma', + 'Though both movies start a young hero in a magical world, it is not a strong match because Lord of the Rings feels like a serious journey while Harry Potter feels more like school mystery.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194500, + 340652, + 4, + 'Alma', + 'Though both movies have huge battles and old legendary heroes, it is a bad recommendation because Troy feels flatter and more distant than the emotional ending of Lord of the Rings.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139655, + 313476, + 3, + 'Alma', + 'They are both fantasy adventures, but Harry Potter focuses on friendship and mystery while Attack of the Clones spends much more time on politics and large scale conflict.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313459, + 313476, + 4, + 'Alma', + 'Sharing the same franchise does not guarantee a strong recommendation. Many fans of the original enjoy its adventure style more than the heavier prequel approach.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313478, + 207989, + 4, + 'Alma', + 'Both are major science fiction sequels, but they focus on different strengths. Empire Strikes Back develops its characters, while Matrix Reloaded focuses more on action and ideas.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328285, + 328281, + 4, + 'Alma', + 'Though both movies use the Terminator chase idea, it is a poor recommendation because the third movie loses the fear and emotional focus that made the first one work.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328277, + 207989, + 5, + 'Alma', + 'Though both movies have machines fighting humans, it is a weak recommendation because Terminator 2 is clear and emotional while Matrix Reloaded feels more crowded and harder to care about.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 10830, + 328281, + 2, + 'Alma', + 'The threat may be similar, but the feeling is not. Alien creates suspense and fear, while Terminator 3 is much more focused on action.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 10920, + 79675, + 5, + 'Alma', + 'Though both movies are survival stories with monsters attacking groups of people, it is weak because Aliens has military tension while Dawn of the Dead feels more chaotic and zombie driven.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337166, + 300229, + 5, + 'Alma', + 'Both are popular animated films, but their humor is very different. Toy Story is sincere and emotional, while Shrek relies more on parody and sarcasm.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337168, + 155213, + 5, + 'Alma', + 'Families may enjoy both movies, but Toy Story 2 puts much more focus on emotional relationships than Ice Age.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300230, + 218415, + 5, + 'Alma', + 'These movies appeal to families, but they create very different moods. Monsters, Inc. is gentle and heartwarming, while Shrek 2 leans heavily on fast jokes and satire.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 191246, + 300229, + 4, + 'Alma', + 'Animation alone is not enough to connect these movies. The Lion King tells a serious coming of age story, while Shrek mainly works as a comedy that pokes fun at fairy tales.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 32178, + 24430, + 2, + 'Alma', + 'Though both movies play with fairy tale or spy fantasy, it is a bad recommendation because Beauty and the Beast is romantic and sincere while Austin Powers is silly adult parody.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 9795, + 207992, + 2, + 'Alma', + 'Both movies follow ordinary people entering a new world, but the experience is completely different. Aladdin is light and playful, while The Matrix is much darker and more intense.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 192017, + 278498, + 1, + 'Alma', + 'Though both movies use water as an important image, it is a terrible recommendation because The Little Mermaid is a romantic musical and The Ring is a cold ghost story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 206881, + 105891, + 1, + 'Alma', + 'These movies both focus on families, but they create completely different feelings. Mary Poppins is comforting and joyful, while The Exorcist is meant to scare and disturb viewers.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 309634, + 61156, + 4, + 'Alma', + 'They are both musicals, but they target very different audiences. The Sound of Music feels wholesome and family friendly, while Chicago has a much more cynical and adult tone.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 302696, + 220276, + 5, + 'Alma', + 'Though both movies are musicals about performance and love, it is a weak recommendation because Singin in the Rain feels clean and light while Moulin Rouge is frantic and sad.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46877, + 210511, + 2, + 'Alma', + 'Both movies spend a lot of time inside the main characters head, but one is a romantic comedy and the other is a confusing psychological thriller.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 235790, + 112290, + 1, + 'Alma', + 'The main characters both struggle with their lives, but the movies head in completely different directions. Notting Hill is warm and romantic, while Fight Club is aggressive and unsettling.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 118393, + 276085, + 1, + 'Alma', + 'Though both movies show a group of people being pulled through emotional chaos, it is a poor recommendation because Four Weddings is charming comedy and Requiem for a Dream is painful addiction drama.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 362808, + 289558, + 1, + 'Alma', + 'Relationship conversations alone are not enough to connect these movies. One is a classic romantic comedy and the other is a violent rise and fall crime story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 166917, + 337814, + 3, + 'Alma', + 'Both leads are charismatic, but the movies offer very different experiences. Jerry Maguire focuses on personal growth, while Training Day is built around danger and corruption.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 223719, + 130128, + 4, + 'Alma', + 'Family plays a major role in both stories, but one celebrates family traditions while the other explores crime and power.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 218341, + 56304, + 3, + 'Alma', + 'Though both movies have crowded family scenes and social pressure, it is weak because Monsoon Wedding feels colorful and emotional while Casino is cold crime downfall.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 222831, + 13789, + 5, + 'Alma', + 'Though both movies show unhappy people trying to escape ordinary lives, it is only a fair match because Muriel is awkward and comic while American Beauty is much darker.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 195300, + 67052, + 2, + 'Alma', + 'The city setting is not enough to make these movies feel similar. Love Actually is uplifting and romantic, while Collateral keeps viewers tense the entire time.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 5009, + 346949, + 2, + 'Alma', + 'Both main characters change over time, but the emotional tone is completely different. About a Boy is lighthearted, while Unforgiven is serious and grim.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 144804, + 131780, + 3, + 'Alma', + 'Though both movies have male narration and messy personal choices, it is a poor recommendation because High Fidelity is about music and dating while Goodfellas is about crime destroying people.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194874, + 310726, + 2, + 'Alma', + 'Though both movies involve people stuck in a stressful place, it is a bad match because Lost in Translation is quiet and lonely while Speed is pure action panic.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 104338, + 9125, + 1, + 'Alma', + 'Though both movies play with unusual story structure, it is weak because Eternal Sunshine is a sad breakup story while Airplane is nonstop parody.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46322, + 86274, + 2, + 'Alma', + 'Though both movies trap people in one main setting, it is not a good recommendation because The Breakfast Club is about teen feelings while Die Hard is action survival.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 111442, + 297838, + 2, + 'Alma', + 'Though both movies are about escaping a strict system, it is weak because Ferris Bueller is playful wish fulfillment while Shawshank is serious prison drama.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313059, + 39551, + 1, + 'Alma', + 'Though both movies follow groups of young men under pressure, it is a bad recommendation because Stand by Me is a childhood memory story while Black Hawk Down is brutal combat.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131885, + 267038, + 2, + 'Alma', + 'Though both movies involve criminals around a group adventure, it is weak because The Goonies is family fun while Pulp Fiction is adult, violent, and talky.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 80583, + 210511, + 1, + 'Alma', + 'Though both movies deal with pressure inside a young man mind, it is a poor match because Dead Poets Society is emotional school drama while Memento is a cold mystery puzzle.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131665, + 280270, + 5, + 'Alma', + 'Though both movies have working class pride and personal growth, it is only a medium recommendation because Good Will Hunting is built on quiet therapy scenes while Rocky is driven by sports struggle.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 13789, + 227549, + 4, + 'Alma', + 'Though both movies make suburban or small town life look strange, it is weak because American Beauty is bitter and serious while Napoleon Dynamite is dry and awkward.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 117874, + 90772, + 3, + 'Alma', + 'Though both movies follow unusual young men, it is not a great recommendation because Forrest Gump is sentimental and broad while Donnie Darko is gloomy and confusing.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 134077, + 137655, + 2, + 'Alma', + 'Though both movies include death and fear, it is a bad match because The Green Mile is patient prison drama while Halloween is simple slasher suspense.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 290070, + 190129, + 5, + 'Alma', + 'Though both movies deal with the Holocaust, it is only a cautious recommendation because Schindlers List is direct and devastating while Life Is Beautiful uses a much softer tragic comedy style.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 254986, + 176711, + 1, + 'Alma', + 'Though both movies involve wartime cruelty and revenge, it is a bad recommendation because The Pianist is quiet survival drama while Kill Bill is stylized action.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 18960, + 340652, + 4, + 'Alma', + 'Though both movies show war as violent and overwhelming, it is weak because Apocalypse Now feels psychological and strange while Troy is more like a costume battle epic.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 257459, + 185628, + 4, + 'Alma', + 'Though both movies put soldiers inside unfamiliar worlds, it is not a strong match because Platoon is raw and ugly while The Last Samurai is polished and romantic.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 121538, + 207390, + 4, + 'Alma', + 'Though both movies show military discipline and men under command, it is weak because Full Metal Jacket is harsh and broken while Master and Commander is controlled adventure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 289109, + 46169, + 5, + 'Alma', + 'Though both movies have large battle scenes and heroic sacrifice, it is only a fair recommendation because Saving Private Ryan feels realistic while Braveheart feels more like legend.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 39551, + 129185, + 4, + 'Alma', + 'Though both movies are violent stories about men trying to survive battle, it is weak because Black Hawk Down is modern chaos while Gladiator is ancient revenge drama.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86274, + 130128, + 3, + 'Alma', + 'Though both movies involve criminals and danger around a strong male lead, it is a poor recommendation because Die Hard is fast action fun while The Godfather is slow family crime drama.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86287, + 310726, + 5, + 'Alma', + 'Though both movies are fast 1990s action thrillers with public danger, it is only a medium match because Die Hard with a Vengeance leans on buddy banter while Speed is a straight pressure ride.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 188507, + 337814, + 4, + 'Alma', + 'Though both movies involve police work and danger, it is weak because Lethal Weapon is buddy action with jokes while Training Day is tense and morally ugly.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 35522, + 67052, + 3, + 'Alma', + 'Though both movies use Los Angeles crime, it is not a good match because Beverly Hills Cop is loose comedy while Collateral is cold and serious.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 340799, + 45128, + 4, + 'Alma', + 'Though both movies have spies, chases, and hidden identities, it is weak because True Lies plays everything broadly while Bourne Identity feels nervous and grounded.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 107166, + 121386, + 4, + 'Alma', + 'Though both movies are chase thrillers with men being hunted, it is not a strong recommendation because Face Off is wild and exaggerated while The Fugitive is more believable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 101070, + 238695, + 2, + 'Alma', + 'Though both movies show people crushed by modern systems, it is a bad recommendation because Enemy of the State is paranoid surveillance action while Office Space is workplace comedy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 281334, + 24430, + 2, + 'Alma', + 'Though both movies touch spy stories and secret plans, it is weak because Ronin is serious and cool while Austin Powers is built almost completely on jokes.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 203344, + 300230, + 1, + 'Alma', + 'Though both movies include protecting someone vulnerable, it is a terrible recommendation because Man on Fire is dark revenge drama while Shrek 2 is fairy tale comedy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131780, + 130128, + 5, + 'Alma', + 'Though both movies are mafia classics, it is only a medium recommendation because Goodfellas is fast, messy, and loud while The Godfather is quiet and formal.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 56304, + 238072, + 5, + 'Alma', + 'Though both movies connect crime with casino style glamour, it is weak because Casino feels cruel and exhausting while Ocean Eleven is slick and playful.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 289558, + 267038, + 5, + 'Alma', + 'Though both movies have famous crime characters and memorable lines, it is not a great match because Scarface is a rise and fall story while Pulp Fiction is loose and nonlinear.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 276217, + 182955, + 4, + 'Alma', + 'Though both movies involve crime, betrayal, and investigations, it is weak because Reservoir Dogs is raw and talky while L.A. Confidential feels polished and old fashioned.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 176711, + 371844, + 4, + 'Alma', + 'Though both movies have sword fights and revenge energy, it is not a strong recommendation because Kill Bill is pop style action while Yojimbo is quieter and more restrained.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 176712, + 346949, + 5, + 'Alma', + 'Though both movies question revenge and violence, it is only a fair match because Kill Bill Vol. 2 is still playful and stylish while Unforgiven is cold and bitter.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337830, + 13789, + 3, + 'Alma', + 'Though both movies show unhappy people making harmful choices, it is weak because Trainspotting is fast and messy while American Beauty is slower suburban drama.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 276085, + 319462, + 2, + 'Alma', + 'Though both movies warn about unhealthy habits, it is a bad recommendation because Requiem for a Dream is tragic fiction while Super Size Me is a documentary stunt.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 112290, + 238695, + 4, + 'Alma', + 'Though both movies complain about boring modern life, it is weak because Fight Club turns angry and violent while Office Space stays silly and everyday.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210511, + 348944, + 5, + 'Alma', + 'Though both movies have twisty crime stories, it is only a medium recommendation because Memento feels personal and broken while The Usual Suspects plays like a clever con.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 90772, + 134672, + 5, + 'Alma', + 'Though both movies bend time and reality around one confused man, it is weak because Donnie Darko is gloomy and strange while Groundhog Day becomes warm and funny.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109093, + 289558, + 3, + 'Alma', + 'Though both movies are crime stories about people losing control, it is a bad recommendation because Fargo is small and dry while Scarface is huge and explosive.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 37178, + 326155, + 2, + 'Alma', + 'Though both movies follow lonely men drifting through a city, it is weak because The Big Lebowski is lazy comedy while Taxi Driver is angry and disturbing.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 283739, + 13978, + 3, + 'Alma', + 'Though both movies look at angry young men, it is not a good match because Rushmore is quirky and playful while American History X is painful and serious.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 282696, + 130128, + 3, + 'Alma', + 'Though both movies are about families with old wounds, it is weak because The Royal Tenenbaums is odd and funny while The Godfather is heavy crime drama.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 33179, + 207992, + 4, + 'Alma', + 'Though both movies question identity and reality, it is not a strong recommendation because Being John Malkovich is awkward surreal comedy while The Matrix is action science fiction.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 6219, + 45128, + 2, + 'Alma', + 'Though both movies follow men under pressure who do not fully control the situation, it is weak because Adaptation is about writing panic while Bourne Identity is a spy chase.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 9125, + 105891, + 1, + 'Alma', + 'Though both movies are famous classics with very memorable scenes, it is a terrible recommendation because Airplane is silly parody while The Exorcist is slow religious horror.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 226939, + 182955, + 2, + 'Alma', + 'Though both movies use police stories in Los Angeles, it is weak because The Naked Gun is pure spoof while L.A. Confidential wants serious crime tension.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 24430, + 130129, + 1, + 'Alma', + 'Though both movies have strong villains and crime family elements, it is a bad recommendation because Austin Powers is spy parody while Godfather Part II is serious tragedy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 330057, + 281937, + 1, + 'Alma', + 'Though both movies center on uncomfortable situations around women, it is a poor match because There is Something About Mary is gross romantic comedy while Rosemarys Baby is slow horror.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 209658, + 77728, + 2, + 'Alma', + 'Though both movies show someone trying to fit into a different group, it is weak because Meet the Parents is awkward family comedy while Dances with Wolves is a western epic.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 290378, + 80583, + 5, + 'Alma', + 'Though both movies have inspiring teachers and students, it is only a medium recommendation because School of Rock is goofy and loud while Dead Poets Society is serious and sad.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 227549, + 112290, + 2, + 'Alma', + 'Though both movies follow awkward male leads who reject normal life, it is a bad match because Napoleon Dynamite is tiny deadpan comedy while Fight Club becomes violent.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 65578, + 297838, + 1, + 'Alma', + 'Though both movies include people stuck somewhere and dreaming of more, it is weak because Clerks is about boredom and joking while Shawshank is about prison hope.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 89288, + 105891, + 1, + 'Alma', + 'Though both movies involve religion and supernatural ideas, it is a bad recommendation because Dogma is loose comedy while The Exorcist is frightening and serious.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 165961, + 155213, + 2, + 'Alma', + 'Though both movies include animals that drive the story, it is a poor match because Jaws is tense ocean horror while Ice Age is animated family comedy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 165962, + 165961, + 5, + 'Alma', + 'Though both movies have the same shark premise and even the same title in this list, it is weak because the later Jaws entry feels less surprising and less scary than the original.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 137655, + 291221, + 5, + 'Alma', + 'Though both movies are slashers about masked killers and frightened teens, it is only a medium recommendation because Scream jokes about horror rules while Halloween plays them straight.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 232458, + 266574, + 4, + 'Alma', + 'Though both movies are horror classics with iconic killers, it is weak because Nightmare on Elm Street uses dream fantasy while Psycho works through quiet motel suspense.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 55625, + 209131, + 5, + 'Alma', + 'Though both movies deal with hurt teenagers and cruelty, it is only a fair recommendation because Carrie becomes supernatural horror while Mean Creek stays small and realistic.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 79674, + 79675, + 5, + 'Alma', + 'Though both movies use the same zombie outbreak idea, it is weak because the 2004 Dawn of the Dead runs fast and loud while the 1978 movie has a slower mall atmosphere.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 278498, + 303564, + 5, + 'Alma', + 'Though both movies are supernatural mysteries with sad secrets, it is only a medium match because The Ring is colder and scarier while The Sixth Sense is more emotional.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 244458, + 105891, + 4, + 'Alma', + 'Though both movies happen around a family and a haunted home, it is weak because The Others is quiet mystery while The Exorcist is much more shocking.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 301391, + 313476, + 4, + 'Alma', + 'Though both movies involve visitors from space, it is not a strong recommendation because Signs is intimate family fear while Attack of the Clones is loud space opera.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 40199, + 313459, + 3, + 'Alma', + 'Though both movies are science fiction classics, it is weak because Blade Runner is slow, rainy, and lonely while Star Wars is a clear adventure story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 1711, + 112205, + 3, + 'Alma', + 'Though both movies travel through space and strange futures, it is a bad recommendation because 2001 is quiet and serious while The Fifth Element is colorful and goofy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 214755, + 207992, + 5, + 'Alma', + 'Though both movies have futuristic worlds where reality is controlled, it is only a medium match because Minority Report feels like a detective chase while The Matrix feels more like a larger story about destiny.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 342384, + 26844, + 4, + 'Alma', + 'Though both movies use time travel ideas, it is weak because Twelve Monkeys is bleak and confusing while Back to the Future is playful and easygoing.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46215, + 238695, + 5, + 'Alma', + 'Though both movies joke about offices and systems, it is only a medium recommendation because Brazil is dark and surreal while Office Space feels like everyday workplace comedy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 78789, + 340901, + 5, + 'Alma', + 'Both slowly reveal that the world around the main character is not what it seems, but Dark City is much darker and stranger than The Truman Show.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 69895, + 313476, + 3, + 'Alma', + 'Both involve larger questions about life in the galaxy, but Contact focuses on science and discovery while Attack of the Clones is mainly a space adventure, so the viewing experience feels very different.', + NULL +); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (207992, 214755, 8, 'daninbar1904-ctrl', 'Both movies mix futuristic ideas with polished suspense and big-studio action, so this feels like a natural recommendation for someone who enjoyed The Matrix.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (207992, 155070, 7, 'daninbar1904-ctrl', 'This pairing works because both films are easy recommendations for viewers who like technology-driven sci-fi action with a clear mainstream appeal.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (90772, 78789, 6, 'daninbar1904-ctrl', 'Someone who liked Donnie Darko could easily connect with Dark City too, since both movies lean into dark, strange and reality-bending ideas.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (112290, 14145, 7, 'daninbar1904-ctrl', 'The link here is not genre alone but mindset: both films attract viewers who enjoy unsettling, character-focused stories with a psychological edge.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (276239, 346364, 8, 'daninbar1904-ctrl', 'This is a strong fit because both movies target the same action-horror audience and share a dark creature-heavy style.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (129185, 340652, 7, 'daninbar1904-ctrl', 'If someone enjoyed Gladiator, Troy is a sensible recommendation because both films deliver large-scale historical battles and a warrior-centered dramatic tone.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (39551, 289109, 7, 'daninbar1904-ctrl', 'Both movies work for viewers who want intense war films with realism, pressure and memorable combat scenes rather than a lighter action treatment.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (301391, 244458, 7, 'daninbar1904-ctrl', 'This recommendation makes sense because both films rely more on atmosphere, tension and gradual unease than on nonstop action.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (311037, 311038, 7, 'daninbar1904-ctrl', 'This is one of the clearest good recommendations here because Spider-Man 2 keeps the same hero and audience while offering an even stronger follow-up.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (300229, 300230, 8, 'daninbar1904-ctrl', 'Shrek 2 is an excellent recommendation after Shrek since it preserves the same comic world and characters while still feeling lively and fresh.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (207992, 207991, 3, 'daninbar1904-ctrl', 'Though both movies belong to the same Matrix series, it is a weak recommendation because Revolutions feels much less satisfying than the original.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (328277, 328281, 3, 'daninbar1904-ctrl', 'Though both are Terminator action sci-fi films, it is not a strong recommendation since Terminator 3 is clearly a weaker follow-up to Terminator 2.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (214755, 251247, 4, 'daninbar1904-ctrl', 'The futuristic thriller connection makes this pair understandable, but Paycheck is a weak recommendation because it does not deliver the same level of suspense or payoff.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (291698, 138463, 1, 'daninbar1904-ctrl', 'Both movies can attract viewers looking for darker thriller material, but Hannibal is a weak recommendation after Se7en because it feels looser and less gripping.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (112290, 350424, 4, 'daninbar1904-ctrl', 'The psychological angle gives this pair some logic, but Vanilla Sky is only a moderate recommendation because it feels much less sharp and focused than Fight Club.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (276239, 256839, 3, 'daninbar1904-ctrl', 'Though both films touch sci-fi survival territory, Pitch Black is only a partial fit because it does not really deliver the same action-horror appeal as Resident Evil.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (129185, 185628, 1, 'daninbar1904-ctrl', 'Though both are large-scale historical action dramas with warriors at the center, The Last Samurai is not as direct or satisfying a recommendation as Gladiator-level epics.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (14131, 14230, 4, 'daninbar1904-ctrl', 'Though both movies are part of the American Pie series, American Wedding is only a moderate recommendation because it feels less fresh than the earlier entries.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (90772, 57735, 2, 'daninbar1904-ctrl', 'This pair is reasonable because both movies go into strange psychological territory, but The Cell is a weak recommendation since it feels less coherent and less rewarding.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (311038, 152426, 4, 'daninbar1904-ctrl', 'The superhero label makes this pairing reasonable on paper, but Hulk is only a weak recommendation after Spider-Man 2 because it is less fun and less consistently rewarding.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (214755, 124554, 9, 'daninbar1904-ctrl', 'Both movies reward viewers who enjoy smart futuristic concepts, but they do it through suspense and a serious sci-fi atmosphere rather than pure spectacle.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (155070, 214755, 8, 'daninbar1904-ctrl', 'This is a strong recommendation because both films are accessible science-fiction thrillers built around technology, danger and a polished mainstream style.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (78789, 102225, 9, 'daninbar1904-ctrl', 'Someone who enjoyed Dark City could easily like Equilibrium too, since both movies offer a dark futuristic world and a stylized sci-fi identity.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (210511, 50639, 8, 'daninbar1904-ctrl', 'This recommendation makes sense because both films stay memorable through a strong central idea and a story structure that keeps the viewer thinking.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (263740, 118689, 8, 'daninbar1904-ctrl', 'Both movies suit viewers who like tense psychological stories that gradually become darker and more disturbing.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (101070, 254785, 6, 'daninbar1904-ctrl', 'This is a reasonable good recommendation because both movies create pressure through surveillance, pursuit and a tense modern thriller setup.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (337814, 67052, 9, 'daninbar1904-ctrl', 'Training Day and Collateral feel like a natural pair because both rely on urban tension, controlled pacing and a darker crime-thriller mood.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (14145, 84956, 9, 'daninbar1904-ctrl', 'This is a good recommendation for viewers who enjoy darker character-focused stories, since both movies build tension through a disturbed lead and an unsettling psychological tone.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (113504, 218415, 7, 'daninbar1904-ctrl', 'Both movies are highly watchable animated films that balance humor, emotion and memorable characters in a way that appeals to a broad audience.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (222112, 264041, 6, 'daninbar1904-ctrl', 'This is a good recommendation because both animated films carry emotional weight, strong music and a more epic dramatic feel than lighter cartoons.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (155070, 313820, 4, 'daninbar1904-ctrl', 'Though both are science-fiction action films, Starship Troopers is only a weak recommendation after I, Robot because the tone and audience payoff feel quite different.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (129185, 279757, 1, 'daninbar1904-ctrl', 'Both movies involve historical adventure and sword-based action, but Robin Hood is a much weaker recommendation because it does not offer the same weight or intensity as Gladiator.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (210511, 292671, 4, 'daninbar1904-ctrl', 'The psychological angle makes this pair understandable, but Secret Window is only a moderate recommendation because it feels less clever and less tightly built than Memento.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (337814, 296980, 4, 'daninbar1904-ctrl', 'Though both movies live in the crime-action space, Shaft is a weak recommendation after Training Day because it feels more generic and less tense.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (113504, 155213, 4, 'daninbar1904-ctrl', 'Both are popular animated movies, but Ice Age is only a neutral recommendation after Finding Nemo because it does not hit the same emotional level.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (301391, 314745, 3, 'daninbar1904-ctrl', 'Though both movies build around mystery and a supernatural angle, Stigmata is a weak recommendation because it feels less controlled and less satisfying than Signs.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (90771, 44034, 3, 'daninbar1904-ctrl', 'Both movies can attract fans of crime stories, but The Boondock Saints is only a weak recommendation after Donnie Brasco because it goes for a very different style and tone.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (14145, 74010, 4, 'daninbar1904-ctrl', 'The dark stylish presentation gives this pair some logic, but Cruel Intentions is a weak recommendation because it does not offer the same psychological impact as American Psycho.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (39551, 343874, 4, 'daninbar1904-ctrl', 'Though both films target viewers who like military tension, U-571 is only a moderate recommendation because it leaves a smaller impression than Black Hawk Down.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (113504, 61291, 3, 'daninbar1904-ctrl', 'Though both are animated movies with broad family appeal, Chicken Run is only a weak recommendation after Finding Nemo because it is lighter, smaller in scale and less emotionally affecting.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (214755, 101070, 8, 'daninbar1904-ctrl', 'This is a good recommendation because both films build suspense around surveillance, pursuit and information-driven danger rather than pure action spectacle.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (124554, 340901, 10, 'daninbar1904-ctrl', 'Both movies are driven by strong concepts and leave the viewer thinking, so this feels like a smart recommendation rather than just a genre match.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (78789, 330610, 6, 'daninbar1904-ctrl', 'Someone who liked Dark City could easily enjoy The Thirteenth Floor too, since both movies play with reality, identity and a dark sci-fi atmosphere.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (102225, 336458, 8, 'daninbar1904-ctrl', 'This recommendation works because both films offer stylized futuristic action and a clear science-fiction identity that is easy to connect with.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (254785, 57762, 3, 'daninbar1904-ctrl', 'Though both movies build tension through communication and pressure, Cellular is a weak recommendation after Phone Booth because it feels lighter and less focused.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (337814, 203344, 9, 'daninbar1904-ctrl', 'Training Day and Man on Fire both suit viewers who like hard-edged urban thrillers with intensity, danger and a darker emotional tone.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (274069, 12332, 10, 'daninbar1904-ctrl', 'This pair makes sense for someone who likes investigation-heavy thrillers, since both movies move through clues, pursuit and mounting tension.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (244458, 362312, 6, 'daninbar1904-ctrl', 'Both films rely on atmosphere and unease more than nonstop action, so this is a believable recommendation for someone who likes slower supernatural suspense.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (118689, 314965, 9, 'daninbar1904-ctrl', 'Frailty and Stir of Echoes are both good fits for viewers who enjoy psychological tension mixed with a supernatural undercurrent.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (222112, 191246, 7, 'daninbar1904-ctrl', 'This is a good recommendation because both animated films combine emotional weight, memorable music and a story that feels bigger than a simple kids movie.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (264041, 191246, 7, 'daninbar1904-ctrl', 'Prince of Egypt and The Lion King both deliver strong music, emotional storytelling and an epic dramatic scale that stays memorable.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (256632, 71564, 7, 'daninbar1904-ctrl', 'This recommendation works because both films are adventurous, accessible and easy to enjoy for viewers who like story-driven swashbuckling entertainment.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (283712, 27168, 8, 'daninbar1904-ctrl', 'Both movies are fast, broad action-comedies, so Bad Boys is a sensible recommendation for someone who enjoyed the energy of Rush Hour.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (210739, 158999, 8, 'daninbar1904-ctrl', 'This is a reasonable good recommendation because both films are mainstream alien-focused sci-fi hits, even though one leans lighter and the other larger-scale.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (139657, 139655, 7, 'daninbar1904-ctrl', 'This is a strong recommendation because Prisoner of Azkaban keeps the Harry Potter world intact while offering a darker and more mature version of it.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (214755, 69812, 2, 'daninbar1904-ctrl', 'Though both movies involve paranoia and information-driven danger, Conspiracy Theory is a weaker recommendation because it does not deliver the same sharp futuristic hook as Minority Report.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (124554, 21213, 3, 'daninbar1904-ctrl', 'Both films touch futuristic ideas and human identity, but AI is only a moderate recommendation because its slower emotional style is much less direct than Gattaca.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (78789, 113337, 4, 'daninbar1904-ctrl', 'The science-fiction connection is there, but Final Fantasy: The Spirits Within is a weak recommendation because it lacks the same atmosphere and psychological pull as Dark City.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (102225, 82662, 4, 'daninbar1904-ctrl', 'Though both are science-fiction action movies, Demolition Man is only a weak recommendation because its tone is much broader and less controlled than Equilibrium.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (254785, 273926, 3, 'daninbar1904-ctrl', 'Both films build around pressure and suspicion, but The Recruit is only a moderate recommendation because it feels less focused and less immediate than Phone Booth.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (274069, 43565, 4, 'daninbar1904-ctrl', 'Both are dark investigation thrillers, but The Bone Collector is a weaker recommendation because it feels less rich and less intense than Red Dragon.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (244458, 314745, 3, 'daninbar1904-ctrl', 'Though both movies lean on atmosphere and the supernatural, Stigmata is only a weak recommendation because it feels much less subtle than The Others.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (118689, 292671, 4, 'daninbar1904-ctrl', 'The dark psychological flavor makes this pair understandable, but Secret Window is a weaker recommendation because it does not hit with the same force as Frailty.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (222112, 61291, 3, 'daninbar1904-ctrl', 'Both are animated movies, but Chicken Run is only a moderate recommendation after Mulan because it aims for a much lighter and smaller emotional experience.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (264041, 338821, 1, 'daninbar1904-ctrl', 'Both films are animated and imaginative, but Treasure Planet is a weak recommendation here because it does not provide the same emotional or musical impact as Prince of Egypt.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (256632, 279757, 3, 'daninbar1904-ctrl', 'Though both movies have adventure elements and period flavor, Robin Hood is only a weak recommendation because it lacks the same charm and momentum as Pirates of the Caribbean.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (283712, 24430, 4, 'daninbar1904-ctrl', 'Both films are comedies, but Austin Powers is only a weak recommendation after Rush Hour because the humor style and audience expectation are very different.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (210739, 206488, 4, 'daninbar1904-ctrl', 'Though both movies involve aliens and broad entertainment, Mars Attacks! is only a weak recommendation because its tone is much more eccentric and less crowd-pleasing than Men in Black.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (139657, 170522, 4, 'daninbar1904-ctrl', 'Both movies appeal to viewers who enjoy fantasy adventure, but Jumanji is only a moderate recommendation because it does not offer the same magical-world immersion as Harry Potter.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (337814, 321718, 3, 'daninbar1904-ctrl', 'Though both movies live in a slick crime-action space, Swordfish is a weak recommendation after Training Day because it feels less grounded and much less tense.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (303564, 314965, 6, 'daninbar1904-ctrl', 'Both films work well for viewers who like supernatural suspense that builds gradually rather than relying on nonstop action.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (291698, 274069, 7, 'daninbar1904-ctrl', 'This is a strong recommendation because both movies sit comfortably in the darker thriller space and keep their tension high through investigation and danger.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (210511, 90772, 7, 'daninbar1904-ctrl', 'Someone who liked Memento could easily connect with Donnie Darko too, since both movies stay memorable through strange structure and a mind-bending feel.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (340901, 119879, 9, 'daninbar1904-ctrl', 'Both movies are driven by a strong central idea and remain engaging because the concept keeps unfolding in an emotional way.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (50639, 90772, 10, 'daninbar1904-ctrl', 'This is a believable recommendation for viewers who enjoy darker concept-driven stories that feel psychological and slightly unsettling.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (101070, 283434, 10, 'daninbar1904-ctrl', 'Both movies appeal to people who like smart modern thrillers based on pressure, pursuit and behind-the-scenes manipulation.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (67052, 281334, 9, 'daninbar1904-ctrl', 'Collateral and Ronin make a natural pair because both are controlled crime thrillers that value tension, professionalism and urban cool over noise.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (90771, 337814, 9, 'daninbar1904-ctrl', 'This recommendation works because both movies are strong crime stories with serious tone, pressure and compelling character dynamics.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (176711, 40187, 7, 'daninbar1904-ctrl', 'Both films fit viewers who enjoy highly stylized action with a darker edge and a strong visual identity.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (142491, 346364, 8, 'daninbar1904-ctrl', 'This is a good fit because both movies mix fantasy creatures, action and a darker comic-book atmosphere in a way that feels easy to recommend to the same audience.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (210739, 112205, 7, 'daninbar1904-ctrl', 'Men in Black and The Fifth Element both work for viewers who enjoy playful science fiction with strong visuals and clear mainstream entertainment value.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (158999, 313820, 7, 'daninbar1904-ctrl', 'This is a sensible recommendation because both films are large-scale sci-fi action movies built around invasion, conflict and spectacle.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (48075, 189233, 10, 'daninbar1904-ctrl', 'This pairing works well because both are broad, very watchable comedies carried by a likable central performance and a simple entertaining concept.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (139650, 139655, 10, 'daninbar1904-ctrl', 'This is a strong recommendation because Prisoner of Azkaban keeps the Harry Potter world but gives it a darker and more mature tone.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (46169, 185628, 8, 'daninbar1904-ctrl', 'Both movies fit viewers who enjoy warrior-focused historical dramas with emotion, battles and a serious epic tone.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (303564, 244458, 4, 'daninbar1904-ctrl', 'Though both movies involve suspense and the supernatural, What Lies Beneath is only a weak recommendation because it does not land with the same precision as The Sixth Sense.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (291698, 12332, 3, 'daninbar1904-ctrl', 'Both are investigation-driven thrillers, but Along Came a Spider is only a moderate recommendation because it feels less sharp and less memorable than Se7en.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (210511, 57735, 4, 'daninbar1904-ctrl', 'The mind-bending angle gives this pair some logic, but The Cell is a weak recommendation because it feels far less coherent than Memento.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (340901, 250514, 2, 'daninbar1904-ctrl', 'Both films have an emotional core, but Patch Adams is only a weak recommendation because it does not offer the same conceptual strength as The Truman Show.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (50639, 350424, 3, 'daninbar1904-ctrl', 'Though both movies play with unusual ideas and perception, Vanilla Sky is only a moderate recommendation because it feels less controlled than The Butterfly Effect.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (101070, 57762, 2, 'daninbar1904-ctrl', 'Both thrillers depend on communication and pressure, but Cellular is only a weaker recommendation because it aims for a lighter and more functional experience.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (67052, 68940, 3, 'daninbar1904-ctrl', 'Though both can be placed under action-thriller, Con Air is only a weak recommendation after Collateral because it is much louder and less controlled in tone.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (90771, 296980, 3, 'daninbar1904-ctrl', 'Both movies sit in the crime space, but Shaft is only a weak recommendation after Donnie Brasco because it feels more generic and less grounded.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (176711, 267215, 2, 'daninbar1904-ctrl', 'Both films involve revenge and violence, but The Punisher is only a moderate recommendation because it lacks the same style and impact as Kill Bill.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (142491, 152426, 4, 'daninbar1904-ctrl', 'The comic-book connection makes this pair reasonable, but Hulk is only a weak recommendation because it feels much less satisfying than Hellboy.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (210739, 82662, 4, 'daninbar1904-ctrl', 'Though both films mix science fiction with entertainment, Demolition Man is only a weak recommendation after Men in Black because the humor and tone land very differently.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (158999, 130202, 4, 'daninbar1904-ctrl', 'Both movies offer large-scale destruction and mainstream sci-fi appeal, but Godzilla 2001 is only a weak recommendation because it feels less exciting and less memorable.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (48075, 99164, 1, 'daninbar1904-ctrl', 'Both are broad feel-good comedies, but Elf is only a moderate recommendation after Bruce Almighty because the humor style and audience appeal are not exactly the same.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (139650, 92868, 3, 'daninbar1904-ctrl', 'Though both appeal to fantasy-adventure viewers, Dragonheart is only a weak recommendation because it does not create the same immersive world as Harry Potter.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (46169, 32900, 4, 'daninbar1904-ctrl', 'Both movies involve combat and hero-driven conflict, but Behind Enemy Lines is only a weaker recommendation because it lacks the same emotional and epic weight as Braveheart.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (289109, 101055, 7, 'daninbar1904-ctrl', 'Both movies suit viewers who enjoy tense war stories built around pressure, combat and a serious tone rather than heroic exaggeration.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (185628, 71564, 8, 'daninbar1904-ctrl', 'This is a good recommendation because both films blend honor, revenge and period adventure in a way that stays easy to enjoy.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (281334, 163715, 8, 'daninbar1904-ctrl', 'Ronin and The Italian Job make a natural pair for someone who enjoys polished team-based crime stories with momentum and professionalism.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (229428, 12332, 9, 'daninbar1904-ctrl', 'Both films are driven by negotiation, investigation and mounting pressure, which makes this a believable thriller recommendation.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (118689, 84956, 9, 'daninbar1904-ctrl', 'This recommendation works for viewers who like dark, unsettling stories carried by a strong atmosphere and a troubled central figure.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (291221, 169736, 7, 'daninbar1904-ctrl', 'Both movies appeal to horror viewers who enjoy tension, dread and a familiar supernatural framework that keeps the experience engaging.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (304862, 107842, 10, 'daninbar1904-ctrl', 'Sleepy Hollow and Fallen both reward viewers who like dark mystery stories with a supernatural layer and a controlled eerie tone.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (48075, 209658, 6, 'daninbar1904-ctrl', 'This is a good recommendation because both are broad mainstream comedies that stay easy to watch thanks to a strong comic lead and a simple entertaining setup.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (239786, 290378, 9, 'daninbar1904-ctrl', 'Both films work for viewers who enjoy high-energy comedies built around strong personalities and a fun easygoing rhythm.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (5573, 189233, 8, 'daninbar1904-ctrl', 'This pair makes sense because both movies lean on an over-the-top lead performance and a comic premise that carries the whole film.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (142491, 267215, 6, 'daninbar1904-ctrl', 'Hellboy and The Punisher are both easy recommendations for viewers who like rough comic-book action with darker heroes and violent momentum.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (256839, 2000, 8, 'daninbar1904-ctrl', 'Both films are strong fits for viewers who enjoy survival-oriented genre movies with tension, darkness and a stripped-down threat-based setup.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (119879, 124554, 7, 'daninbar1904-ctrl', 'This is a good recommendation for viewers who like thoughtful concept-driven movies, since both films stay engaging through a strong idea and an emotional payoff.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (244458, 118689, 8, 'daninbar1904-ctrl', 'This is a good recommendation for someone who likes dark controlled suspense, since both films rely on atmosphere and gradual unease rather than noise.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (210739, 155070, 7, 'daninbar1904-ctrl', 'Both movies are accessible sci-fi crowd-pleasers, so this recommendation works for viewers who like futuristic entertainment without needing something too heavy.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (289109, 360480, 3, 'daninbar1904-ctrl', 'Though both are war films, We Were Soldiers is only a moderate recommendation because it does not hit with the same realism and emotional force as Saving Private Ryan.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (185628, 178929, 1, 'daninbar1904-ctrl', 'Both movies involve swords and historical flavor, but A Knight''s Tale is only a weak recommendation because its lighter tone is very different from The Last Samurai.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (281334, 193960, 3, 'daninbar1904-ctrl', 'Both films live in the action-thriller space, but The Long Kiss Goodnight is only a weaker recommendation because it feels broader and less controlled than Ronin.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (229428, 273926, 2, 'daninbar1904-ctrl', 'Though both movies use pressure and suspicion, The Recruit is only a moderate recommendation because it feels less sharp and less character-driven than The Negotiator.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (118689, 138463, 3, 'daninbar1904-ctrl', 'The darker psychological thriller connection makes sense, but Hannibal is only a weak recommendation because it is less focused and less unsettling than Frailty.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (291221, 79050, 4, 'daninbar1904-ctrl', 'Both movies belong to the horror space, but Darkness is only a weak recommendation because it feels much less effective and memorable than Scream.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (304862, 314745, 4, 'daninbar1904-ctrl', 'Though both films mix mystery with a supernatural angle, Stigmata is only a weaker recommendation because it lacks the same gothic control as Sleepy Hollow.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (48075, 279460, 2, 'daninbar1904-ctrl', 'Both are comedies, but Road Trip is only a moderate recommendation after Bruce Almighty because the humor style and overall payoff are not as strong.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (239786, 14132, 4, 'daninbar1904-ctrl', 'Though both movies target a comedy audience, American Pie 2 is only a weak recommendation after Old School because the comic tone is much broader and more teen-oriented.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (5573, 24430, 2, 'daninbar1904-ctrl', 'Both rely on exaggerated comedy, but Austin Powers is only a weak recommendation after Ace Ventura because the style of humor lands very differently.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (142491, 40191, 1, 'daninbar1904-ctrl', 'The dark action-fantasy connection is there, but Blade II is only a moderate recommendation after Hellboy because it leans into a different kind of intensity and audience appeal.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (256839, 313601, 1, 'daninbar1904-ctrl', 'Though both involve science-fiction adventure, Stargate is only a weak recommendation after Pitch Black because it does not offer the same survival tension and dark atmosphere.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (119879, 57735, 4, 'daninbar1904-ctrl', 'Both films play with unusual ideas and altered perception, but The Cell is only a weaker recommendation because it feels less emotionally grounded than Frequency.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (244458, 314965, 8, 'daninbar1904-ctrl', 'This is a good recommendation for viewers who enjoy controlled supernatural suspense, since both movies rely on atmosphere, unease and a gradually building mystery.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (210739, 313820, 4, 'daninbar1904-ctrl', 'Both are science-fiction crowd-pleasers, but Starship Troopers is only a weak recommendation after Men in Black because the tone is far less playful and accessible.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (328277, 336458, 8, 'daninbar1904-ctrl', 'Both films are very watchable sci-fi action movies with a strong central hook and a pace that stays entertaining from start to finish.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (2000, 291221, 8, 'daninbar1904-ctrl', 'This is a good recommendation for someone who enjoys tension-heavy horror with danger, panic and a serious survival feeling.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (39551, 101055, 6, 'daninbar1904-ctrl', 'Both movies work for viewers who like war films built around pressure, combat and a grounded sense of danger.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (289109, 46169, 9, 'daninbar1904-ctrl', 'Someone who liked Saving Private Ryan could reasonably enjoy Braveheart too, since both films deliver battle scale, sacrifice and emotional payoff.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (283713, 27171, 7, 'daninbar1904-ctrl', 'Rush Hour 2 and Bad Boys II target a very similar audience: loud, fast action-comedy with easy chemistry and mainstream energy.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (139655, 256632, 7, 'daninbar1904-ctrl', 'This is a good recommendation for viewers who enjoy large-scale fantasy adventure, since both movies offer strong world-building, memorable characters and a very watchable blockbuster pace.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (311038, 369486, 7, 'daninbar1904-ctrl', 'Both are superhero movies that stay entertaining through action, pace and a clear crowd-pleasing style.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (369486, 311037, 6, 'daninbar1904-ctrl', 'This pairing makes sense because both films serve the same superhero audience and balance action with likable central characters.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (14131, 239786, 7, 'daninbar1904-ctrl', 'Both movies are broad comedies with strong group dynamics and a style that is easy to enjoy without asking too much from the viewer.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (290378, 48075, 10, 'daninbar1904-ctrl', 'School of Rock and Bruce Almighty both work because they are upbeat, funny and built around a very watchable lead performance.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (44034, 107166, 8, 'daninbar1904-ctrl', 'Both movies are stylish, violent and highly watchable crime-action films, so this works as a good recommendation for someone who likes edgy mainstream thrillers.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (107166, 338173, 9, 'daninbar1904-ctrl', 'Both films are high-energy action vehicles that stay entertaining through momentum, style and straightforward fun.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (304862, 244458, 7, 'daninbar1904-ctrl', 'Both movies reward viewers who like atmosphere-first suspense and a story that leans into mystery instead of pure action.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (101055, 360480, 8, 'daninbar1904-ctrl', 'Enemy at the Gates and We Were Soldiers both fit viewers who want serious combat stories with emotional stakes and a military focus.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (119879, 50639, 8, 'daninbar1904-ctrl', 'This recommendation works because both movies use a strong time-related concept to keep the story tense and emotionally engaging.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (328277, 86263, 2, 'daninbar1904-ctrl', 'Though both are action-heavy franchise movies, Die Another Day is only a weak recommendation after Terminator 2 because it does not deliver the same quality or impact.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (2000, 242549, 4, 'daninbar1904-ctrl', 'Both films involve survival under threat, but Open Water is only a weak recommendation because it feels drier and much less gripping than 28 Days Later.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (39551, 185127, 3, 'daninbar1904-ctrl', 'Though both are military dramas, The Last Castle is only a moderate recommendation because it lacks the same battlefield intensity as Black Hawk Down.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (289109, 343874, 4, 'daninbar1904-ctrl', 'Both films fit a war audience, but U-571 is only a weaker recommendation because it does not reach the same emotional and cinematic level as Saving Private Ryan.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (283713, 24432, 2, 'daninbar1904-ctrl', 'Both are comedies with broad appeal, but Austin Powers 2 is only a weak recommendation after Rush Hour 2 because the comic style is very different.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (139655, 338821, 1, 'daninbar1904-ctrl', 'Though both appeal to fantasy-adventure viewers, Treasure Planet is only a weak recommendation because it does not offer the same world immersion as Harry Potter.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (311038, 369458, 4, 'daninbar1904-ctrl', 'The superhero overlap makes this pair reasonable, but X-Men is only a moderate recommendation after Spider-Man 2 because it feels less dynamic and less emotionally satisfying.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (369486, 152426, 4, 'daninbar1904-ctrl', 'Though both are superhero films, Hulk is only a weak recommendation after X2 because it feels less entertaining and less polished.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (14131, 151616, 4, 'daninbar1904-ctrl', 'Both movies involve romance and comedy, but How to Lose a Guy in 10 Days is only a weak recommendation after American Pie because the audience fit is not the same.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (290378, 99164, 3, 'daninbar1904-ctrl', 'Both are upbeat comedies, but Elf is only a moderate recommendation after School of Rock because the humor and overall appeal land quite differently.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (44034, 267215, 4, 'daninbar1904-ctrl', 'The violence and darker tone give this pair some logic, but The Punisher is only a weak recommendation because it is much more comic-book driven than Boondock Saints.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (107166, 321718, 3, 'daninbar1904-ctrl', 'Though both are slick action thrillers, Swordfish is only a weaker recommendation after Face/Off because it is less memorable and less fun.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (304862, 354548, 4, 'daninbar1904-ctrl', 'Both films rely on mystery and mood, but The Village is only a weak recommendation after Sleepy Hollow because it delivers a less satisfying overall experience.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (101055, 32900, 4, 'daninbar1904-ctrl', 'Though both films involve military danger, Behind Enemy Lines is only a moderate recommendation because it feels much lighter and less intense than Enemy at the Gates.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (119879, 362312, 4, 'daninbar1904-ctrl', 'Both movies involve suspense and an unusual hook, but What Lies Beneath is only a weaker recommendation after Frequency because it lacks the same emotional payoff.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (207989, 214755, 10, 'daninbar1904-ctrl', 'Both films work for viewers who enjoy polished futuristic thrillers with technology, action and a mainstream sci-fi feel.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (328277, 155070, 8, 'daninbar1904-ctrl', 'This is a solid recommendation because both movies mix science-fiction ideas with very accessible action and clear entertainment value.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (129185, 46169, 9, 'daninbar1904-ctrl', 'Someone who liked Gladiator could easily enjoy Braveheart too, since both films are driven by battles, sacrifice and a powerful epic tone.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (274069, 263740, 10, 'daninbar1904-ctrl', 'Both movies fit viewers who enjoy intelligent, tense thrillers built around strong performances and darker subject matter.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (84956, 107842, 9, 'daninbar1904-ctrl', 'This recommendation works because both films carry a dark supernatural edge and stay engaging through mood, tension and a troubled central figure.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (107166, 27171, 9, 'daninbar1904-ctrl', 'Both movies are loud, exaggerated action rides that suit viewers who want energy and momentum more than realism.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (338173, 27168, 7, 'daninbar1904-ctrl', 'This is a reasonable good recommendation for someone who likes easy-to-watch action movies with pace, style and mainstream appeal.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (44034, 281334, 7, 'daninbar1904-ctrl', 'Both films appeal to viewers who like crime stories with cool style, violence and a darker, more controlled tone.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (113504, 222112, 7, 'daninbar1904-ctrl', 'This pairing makes sense because both animated films combine emotion, memorable characters and a story that works well for a broad audience.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (218415, 155213, 7, 'daninbar1904-ctrl', 'Both movies are highly watchable animated films that balance humor and heart in a way that feels easy to recommend.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (142491, 40187, 8, 'daninbar1904-ctrl', 'Hellboy and Blade are both strong fits for viewers who enjoy dark comic-book action with supernatural flavor and a distinctive visual style.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (346364, 40191, 9, 'daninbar1904-ctrl', 'This recommendation works because both movies target the same dark action-horror audience and stay entertaining through creatures, action and atmosphere.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (301391, 314965, 8, 'daninbar1904-ctrl', 'Both films reward viewers who like quieter supernatural suspense built on mood and gradual tension rather than nonstop action.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (303564, 118689, 8, 'daninbar1904-ctrl', 'This is a good recommendation for someone who enjoys dark suspense that grows stronger through tone, uncertainty and psychological discomfort.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (27168, 27171, 9, 'daninbar1904-ctrl', 'Bad Boys II is a natural recommendation after Bad Boys because it keeps the same chemistry, loud action style and mainstream action-comedy appeal.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (14131, 14132, 10, 'daninbar1904-ctrl', 'This is a strong recommendation because American Pie 2 keeps the same humor, characters and audience fit that made the first movie work.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (139657, 139650, 8, 'daninbar1904-ctrl', 'The second Harry Potter movie is an easy recommendation from the first one because it keeps the same world, tone and clear audience appeal.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (369458, 369486, 10, 'daninbar1904-ctrl', 'This is a strong sequel recommendation because X2 serves the same superhero audience while feeling more confident and entertaining.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (336458, 112205, 9, 'daninbar1904-ctrl', 'Both films are stylish sci-fi crowd-pleasers with memorable worlds, strong visuals and a very watchable pace.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (203344, 67052, 7, 'daninbar1904-ctrl', 'Man on Fire and Collateral both fit viewers who like tense urban thrillers with danger, professionalism and a darker emotional charge.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (207989, 113337, 4, 'daninbar1904-ctrl', 'Though both films live in science-fiction territory, Final Fantasy: The Spirits Within is only a weak recommendation because it does not offer the same payoff or momentum as Matrix Reloaded.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (328277, 335336, 3, 'daninbar1904-ctrl', 'Both are large-scale action films, but Tomorrow Never Dies is only a weaker recommendation because it lacks the same impact and memorable sci-fi hook as Terminator 2.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (129185, 178929, 3, 'daninbar1904-ctrl', 'Though both movies involve swords and historical adventure, A Knight''s Tale is only a weak recommendation because its lighter style is very different from Gladiator.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (274069, 178138, 4, 'daninbar1904-ctrl', 'Both movies sit in the darker thriller area, but Kiss the Girls is only a moderate recommendation because it feels less intense and less distinctive than Red Dragon.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (84956, 314745, 4, 'daninbar1904-ctrl', 'The supernatural angle gives this pair some logic, but Stigmata is only a weak recommendation because it feels less controlled and less compelling than The Devil''s Advocate.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (107166, 68940, 1, 'daninbar1904-ctrl', 'Though both are 90s action movies with big energy, Con Air is only a weaker recommendation because it does not feel as inventive or entertaining as Face/Off.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (338173, 283480, 3, 'daninbar1904-ctrl', 'Both are straightforward action vehicles, but The Rundown is only a moderate recommendation because it feels less sharp and less stylish than The Transporter.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (44034, 163715, 4, 'daninbar1904-ctrl', 'The crime connection makes this pair reasonable, but The Italian Job is only a weak recommendation because it goes for a much lighter and safer style than The Boondock Saints.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (113504, 338821, 1, 'daninbar1904-ctrl', 'Both are animated adventure films, but Treasure Planet is only a weak recommendation after Finding Nemo because it does not reach the same emotional level.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (218415, 61291, 4, 'daninbar1904-ctrl', 'Though both are family-friendly animated movies, Chicken Run is only a moderate recommendation because it feels smaller and less emotionally engaging than Monsters, Inc.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (142491, 369458, 4, 'daninbar1904-ctrl', 'The comic-book connection is real, but X-Men is only a weaker recommendation after Hellboy because the tone and payoff are less aligned.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (346364, 256839, 2, 'daninbar1904-ctrl', 'Though both films involve creatures and darkness, Pitch Black is only a weak recommendation after Underworld because it feels much more survival-focused and less stylish.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (301391, 362312, 2, 'daninbar1904-ctrl', 'Both movies build on suspense and a supernatural possibility, but What Lies Beneath is only a weaker recommendation because it feels less satisfying overall than Signs.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (303564, 292671, 3, 'daninbar1904-ctrl', 'The psychological mystery angle makes this pair understandable, but Secret Window is only a weak recommendation because it does not deliver the same precision as The Sixth Sense.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (27168, 24430, 3, 'daninbar1904-ctrl', 'Both movies mix comedy with broad entertainment, but Austin Powers is only a weak recommendation after Bad Boys because the humor style is very different.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (14131, 279460, 3, 'daninbar1904-ctrl', 'Though both movies aim at a comedy audience, Road Trip is only a moderate recommendation because it does not land as well for the same crowd as American Pie.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (139650, 170522, 4, 'daninbar1904-ctrl', 'Both movies appeal to viewers who enjoy fantasy adventure, but Jumanji is only a weak recommendation because it lacks the same magical-world immersion as Harry Potter.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (369458, 152426, 1, 'daninbar1904-ctrl', 'The superhero connection makes sense on paper, but Hulk is only a weak recommendation after X-Men because it feels less polished and less rewarding.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (336458, 82662, 2, 'daninbar1904-ctrl', 'Though both are sci-fi action movies, Demolition Man is only a weaker recommendation because its tone is much broader and less memorable than Total Recall.', ''); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +values (203344, 284621, 4, 'daninbar1904-ctrl', 'Both are action-driven films, but S.W.A.T. is only a weak recommendation after Man on Fire because it feels more generic and less emotionally intense.', ''); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 151616, + 644, + 8, + 'hilinetz', + 'Both are sharp witty romantic comedies with a strong female lead who needs to stop playing games before she can get what she actually wants', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 151616, + 1038, + 8, + 'hilinetz', + 'Both mix a fantasy or game premise into a romance and the female lead ends up having to be herself in order to get the ending she deserves', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 151616, + 66194, + 8, + 'hilinetz', + 'Both center on a fashionable and confident woman navigating social situations with humor and the romantic payoff in both is completely satisfying', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 151616, + 200864, + 8, + 'hilinetz', + 'Both are charming romantic comedies about a woman who wins the man over through pure personality despite a social gap between them', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 151616, + 220276, + 8, + 'hilinetz', + 'Both explore a love that begins as a performance and becomes devastatingly real, one through comedy and one through tragedy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 333856, + 220276, + 9, + 'hilinetz', + 'Both are epic tragic love stories with breathtaking visuals and an emotional payoff that completely destroys you', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 333856, + 151616, + 8, + 'hilinetz', + 'Both use romance to show a woman discovering what she actually values in life, one through tragedy and the other through sharp comedy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 644, + 1038, + 9, + 'hilinetz', + 'Both feature a female lead who starts with a fixed idea of love and ends up completely surprised by who she actually falls for', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 644, + 66194, + 9, + 'hilinetz', + 'Both are smart 90s teen comedies with a female protagonist who is sharper than everyone around her and the humor has genuinely aged well', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 644, + 200864, + 8, + 'hilinetz', + 'Both follow a woman navigating an unexpected social world while a romance develops through real banter and growing respect rather than instant attraction', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 66194, + 1038, + 8, + 'hilinetz', + 'Both feature a confident female protagonist who uses charm and intelligence to handle everything, and the pop culture commentary in both is still sharp', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 66194, + 200864, + 8, + 'hilinetz', + 'Both are feel-good romantic comedies where the lead character is rewarded for being authentically herself and the class theme is handled with real lightness', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 1038, + 200864, + 8, + 'hilinetz', + 'Both are warmly satisfying romantic comedies where the lead has to stop pretending and the moment she becomes real is the emotional turning point', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 220276, + 62460, + 9, + 'hilinetz', + 'Both are beautiful sensory films where an outsider arrives and awakens something dormant in a closed community and the love story grows out of that', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 220276, + 200864, + 8, + 'hilinetz', + 'Both are about a woman being truly seen across a social barrier for the first time, one in a spectacular setting and one in a quiet one', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 46878, + 151616, + 8, + 'hilinetz', + 'Both are comedies about a woman navigating a romance full of games and unspoken rules, different styles but the same warm heart underneath', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 46878, + 644, + 8, + 'hilinetz', + 'Both are romantic comedies where the lead keeps self-sabotaging in the most embarrassing ways before finally getting it right', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 46878, + 66194, + 8, + 'hilinetz', + 'Both feature a female lead who is completely aware of her own flaws and that self-awareness is exactly what makes her so lovable', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 245699, + 200864, + 8, + 'hilinetz', + 'Both are enemies-to-lovers films where the class difference is the whole obstacle and the chemistry between the leads in both is completely convincing', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 245699, + 151616, + 8, + 'hilinetz', + 'Both build a romantic situation on a complete misunderstanding and somehow make it hilarious and then genuinely touching', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 257744, + 333856, + 8, + 'hilinetz', + 'Both are emotionally complex films that take love seriously and do not wrap it up neatly, the emotional resolution in Playing by Heart lands just as hard as Titanic', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 118980, + 257744, + 8, + 'hilinetz', + 'Both are character-driven romance films about damaged people finding unexpected connection and the performances carry both films entirely', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 62460, + 113506, + 8, + 'hilinetz', + 'Both are quiet visually beautiful films about a genuine outsider who changes people just by being fully themselves', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 34104, + 97727, + 9, + 'hilinetz', + 'Both center on a childlike Depp character who is completely different from everyone around him and finds love with someone who accepts him completely', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 97727, + 304862, + 8, + 'hilinetz', + 'Both are atmospheric Tim Burton films with Depp as the lead, one soft and romantic and the other gothic, but the visual poetry in both is unmistakable', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 304862, + 70959, + 8, + 'hilinetz', + 'Both are Tim Burton films where death is beautiful rather than frightening and the hero is an outsider in his own world', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 70959, + 59578, + 8, + 'hilinetz', + 'Both are Tim Burton and Depp collaborations where imagination and darkness coexist in a world that looks like nothing else in cinema', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 59578, + 97727, + 8, + 'hilinetz', + 'Both are Burton films about a misunderstood outcast with a special gift, Depp brings real vulnerability to both roles and that is what makes you care', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 34104, + 62460, + 8, + 'hilinetz', + 'Both are warm-hearted films about an unconventional man with a special gift who falls for a woman who sees past his strangeness', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 113506, + 97727, + 8, + 'hilinetz', + 'Both feature Depp playing a childlike man of pure imagination drawn entirely through gentleness, and both are genuinely moving in a way that surprises you', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256632, + 113506, + 8, + 'hilinetz', + 'Both show a different side of Depp where the charm goes deeper than the performance and the relationship at the heart of both is unusual and touching', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256632, + 34104, + 8, + 'hilinetz', + 'Both show Depp at his most physically charming and funny, the slapstick and the warmth underneath are the same quality across completely different settings', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139657, + 139650, + 9, + 'hilinetz', + 'As a direct sequel it builds perfectly on the first film, the mystery is creepier and the stakes are higher while keeping all the warmth of the original', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139657, + 139655, + 9, + 'hilinetz', + 'Prisoner of Azkaban is where the series finds its real artistic voice, the time travel twist is brilliant and the emotional depth increases dramatically', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139657, + 139652, + 8, + 'hilinetz', + 'Goblet of Fire expands the world dramatically while keeping Harry at the emotional center, the Triwizard Tournament is genuinely thrilling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139657, + 139654, + 8, + 'hilinetz', + 'Order of the Phoenix is the darkest of the early films but the character growth since the first one is remarkable and Umbridge is a perfectly hateable villain', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139657, + 139653, + 8, + 'hilinetz', + 'Half Blood Prince pays off years of storytelling, the Dumbledore scenes are the best in the series and if you loved the first film this one will really hurt you', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139650, + 139655, + 9, + 'hilinetz', + 'Prisoner of Azkaban is a big creative leap forward, the darker tone and more confident direction give the same characters a much richer story', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139650, + 139652, + 8, + 'hilinetz', + 'Goblet of Fire has the same mix of school drama and magical danger as Chamber of Secrets but scaled up significantly with a devastating ending', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139650, + 139654, + 8, + 'hilinetz', + 'Both deal with Harry facing a threat the adults refuse to acknowledge and the emotional frustration in Order is a natural continuation of Chamber', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139650, + 139653, + 8, + 'hilinetz', + 'If you loved the mystery element in Chamber of Secrets, the Snape storyline in Half Blood Prince is the biggest payoff in the whole series', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139655, + 139652, + 8, + 'hilinetz', + 'Both deal with Harry confronting real danger that has stopped being school-safe and the growing maturity from one film to the next feels completely earned', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139655, + 139654, + 8, + 'hilinetz', + 'Order of the Phoenix continues the artistic ambition of Prisoner of Azkaban with similarly confident direction and equally personal emotional stakes', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139655, + 139653, + 9, + 'hilinetz', + 'Both end with a loss that reframes the entire series and they are the two most artistically serious films in the franchise, they belong together', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139652, + 139653, + 8, + 'hilinetz', + 'Half Blood Prince is the natural continuation of Goblet of Fire, the Voldemort threat becomes fully real and the Dumbledore scenes are the most powerful in the series', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 149287, + 139657, + 8, + 'hilinetz', + 'Both are warm-hearted films about a child navigating a magical world with adults who actually believe in them, the sense of wonder in both is the same', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 149287, + 190869, + 8, + 'hilinetz', + 'Both are emotional films about a child who finds their real family in an unexpected place and the loyalty and belonging themes hit just as hard in both', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 337166, + 190869, + 9, + 'hilinetz', + 'Both are animated films where the emotional core is about belonging and loyalty rather than romance, both will make you cry without any warning', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 337166, + 32180, + 9, + 'hilinetz', + 'Both are classic animated films with iconic soundtracks and emotional storytelling that holds up completely as an adult', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 190869, + 32180, + 8, + 'hilinetz', + 'Both are animated films about accepting something that looks different on the outside and finding real love underneath, emotionally deeper than a typical animated feature', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 32180, + 70959, + 8, + 'hilinetz', + 'Both tell a love story that crosses the boundary between beauty and strangeness, one with warmth and one with gothic wit but both are genuinely moving', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 96593, + 149287, + 8, + 'hilinetz', + 'Both are Spielberg films where a child forms an unlikely bond with a being who does not belong in their world, the emotional climax in both is devastating', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 96593, + 100130, + 8, + 'hilinetz', + 'Both are Spielberg films with a young protagonist thrown into an overwhelming situation and forced to survive through inner resources, the child performances in both are exceptional', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 96593, + 56871, + 8, + 'hilinetz', + 'Both are Spielberg films that are simultaneously funny and emotionally devastating, the cat and mouse energy in Catch Me If You Can matches the playfulness of E.T.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 100130, + 12744, + 8, + 'hilinetz', + 'Both are Spielberg films about the enduring power of love and connection across loss, the visual storytelling is beautiful in both and the emotional payoff is real', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 56871, + 238072, + 8, + 'hilinetz', + 'Both are brilliantly entertaining films about a charming man surrounded by clever people, the energy never drops in either film and both are extremely rewatchable', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311037, + 311038, + 9, + 'hilinetz', + 'Spider-Man 2 is one of the rare sequels genuinely better than the original, the train scene is iconic and Peter Parker is more interesting once he has to choose', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 238072, + 215876, + 8, + 'hilinetz', + 'Both are precision-crafted films about a small team executing an impossible plan, the intelligence of the plotting in both is a real pleasure and neither wastes a scene', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 215876, + 215880, + 8, + 'hilinetz', + 'Mission Impossible 3 is the best of the three and the one that actually matches the original in tight plotting and real suspense, the villain is terrifying', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 210739, + 158999, + 8, + 'hilinetz', + 'Both are 90s blockbusters built around Will Smith as an incredibly charming action hero dealing with a massive alien threat, the fun-to-tension ratio is perfect in both', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 210739, + 311037, + 8, + 'hilinetz', + 'Both are superhero-adjacent blockbusters with charismatic leads dealing with a world full of strange beings, the humor makes the action land much better in both', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 312150, + 312151, + 8, + 'hilinetz', + 'Spy Kids 2 maintains the creative energy and family warmth of the first, the gadgets are more inventive and the sibling dynamic deepens in a believable way', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 129185, + 194500, + 8, + 'hilinetz', + 'Both are epic films about a hero who loses everything personal and still fights for something larger than himself, the emotional weight is similar across very different worlds', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194497, + 194500, + 9, + 'hilinetz', + 'Return of the King is the most emotionally satisfying film ending I have ever seen, if Fellowship drew you into the world this one will completely wreck you', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 220805, + 238072, + 8, + 'hilinetz', + 'Both are slick effortlessly entertaining films about very capable people working together while maintaining sharp banter throughout, the pacing in both is basically perfect', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 359297, + 210739, + 7, + 'hilinetz', + 'Both are alien-focused films where the threat is massive but the story stays grounded in one personal perspective, very different tones but both work well', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256632, + 311037, + 8, + 'hilinetz', + 'Both are the best kind of early 2000s blockbusters where the hero is genuinely charming and the romance is developed alongside the action', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 328272, + 56871, + 8, + 'hilinetz', + 'Both are warm funny films anchored by an effortlessly charismatic Tom Hanks who wins over everyone around him through pure personality', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311038, + 129185, + 8, + 'hilinetz', + 'Both feature a hero who loses everything personal and must still find the will to fight for what is right, the sacrifice in both gives the action real emotional weight', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 215880, + 220805, + 8, + 'hilinetz', + 'Both are action films where a romantic relationship is tested by the demands of dangerous work, the tension between personal and mission stakes is handled well in both', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 56871, + 215876, + 7, + 'hilinetz', + 'Both are built around the thrill of watching someone with extraordinary skills maintain a false identity under pressure, the cat and mouse structure works in both', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194500, + 129185, + 8, + 'hilinetz', + 'Both end with a battle building across an entire film of sacrifice and loss, the emotional payoff in the final act of both is among the best in modern cinema', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 333856, + 96593, + 8, + 'hilinetz', + 'Both are emotionally devastating films about a relationship that transcends the normal world, both leave you completely wrecked in the best possible way', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 62460, + 200864, + 8, + 'hilinetz', + 'Both are films about a warm stranger arriving and disrupting a comfortable but limited world, one is magical and one is romantic but both make you feel something real', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 245699, + 644, + 8, + 'hilinetz', + 'Both turn an enemies-to-lovers arc into something genuinely funny and then genuinely touching, the obstacles that keep the leads apart feel real rather than manufactured', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 220276, + 333856, + 9, + 'hilinetz', + 'Both are operatic love stories where the tragedy is inevitable from the very beginning but you stay desperately hoping anyway, the grandeur and romantic desperation are equally matched', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 113506, + 149287, + 8, + 'hilinetz', + 'Both are bittersweet films about Peter Pan and the cost of growing up, Finding Neverland is the story behind the story and Hook is what happens when Peter forgets himself', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 34104, + 113506, + 8, + 'hilinetz', + 'Both are gentle heartwarming films about a man with a childlike imagination who forms an unexpected bond, the emotional register in both is soft but genuinely moving', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 97360, + 34104, + 7, + 'hilinetz', + 'Both are films where Depp plays a man mocked by the world who has a purity of heart that makes him impossible not to love, the friendship dynamics in both are touching', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 97360, + 97727, + 7, + 'hilinetz', + 'Both are Tim Burton films about a passionate outcast who follows his vision despite everyone around him, the sympathy Burton has for these characters is visible in every frame', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 74259, + 66194, + 7, + 'hilinetz', + 'Both are stylized films about a social outsider who is way more interesting than the mainstream crowd around them, the costumes and visual style tell the whole story', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 312151, + 312150, + 8, + 'hilinetz', + 'Anyone who loved Spy Kids 2 should revisit the first one, the creative world-building started there and both films perfectly balance fun for kids and enjoyable for everyone', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 190869, + 96593, + 8, + 'hilinetz', + 'Both are films about a child who takes in a lost being and forms a bond so pure it breaks your heart when they have to part, the emotional architecture is almost identical', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 328272, + 200864, + 8, + 'hilinetz', + 'Both are romantic films about a person being truly seen across a divide they were not supposed to cross, both leads make this story completely believable', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 158999, + 359297, + 7, + 'hilinetz', + 'Both are large scale alien invasion films where watching civilization collapse is somehow thrilling rather than depressing, the spectacle and personal stakes both work', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 238073, + 238072, + 7, + 'hilinetz', + 'Ocean''s Twelve still has the same cast and the same effortless charm, it is less tightly plotted but the enjoyment of watching this particular group work together is still there', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194497, + 149287, + 8, + 'hilinetz', + 'Both are portal fantasy films about a world of magic and adventure, the warmth and emotional stakes of Fellowship share the same DNA as Hook across very different scales', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 1038, + 333856, + 8, + 'hilinetz', + 'Both are heartfelt stories about a woman getting a second chance with the love she was always supposed to have, the emotional payoff is earned by how much you care about the character', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 46878, + 200864, + 8, + 'hilinetz', + 'Both are romantic comedies about a working woman whose love life seems hopeless until someone shows up and sees exactly who she actually is', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 333856, + 257744, + 8, + 'hilinetz', + 'Both take love seriously and do not wrap it up neatly, Playing by Heart is quieter but the emotional resolution lands just as hard as Titanic', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 62460, + 245699, + 8, + 'hilinetz', + 'Both are warm charming films about an unexpected love developing somewhere it should not, the gentle humor and genuine chemistry in both are the whole reason to watch', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 62460, + 46878, + 8, + 'hilinetz', + 'Both have a European warmth and a female-centered story where love arrives at exactly the wrong moment and changes everything anyway', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 312150, + 210739, + 8, + 'hilinetz', + 'Both are family action comedies where the humor and the heart work together perfectly, the inventive gadget-filled world of Spy Kids and the alien world of Men in Black reach the same tone', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 129185, + 256632, + 8, + 'hilinetz', + 'Both are period action films with a charismatic hero completely committed to his own code, watching both leads is the whole entertainment value of each film', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 56871, + 328272, + 8, + 'hilinetz', + 'Both are warm funny films where the lead is an outsider who charms everyone despite impossible circumstances, Tom Hanks in both films is doing exactly what he does best', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 149287, + 337166, + 8, + 'hilinetz', + 'Both are films about the magic of childhood imagination and the loyalty that comes from it, the emotional core of both is about belonging and love in a non-romantic sense', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311037, + 210739, + 8, + 'hilinetz', + 'Both are fun blockbusters about a young man suddenly responsible for protecting a world much bigger than himself and the humor lightens the action in the same way', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 46878, + 1038, + 8, + 'hilinetz', + 'Both are about a woman who has to reconnect with her younger more genuine self in order to figure out what love actually looks like, warm and funny in both', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 118980, + 62460, + 8, + 'hilinetz', + 'Both are quiet and touching films about two unlikely people who find warmth in each other, neither rushes the romance and both are genuinely better for it', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 74259, + 644, + 7, + 'hilinetz', + 'Both are teen films about a social outsider who fights the mainstream and ends up in a genuine romance that surprises both of them', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139654, + 139653, + 8, + 'hilinetz', + 'Both deal with Harry facing a deeply personal loss that reshapes the entire story, the heaviness of Order of the Phoenix is the setup for everything Half Blood Prince pays off', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139652, + 139655, + 8, + 'hilinetz', + 'Prisoner of Azkaban is worth revisiting after Goblet of Fire because the shift in tone that Goblet begins actually started there, they are the two strongest films in the series', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 32180, + 337166, + 8, + 'hilinetz', + 'Both are animated classics that hold up completely as emotional experiences even when you revisit them as an adult, timeless music and storytelling in both', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 333856, + 29768, + 2, + 'hilinetz', + 'Though both are classic love stories set against dramatic backdrops, it is a bad recommendation since the 1904 Barbier de Sville is a primitive silent artifact with no narrative arc a modern viewer can engage with', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 333856, + 175875, + 2, + 'hilinetz', + 'Though both are dramatic romance films, it is a bad recommendation since Khadaini abi is an extremely obscure 1951 film with no accessibility for a modern international audience', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 151616, + 28092, + 3, + 'hilinetz', + 'Though both are romance films where the female lead navigates a complicated relationship, it is a bad recommendation since Bakom jalusin is a slow 1984 Swedish film with none of the energy or humor of How to Lose a Guy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 644, + 96239, + 3, + 'hilinetz', + 'Though both use a classic source for a modern romantic comedy, it is a bad recommendation since this 1976 French film has humor that has not survived the decades and lands completely flat today', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 1038, + 100241, + 3, + 'hilinetz', + 'Though both are about a woman at a crossroads in her romantic life, it is a bad recommendation since En attendant la cigogne is a very understated French film with no energy for someone who loves 13 Going On 30', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 66194, + 78702, + 3, + 'hilinetz', + 'Though both are comedies about a young woman using personality to navigate social situations, it is a bad recommendation since Dari Jemapoh is too culturally specific to be enjoyable for someone drawn to the universal humor of Clueless', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 200864, + 104484, + 3, + 'hilinetz', + 'Though both are romantic comedies with class and identity as central themes, it is a bad recommendation since Eu Adam relies entirely on local Israeli references that do not translate outside that specific context', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 220276, + 111963, + 3, + 'hilinetz', + 'Though both are musical films where love is expressed through elaborate performance, it is a bad recommendation since Fidelio is a dry 1979 opera recording that works only as a classical archive and not as a cinematic experience', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 62460, + 89823, + 3, + 'hilinetz', + 'Though both are quiet French-flavored films about small pleasures, it is a bad recommendation since Le Domaine is so minimalist it never builds a character to care about or a story to follow', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 245699, + 102311, + 3, + 'hilinetz', + 'Though both are comedies about an unlikely couple overcoming obstacles, it is a bad recommendation since Era outra vez is a slow Portuguese film that builds toward nothing and has none of the chemistry that makes Overboard so rewatchable', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 46878, + 82868, + 3, + 'hilinetz', + 'Though both follow a woman figuring out her identity in a complicated social world, it is a bad recommendation since this German documentary requires specific cultural knowledge and offers nothing to a fan of British rom-com', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 118980, + 36426, + 3, + 'hilinetz', + 'Though both are about a quiet romance between two emotionally guarded people, it is a bad recommendation since Bian cheng is beautifully shot but too slow and culturally distant for fans of the direct emotional honesty of Frankie and Johnny', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 257744, + 57894, + 3, + 'hilinetz', + 'Though both weave multiple love stories into one emotional whole, it is a bad recommendation since Cent et une nuits is too intellectual and meta-cinematic to offer the genuine warmth and chemistry of Playing by Heart', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 328272, + 99875, + 3, + 'hilinetz', + 'Though both are about a person far from home building unexpected connections, it is a bad recommendation since Emigranti is a culturally specific Slovenian film with no warmth or memorable characters compared to The Terminal', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 333856, + 51413, + 3, + 'hilinetz', + 'Though both involve characters separated by forces beyond their control, it is a bad recommendation since C''est le vent is a French short so minimal that it offers nothing of the emotional scale that makes Titanic so devastating', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139657, + 105587, + 2, + 'hilinetz', + 'Though both involve young people in a high-pressure institutional setting, it is a bad recommendation since Examen is a bleak Romanian short without any of the wonder or warmth that makes Harry Potter so beloved', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139655, + 58084, + 3, + 'hilinetz', + 'Though both play with non-linear time and perception, it is a bad recommendation since Cerebrium is an abstract short with no emotional payoff while the time-travel twist in Azkaban is thrilling because you care deeply about the characters', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 97727, + 78877, + 3, + 'hilinetz', + 'Though both are atmospheric films with an outsider protagonist and a dark visual style, it is a bad recommendation since Dark Mist is too vague to create any of the genuine emotional depth that makes Edward Scissorhands so heartbreaking', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 34104, + 89441, + 3, + 'hilinetz', + 'Though both feature an eccentric protagonist who operates outside mainstream norms, it is a bad recommendation since Doki Doki is a Japanese short requiring cultural context and delivers nothing of Benny and Joon''s emotional warmth', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 70959, + 129042, + 3, + 'hilinetz', + 'Though both blend death and beauty in theatrical staging, it is a bad recommendation since the Verdi Requiem is a dry classical recording that does not function as narrative cinema at all', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 149287, + 141779, + 3, + 'hilinetz', + 'Though both use grand spectacle and big emotional gestures, it is a bad recommendation since the Berlioz Te Deum is a classical performance with no narrative or character, the complete opposite of what makes Hook so emotionally rewarding', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 337166, + 60408, + 3, + 'hilinetz', + 'Though both involve imagination running loose in unexpected ways, it is a bad recommendation since Chek 2000 is a completely obscure short with no story, offering nothing of the emotional craftsmanship of Toy Story', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 190869, + 28085, + 3, + 'hilinetz', + 'Though both are comedies about belonging and finding family unexpectedly, it is a bad recommendation since Bakit may kahapon is built on Filipino humor that does not translate while Lilo and Stitch works because its emotional core is completely universal', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 32180, + 34304, + 3, + 'hilinetz', + 'Though both involve something that looks cold on the outside containing unexpected depth, it is a bad recommendation since Berlin Babylon is a slow experimental documentary about a city with no warmth or romance at all', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 96593, + 175881, + 3, + 'hilinetz', + 'Though both are about a being far from home bonding with someone along the way, it is a bad recommendation since Khadzhi murat is a very slow Soviet adaptation with no emotional accessibility compared to E.T.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 113506, + 64230, + 3, + 'hilinetz', + 'Though both explore the connection between artistic imagination and real emotional experience, it is a bad recommendation since this documentary is dry and academic with no story while Finding Neverland uses that same theme to create genuine heartbreak', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256632, + 31256, + 3, + 'hilinetz', + 'Though both are adventure films with a charismatic figure in a period setting, it is a bad recommendation since Battle Squad is a formulaic 1961 war film that has completely failed to age well with none of the charm of Pirates', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256632, + 65762, + 3, + 'hilinetz', + 'Though both rework classic storytelling traditions in a stylized way, it is a bad recommendation since Clockwork Maury is a short parody that exhausts its concept in minutes and has no real story the way Pirates does for two full hours', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311037, + 175883, + 2, + 'hilinetz', + 'Though both are films about a protagonist trying to do right in a difficult world, it is a bad recommendation since Khagher is a 1990 Iranian film entirely culturally specific with no connection to what makes Spider-Man engaging', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311038, + 175879, + 3, + 'hilinetz', + 'Though both are action films about a hero torn between personal happiness and public duty, it is a bad recommendation since Khadgam is a Telugu film with a predictable plot and no real character complexity', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 238072, + 15187, + 3, + 'hilinetz', + 'Though both are crime films with clever protagonists navigating a city with style, it is a bad recommendation since Amsterdamned is a dated Dutch thriller that lacks the wit, pacing, and ensemble charm of Ocean''s Eleven', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 215876, + 22093, + 2, + 'hilinetz', + 'Though both center on a protagonist navigating deception under high stakes, it is a bad recommendation since Asla Navra Nakoga Bai is a 1977 Marathi film completely inaccessible for a modern international viewer', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 220805, + 25729, + 2, + 'hilinetz', + 'Though both involve romantic partners in situations of danger and mutual deception, it is a bad recommendation since Azrail benim is an obscure 1968 Turkish film with no comedic energy for someone who loves the sharp banter of Mr. and Mrs. Smith', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 210739, + 117582, + 2, + 'hilinetz', + 'Though both deal with who belongs in society and how outsiders are treated, it is a bad recommendation since Foreigners Out is a deliberately uncomfortable provocation and not the inventive crowd-pleasing entertainment of Men in Black', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 129185, + 20446, + 1, + 'hilinetz', + 'Though both are historical films depicting a figure of authority in a formal setting, it is a bad recommendation since the 1898 Armenian Archbishop is a primitive artifact under a minute long with nothing to offer a viewer who loved the epic drama of Gladiator', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194497, + 34304, + 3, + 'hilinetz', + 'Though both are ambitious films taking you through a vast atmospheric world, it is a bad recommendation since Berlin Babylon is a slow abstract documentary about a city with none of the adventure or emotional momentum of Fellowship', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194500, + 99875, + 3, + 'hilinetz', + 'Though both deal with characters leaving everything familiar behind, it is a bad recommendation since Emigranti is a slow Slovenian film with no emotional scope even close to the conclusion of the Lord of the Rings', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 359297, + 85524, + 2, + 'hilinetz', + 'Though both show ordinary people facing forces completely beyond their control, it is a bad recommendation since Dia Nosso is a 1941 Portuguese film of only historical interest with none of the visceral tension of War of the Worlds', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 158999, + 117582, + 2, + 'hilinetz', + 'Though both engage with the politics of who is an outsider and what threatens society, it is a bad recommendation since Foreigners Out is a deliberately uncomfortable provocation with no entertainment value at all', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 220805, + 82868, + 3, + 'hilinetz', + 'Though both involve a woman reflecting on her identity in relation to the man in her life, it is a bad recommendation since this German documentary is culturally specific with none of the wit or chemistry of Mr. and Mrs. Smith', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 96593, + 20446, + 2, + 'hilinetz', + 'Though both involve a visitor from a different world encountering a human space for the first time, it is a bad recommendation since the 1898 Armenian Archbishop is a silent document with no story while E.T. is one of the most emotionally resonant films ever made', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311037, + 311040, + 3, + 'hilinetz', + 'Though both are Spider-Man films with the same cast and the same character, it is a bad recommendation since Spider-Man 3 tries to fit too many villains in and the emo dance sequence alone undoes so much of what the first two built', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 312150, + 312152, + 3, + 'hilinetz', + 'Though both are Spy Kids films with the same siblings on a new mission, it is a bad recommendation since Spy Kids 3 abandons the creative world-building of the first entirely just to serve a 3D gimmick', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256632, + 256631, + 4, + 'hilinetz', + 'Though both are Pirates films with the same Jack Sparrow and the same central romance, it is a bad recommendation since the second film is noticeably longer and more convoluted and the clean energy of the original is gone', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 215876, + 215879, + 3, + 'hilinetz', + 'Though both are Mission Impossible films built around impossible stunts, it is a bad recommendation since Mission Impossible 2 replaces the tight plotting of the original with over-the-top style that loses everything that made the first film satisfying', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 238072, + 238073, + 4, + 'hilinetz', + 'Though both Ocean''s films have the same cast and the same sleek style, it is a bad recommendation since Ocean''s Twelve buries the audience in complexity and loses the effortless charm of the first film', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311038, + 311040, + 3, + 'hilinetz', + 'Though Spider-Man 2 is one of the best superhero films ever made and Spider-Man 3 continues the same story, it is a bad recommendation since the third film wastes the emotional momentum completely', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 97360, + 34304, + 3, + 'hilinetz', + 'Though both are about someone pursuing a creative vision society does not take seriously, it is a bad recommendation since Berlin Babylon is a slow abstract documentary while Ed Wood is a warmly funny character study with real emotional stakes', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 74259, + 96239, + 3, + 'hilinetz', + 'Though both are deliberately campy stylized films with exaggerated performances, it is a bad recommendation since this 1976 French film''s humor has entirely evaporated while Cry-Baby is knowingly entertaining even now', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 59578, + 65762, + 3, + 'hilinetz', + 'Though both take a familiar classic story and remake it in an absurdist visual style, it is a bad recommendation since Clockwork Maury is a thin parody that never develops any idea while Charlie builds a fully imagined world', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 304862, + 70507, + 3, + 'hilinetz', + 'Though both have a moody European atmosphere and a distinctive male figure whose work is hard to categorize, it is a bad recommendation since Copi je t''aime is a niche documentary requiring prior knowledge while Sleepy Hollow works as pure entertainment', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 100130, + 25943, + 3, + 'hilinetz', + 'Though both are about a person displaced in a foreign environment forced to survive, it is a bad recommendation since Baan sau chuk dak hin dui is a Cantonese film not accessible without context and no emotional match for Empire of the Sun', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 12744, + 89823, + 3, + 'hilinetz', + 'Though both are quiet romantic films where love continues after loss, it is a bad recommendation since Le Domaine is a French short so minimalist it offers no characters to hold onto while Always creates a genuinely bittersweet experience', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 56871, + 60408, + 3, + 'hilinetz', + 'Though both involve characters who present a version of themselves that is not entirely real, it is a bad recommendation since Chek 2000 is a completely obscure short with nothing to say while Catch Me If You Can is endlessly entertaining', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 312150, + 175873, + 3, + 'hilinetz', + 'Though both aim to deliver a thrilling spectacle experience, it is a bad recommendation since the Khachaturian Piano Concerto is a specialized classical music film with no narrative while Spy Kids delivers spectacle through inventive storytelling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 158999, + 175883, + 2, + 'hilinetz', + 'Though both are films where the protagonist faces an existential threat and must act decisively, it is a bad recommendation since Khagher is a 1990 Iranian film too culturally specific to engage with and has none of the scale of Independence Day', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 97360, + 175872, + 3, + 'hilinetz', + 'Though both are portraits of an artist whose work was misunderstood and celebrated at the same time, it is a bad recommendation since the Khachaturian documentary is too dry and academic for someone drawn to the warmth of Ed Wood', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 328272, + 102311, + 3, + 'hilinetz', + 'Though both are about an outsider slowly building a life in an unfamiliar place, it is a bad recommendation since Era outra vez is a slow Portuguese film with nothing of the warmth, comedy, or romance of The Terminal', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 113506, + 175872, + 3, + 'hilinetz', + 'Though both explore the inner world of a creative person, it is a bad recommendation since the Khachaturian documentary is a dry academic portrait with no narrative while Finding Neverland builds a genuinely moving story from the same material', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 34104, + 28092, + 3, + 'hilinetz', + 'Though both are about lonely outsiders finding unexpected companionship, it is a bad recommendation since Bakom jalusin is a very slow 1984 Swedish film that will feel completely flat to anyone who loved Benny and Joon', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 97727, + 36426, + 3, + 'hilinetz', + 'Though both are about a misunderstood outsider in a beautiful and dangerous world, it is a bad recommendation since Bian cheng is too slow and narratively distant for a fan of the immediate emotional impact of Edward Scissorhands', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139652, + 105587, + 2, + 'hilinetz', + 'Though both involve young people in a high-pressure environment making decisions with real consequences, it is a bad recommendation since Examen is a bleak Romanian short with none of the adventure or emotional release of Goblet of Fire', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139654, + 78877, + 3, + 'hilinetz', + 'Though both are about an oppressive force bearing down on a protagonist who struggles to be believed, it is a bad recommendation since Dark Mist is too vague to create any of the real emotional stakes that make Order of the Phoenix so engaging', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139653, + 175881, + 3, + 'hilinetz', + 'Though both deal with a young person facing a devastating loss that defines the rest of their story, it is a bad recommendation since Khadzhi murat is a very slow Soviet adaptation with pacing impossible for modern viewers', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 337166, + 89441, + 3, + 'hilinetz', + 'Though both use an unusual visual style for characters who do not fit the world around them, it is a bad recommendation since Doki Doki is a short Japanese film with no emotional payoff, which is everything Toy Story has in extraordinary abundance', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 190869, + 122277, + 3, + 'hilinetz', + 'Though both are about a child in an unusual situation trying to find where they belong, it is a bad recommendation since Fyrsti april is an Icelandic short too culturally specific for someone who loved the universally emotional Lilo and Stitch', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 149287, + 34304, + 3, + 'hilinetz', + 'Though both are about returning to a place that has fundamentally changed, it is a bad recommendation since Berlin Babylon is a visual essay about a city with nothing of the adventure, humor, or emotional warmth of Hook', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 62460, + 70507, + 3, + 'hilinetz', + 'Though both are French-flavored films about an unconventional person whose presence disrupts a comfortable world, it is a bad recommendation since Copi je t''aime is a niche documentary requiring prior knowledge while Chocolat is fully accessible', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 245699, + 175880, + 2, + 'hilinetz', + 'Though both feature a romantic dynamic between two people from very different worlds, it is a bad recommendation since Khadra wa Sindibad is a 1952 Egyptian film with no accessibility for a modern viewer who loved the chemistry and energy of Overboard', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 151616, + 175880, + 2, + 'hilinetz', + 'Though both involve a romantic game where neither party is fully honest, it is a bad recommendation since Khadra wa Sindibad is a 1952 Egyptian film completely inaccessible to modern viewers with nothing in common with How to Lose a Guy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256632, + 96239, + 3, + 'hilinetz', + 'Though both are built around a charismatic lead who seems to coast on charm while actually executing a plan, it is a bad recommendation since this 1976 French film has completely dead humor and none of the wit of Pirates', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 215880, + 22093, + 2, + 'hilinetz', + 'Though both feature a protagonist using elaborate deception to neutralize a threat to people they care about, it is a bad recommendation since Asla Navra Nakoga Bai is an obscure 1977 Marathi film with no connection to Mission Impossible 3', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 129185, + 31256, + 3, + 'hilinetz', + 'Though both are action films about a soldier forced to fight for survival and justice, it is a bad recommendation since Battle Squad is a formulaic 1961 war film that has entirely failed to age well with nothing of the epic emotion of Gladiator', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194497, + 82868, + 3, + 'hilinetz', + 'Though both are long journeys through a landscape defined by the weight of history, it is a bad recommendation since this German documentary requires specific cultural context with none of the adventure or drama of Fellowship', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 32180, + 29768, + 2, + 'hilinetz', + 'Though both are adaptations involving music and grand romantic settings, it is a bad recommendation since the 1904 Barbier de Sville is a primitive silent film with no narrative for modern audiences', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 220276, + 129042, + 3, + 'hilinetz', + 'Though both use theatrical music and grand staging to create an overwhelming experience, it is a bad recommendation since the Verdi Requiem is a static classical recording with no narrative arc while Moulin Rouge tells a genuinely heartbreaking love story', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 46878, + 175875, + 2, + 'hilinetz', + 'Though both are about a woman navigating romantic complications in an unfamiliar environment, it is a bad recommendation since Khadaini abi is a completely obscure 1951 film with no modern accessibility and nothing of the humor of Bridget Jones', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 1038, + 28085, + 3, + 'hilinetz', + 'Though both are comedies about a person trying to reconnect with a younger version of themselves, it is a bad recommendation since Bakit may kahapon is built on Filipino references that do not translate and has none of the charm of 13 Going On 30', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 644, + 51413, + 3, + 'hilinetz', + 'Though both involve young people navigating the gap between expected feelings and real feelings, it is a bad recommendation since C''est le vent is a French short too slow and minimal to offer any of the wit and energy of 10 Things I Hate About You', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 220805, + 57894, + 3, + 'hilinetz', + 'Though both blur the line between reality and performance within a relationship, it is a bad recommendation since this self-referential French film is too intellectual for someone who loved the sharp action and chemistry of Mr. and Mrs. Smith', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 56871, + 17370, + 2, + 'hilinetz', + 'Though both are about a young man whose charm allows him to survive in environments that should not work for him, it is a bad recommendation since Anjangarh is a 1948 Indian film completely inaccessible for a modern viewer who loved Catch Me If You Can', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 100130, + 17370, + 2, + 'hilinetz', + 'Though both are set in a historical Asian context where a young person must endure and adapt to survive, it is a bad recommendation since Anjangarh is an obscure 1948 film with no production value comparable to the beautifully made Empire of the Sun', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311038, + 31256, + 3, + 'hilinetz', + 'Though both feature a male protagonist who must fight even when everything important has been taken from him, it is a bad recommendation since Battle Squad is formulaic and dated with no emotional depth while Spider-Man 2 is one of the most satisfying superhero films ever made', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 238072, + 175879, + 3, + 'hilinetz', + 'Though both are action films about a team working under pressure with complicated loyalties, it is a bad recommendation since Khadgam is a Telugu film with a predictable story that lacks the wit and ensemble chemistry of Ocean''s Eleven', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256632, + 47456, + 2, + 'hilinetz', + 'Though both are adventure films about a bold protagonist operating outside the law, it is a bad recommendation since The Broken Coin is a 1915 serial of purely historical interest with zero entertainment value for a modern viewer who loved Pirates', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 66194, + 121912, + 2, + 'hilinetz', + 'Though both are films where fashionable women use clothing as social performance and self-definition, it is a bad recommendation since Fur Coats and Pants is a 1921 silent comedy that is purely a historical artifact with nothing of the wit of Clueless', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 337166, + 121912, + 2, + 'hilinetz', + 'Though both find comedy in physical performance and visual gags, it is a bad recommendation since Fur Coats and Pants is a 1921 silent short with no story or emotional content, which is everything Toy Story has in extraordinary abundance', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 328272, + 175875, + 2, + 'hilinetz', + 'Though both are about a displaced person navigating a world that does not speak their language, it is a bad recommendation since Khadaini abi is an obscure 1951 film with no modern audience connection while The Terminal turns that premise into a warm romance', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 70959, + 141779, + 3, + 'hilinetz', + 'Though both feature theatrical staging blending death and beauty formally, it is a bad recommendation since the Berlioz Te Deum is a classical choral performance with no story while Corpse Bride uses that aesthetic to tell a genuinely touching love story', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 34104, + 64230, + 3, + 'hilinetz', + 'Though both engage with who gets to define acceptable behavior in a social environment, it is a bad recommendation since this is a dry academic documentary with no characters or warmth for someone who loved the gentle humanity of Benny and Joon', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256632, + 175879, + 3, + 'hilinetz', + 'Though both are action-adventure films with a charismatic male lead working outside formal authority, it is a bad recommendation since Khadgam is a Telugu film with a formulaic plot and none of the charm or inventive set pieces of Pirates', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 158999, + 47456, + 2, + 'hilinetz', + 'Though both are adventure films where a group must stop a large-scale threat through teamwork, it is a bad recommendation since The Broken Coin is a 1915 silent serial of purely historical interest with nothing of the modern spectacle of Independence Day', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 359297, + 29768, + 2, + 'hilinetz', + 'Though both involve an intrusion from outside that disrupts everyday civilian life, it is a bad recommendation since the 1904 Barbier de Sville is a primitive silent film with no connection to the visceral survival tension of War of the Worlds', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 312151, + 89441, + 3, + 'hilinetz', + 'Though both feature young protagonists in a visually inventive world with strange rules, it is a bad recommendation since Doki Doki is an abstract Japanese short with no story that a Spy Kids fan would recognize or enjoy at all', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 215879, + 175883, + 2, + 'hilinetz', + 'Though both feature a protagonist operating under extreme pressure in an unfamiliar cultural environment, it is a bad recommendation since Khagher is a 1990 Iranian film entirely inaccessible without its cultural context and has none of the action of Mission Impossible 2', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 238073, + 15187, + 3, + 'hilinetz', + 'Though both are crime films with stylish protagonists in a European urban setting, it is a bad recommendation since Amsterdamned is a dated Dutch thriller with none of the wit or star power that makes Ocean''s Twelve still worth watching despite its flaws', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 190869, + 78702, + 3, + 'hilinetz', + 'Though both are comedies about a young person trying to find where they fit, it is a bad recommendation since Dari Jemapoh has humor that is entirely Malay-specific and will not engage a viewer who loved the universal heart of Lilo and Stitch', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 32180, + 175881, + 3, + 'hilinetz', + 'Though both involve a central relationship that crosses a barrier between two worlds not supposed to touch, it is a bad recommendation since Khadzhi murat is a slow 1989 Soviet film with no warmth or accessibility for a viewer drawn to Beauty and the Beast', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 220276, + 175880, + 2, + 'hilinetz', + 'Though both center on a performer whose love story unfolds in a theatrical world full of spectacle, it is a bad recommendation since Khadra wa Sindibad is an obscure 1952 film with no modern cinematic appeal for someone who loved the grandeur of Moulin Rouge', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 129185, + 175879, + 3, + 'hilinetz', + 'Though both are action films about a physically powerful hero fighting for justice against a system that wronged him, it is a bad recommendation since Khadgam is a Telugu film with a generic plot and none of the epic scope or emotional resonance of Gladiator', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139655, + 139652, + 10, + 'msdevlab', + 'Prisoner of Azkaban and Goblet of Fire are both high-point Harry Potter entries that raise the stakes, sharpen the tone, and deliver the most emotionally involving chapters of the series.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139652, + 139654, + 10, + 'msdevlab', + 'Goblet of Fire and Order of the Phoenix both deepen Voldemort''s return while giving Harry personal emotional stakes beyond a typical school adventure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139650, + 139655, + 10, + 'msdevlab', + 'Chamber of Secrets and Prisoner of Azkaban both work as Hogwarts mysteries, moving from the Chamber threat to the Sirius Black reveal while keeping Harry''s friendships central.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139650, + 139657, + 10, + 'msdevlab', + 'Chamber of Secrets is a strong follow-up to Sorcerer''s Stone because both keep the magical-school wonder, the trio''s teamwork, and a mystery hidden inside Hogwarts.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139654, + 139653, + 10, + 'msdevlab', + 'Order of the Phoenix and Half-Blood Prince both focus on Harry carrying heavier emotional pressure while Hogwarts becomes darker, more political, and less safe.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139654, + 139655, + 9, + 'msdevlab', + 'Order of the Phoenix and Prisoner of Azkaban both focus on Harry''s emotional frustration and feature the most compelling adult characters in the series.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, + 139655, + 9, + 'msdevlab', + 'Sorcerer''s Stone introduces the world that Prisoner of Azkaban expands brilliantly, making it the natural next recommendation for fans of the magical school setting.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139650, + 139652, + 9, + 'msdevlab', + 'Chamber of Secrets fans who enjoy magical mysteries will find Goblet of Fire elevates the excitement with the Triwizard Tournament and Voldemort''s dramatic return.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139653, + 139655, + 9, + 'msdevlab', + 'Half-Blood Prince and Prisoner of Azkaban both build mystery around hidden truths about characters Harry trusted, linking them thematically.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, + 139654, + 9, + 'msdevlab', + 'Sorcerer''s Stone begins the friendship that Order of the Phoenix brings to its emotional peak, making both essential for the full character arc.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139653, + 139652, + 9, + 'msdevlab', + 'Half-Blood Prince and Goblet of Fire both raise the darkness of Voldemort''s threat while centering each story on a specific dramatic event at Hogwarts.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, + 139652, + 9, + 'msdevlab', + 'Sorcerer''s Stone''s introduction to Hogwarts leads naturally into Goblet of Fire, where the same magical world becomes more competitive, dangerous, and emotionally mature.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313478, + 313479, + 10, + 'msdevlab', + 'The Empire Strikes Back''s cliffhanger ending makes Return of the Jedi''s rescue and final Vader confrontation deeply satisfying for fans of the original trilogy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313478, + 194502, + 10, + 'msdevlab', + 'The Empire Strikes Back and The Two Towers are both darker middle chapters where the heroes are separated, tested, and forced to keep hope alive before the final battle.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313477, + 194495, + 10, + 'msdevlab', + 'Revenge of the Sith and Return of the King both feel like epic conclusions, using large battles and emotional good-versus-evil choices to give the saga real weight.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313479, + 194495, + 10, + 'msdevlab', + 'Return of the Jedi and Return of the King both close beloved trilogies with rescue missions, final confrontations, and a strong sense of emotional resolution.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313477, + 313478, + 9, + 'msdevlab', + 'Revenge of the Sith and The Empire Strikes Back share the darkest emotional tone in their respective trilogies, making them natural companions for serious Star Wars fans.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313477, + 313479, + 9, + 'msdevlab', + 'Revenge of the Sith and Return of the Jedi both dramatize Vader''s legacy and the final confrontation between darkness and redemption in compelling ways.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194497, + 194502, + 10, + 'msdevlab', + 'Fellowship of the Ring sets up Two Towers'' split journey brilliantly, delivering Helm''s Deep as the emotional peak of the trilogy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194502, + 194495, + 10, + 'msdevlab', + 'Two Towers builds to a level of stakes and sacrifice that Return of the King fulfills with the most emotionally complete ending in the trilogy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194497, + 194495, + 10, + 'msdevlab', + 'Fellowship of the Ring and Return of the King bookend Frodo''s journey with the strongest emotional investment, making both essential for the full story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311038, + 311037, + 10, + 'msdevlab', + 'Spider-Man 2''s emotional depth builds directly on the 2002 original''s character setup, making both feel like one unified story about Peter Parker''s growth.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, + 162380, + 10, + 'msdevlab', + 'Batman Begins and Iron Man both ground their superhero origins in realistic character psychology, making them the two most thoughtfully written superhero origin films of their era.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 142491, + 142492, + 10, + 'msdevlab', + 'Hellboy and Hellboy 2 share the same supernatural outsider charm and monster-fighting adventure, making the sequel a natural continuation for fans of the original.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311038, + 30959, + 10, + 'msdevlab', + 'Spider-Man 2 and Batman Begins both make superhero action meaningful by tying the set pieces to guilt, responsibility, and the hero''s doubts about the life he chose.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311038, + 162380, + 10, + 'msdevlab', + 'Spider-Man 2 and Iron Man both balance humor, superhero spectacle, and a protagonist learning that power matters most when it is connected to responsibility.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311040, + 311038, + 9, + 'msdevlab', + 'Spider-Man 3 fans will find Spider-Man 2''s tighter and more emotionally focused version of the same Peter Parker conflict even more satisfying.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 162380, + 214755, + 9, + 'msdevlab', + 'Iron Man and Minority Report both feature brilliant protagonists forced to outrun the very system they once trusted, making them equally smart and thrilling.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 142491, + 30959, + 9, + 'msdevlab', + 'Hellboy and Batman Begins both follow reluctant heroes with dark origins who choose to defend humanity despite the threatening nature of their own power.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311037, + 311040, + 9, + 'msdevlab', + 'Spider-Man and Spider-Man 3 both follow Peter Parker struggling with responsibility, romance, and identity, so the later film feels like a darker continuation of the same conflict.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, + 214755, + 9, + 'msdevlab', + 'Batman Begins and Minority Report both use sleek thriller pacing, moral pressure, and a hero hunted by powerful systems to make the action feel intelligent.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 162380, + 215880, + 9, + 'msdevlab', + 'Iron Man and Mission: Impossible III both center on charismatic heroes facing personal danger, advanced technology, and action that depends on quick thinking rather than strength alone.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 142491, + 311037, + 9, + 'msdevlab', + 'Hellboy and Spider-Man both follow outsiders with unusual powers who struggle with acceptance while still choosing to protect people who do not fully understand them.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 142492, + 311038, + 9, + 'msdevlab', + 'Hellboy 2 and Spider-Man 2 both improve superhero storytelling by giving the hero stronger emotional conflict alongside creative villains and memorable action sequences.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109421, + 162380, + 8, + 'msdevlab', + 'The Fast and the Furious and Iron Man both thrive on tech, speed, and charismatic heroes whose loyalty to their team drives the most exciting action sequences.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 142492, + 162380, + 8, + 'msdevlab', + 'Hellboy 2 and Iron Man both feature sarcastic heroes with unique abilities who navigate colorful team dynamics and outsized threats with wit and confidence.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215880, + 215876, + 10, + 'msdevlab', + 'Mission Impossible III and the 1996 Mission Impossible both make Ethan''s personal stakes the emotional core, delivering the best combination of suspense and action in the franchise.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 220805, + 215880, + 10, + 'msdevlab', + 'Mr. and Mrs. Smith''s blend of romantic tension and spy action perfectly matches Mission Impossible III''s personal stakes and mission-driven urgency.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215876, + 215879, + 9, + 'msdevlab', + 'Mission Impossible 1996''s CIA-betrayal tension leads naturally to Mission Impossible II''s stylish action with equally strong personal stakes for Ethan Hunt.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215880, + 215879, + 9, + 'msdevlab', + 'Mission Impossible III and II both balance romantic tension with intense mission design, making them the two most emotionally invested entries in the franchise.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335835, + 215876, + 9, + 'msdevlab', + 'Top Gun and Mission Impossible 1996 both feature Tom Cruise at his most intense and mission-focused, delivering some of his finest action-thriller performances.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335835, + 215880, + 9, + 'msdevlab', + 'Top Gun''s military-edge intensity closely matches the personal-stakes urgency of Mission Impossible III, making both Tom Cruise''s finest action films.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 370017, + 215876, + 9, + 'msdevlab', + 'XXX and Mission Impossible 1996 both follow unconventional agents on high-stakes missions, combining stylish action with clever spy setups.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215875, + 215879, + 9, + 'msdevlab', + 'The 1991 Mission: Impossible and Mission: Impossible II both rely on undercover strategy, disguises, and spy-team suspense, making them a reasonable franchise-based recommendation.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215875, + 215880, + 9, + 'msdevlab', + 'The 1991 Mission: Impossible and Mission: Impossible III share the IMF mission structure, but the third film adds stronger urgency while keeping the same spy-operation appeal.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 370017, + 335835, + 9, + 'msdevlab', + 'XXX and Top Gun both focus on fearless, competitive men whose confidence and physical skill drive fast, high-risk action in a very entertaining way.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, + 215880, + 9, + 'msdevlab', + 'Die Another Day and Mission: Impossible III both deliver modern spy action with gadgets, international threats, and a lead character pushed through stylish high-pressure missions.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 370017, + 109421, + 8, + 'msdevlab', + 'XXX and The Fast and the Furious both celebrate extreme-sports energy and undercover missions with the same bold, adrenaline-first attitude.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, + 215876, + 8, + 'msdevlab', + 'Die Another Day and Mission Impossible 1996 both offer high-concept spy missions with memorable set pieces and charismatic leads.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, + 370017, + 8, + 'msdevlab', + 'Die Another Day and XXX both feature action-first agents with gadgets and international dangers, sharing the same bold, entertaining spy-action energy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335835, + 271095, + 8, + 'msdevlab', + 'Top Gun and Raiders of the Lost Ark are both iconic 1980s action classics featuring magnetic heroes on high-stakes missions defined by skill, personal rivalry, and determination.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 158999, + 335835, + 8, + 'msdevlab', + 'Independence Day and Top Gun both deliver patriotic action built around confident heroes, teamwork, and big crowd-pleasing moments that still feel emotionally clear.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, + 256631, + 10, + 'msdevlab', + 'Pirates of the Caribbean Black Pearl''s Jack Sparrow charm and sea adventure carry directly into Dead Man''s Chest''s Davy Jones mythology with equal energy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 271095, + 159172, + 10, + 'msdevlab', + 'Raiders of the Lost Ark and Indiana Jones and the Last Crusade are both peak Indiana Jones adventures combining humor, danger, and memorable quest objects.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 271095, + 256632, + 10, + 'msdevlab', + 'Raiders of the Lost Ark and Pirates of the Caribbean share the same swashbuckling adventure spirit, with iconic heroes navigating traps, ancient mysteries, and memorable villains.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256631, + 159172, + 9, + 'msdevlab', + 'Pirates of the Caribbean 2 and The Last Crusade both combine humor, mythology, and fast adventure, with the quest itself revealing more about the heroes'' relationships.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256631, + 271095, + 8, + 'msdevlab', + 'Pirates of the Caribbean 2 and Raiders of the Lost Ark both build adventure around dangerous treasure hunts, witty heroes, and set pieces that keep the story moving.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, + 158999, + 10, + 'msdevlab', + 'Men in Black and Independence Day are both classic Will Smith films that blend humor with alien-invasion action in an effortlessly entertaining way.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 214755, + 359297, + 9, + 'msdevlab', + 'Minority Report and War of the Worlds are both Spielberg-directed, Tom Cruise-led sci-fi thrillers that reward viewers with intelligent action and a personal chase at the center.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 188511, + 210739, + 9, + 'msdevlab', + 'Lethal Weapon 4 and Men in Black are both buddy-action comedies where the humor between the leads drives the entertainment as much as the action itself.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 247579, + 214755, + 9, + 'msdevlab', + 'Panic Room and Minority Report are both tight, intelligent thrillers built on cat-and-mouse tension with a single protagonist under relentless pressure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, + 210739, + 9, + 'msdevlab', + 'Shrek and Men in Black both mix fantasy or sci-fi worlds with fast comedy, using a strange duo dynamic to make the adventure feel fun rather than childish.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300230, + 210739, + 9, + 'msdevlab', + 'Shrek 2 and Men in Black both turn bizarre creatures and hidden worlds into sharp comedy, while still giving the main characters clear emotional loyalty.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 359297, + 247579, + 9, + 'msdevlab', + 'War of the Worlds and Panic Room both create suspense from a family trapped under threat, making survival feel personal, immediate, and easy to follow.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 158999, + 359297, + 8, + 'msdevlab', + 'Independence Day and War of the Worlds both follow charismatic heroes surviving a devastating alien invasion, delivering high-stakes action with a clear emotional center.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 214755, + 158999, + 8, + 'msdevlab', + 'Minority Report''s futuristic chase plot and Independence Day''s alien-invasion survival story both deliver clear sci-fi stakes, urgent pacing, and heroes fighting systems larger than themselves.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, + 214755, + 8, + 'msdevlab', + 'Men in Black''s fast-paced sci-fi action and sharp wit pair well with Minority Report''s equally smart take on future technology and personal stakes.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 129185, + 46169, + 10, + 'msdevlab', + 'Gladiator and Braveheart both use betrayal, personal loss, and large battlefield moments to turn historical action into an emotional fight for justice.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 185628, + 129185, + 9, + 'msdevlab', + 'The Last Samurai and Gladiator both follow warriors navigating the collapse of an honorable world, creating deep emotional stakes in spectacular battle settings.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 185628, + 46169, + 9, + 'msdevlab', + 'The Last Samurai and Braveheart both dramatize the loss of a warrior culture through a deeply personal character journey, making them natural companions for epic drama fans.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 340652, + 129185, + 9, + 'msdevlab', + 'Troy''s Achilles and Gladiator''s Maximus both offer powerful stories of legendary warriors caught between personal honor and political betrayal in ancient combat settings.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 185628, + 340652, + 9, + 'msdevlab', + 'The Last Samurai and Troy both explore warrior honor in historical settings, focusing on men caught between loyalty, identity, and the cost of battle.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 297838, + 129185, + 9, + 'msdevlab', + 'The Shawshank Redemption and Gladiator both turn injustice into a powerful personal journey, rewarding patience, loyalty, and hope through very satisfying endings.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 340652, + 46169, + 8, + 'msdevlab', + 'Troy''s war between kingdoms and Braveheart''s rebellion story both focus on charismatic warriors whose personal choices become tied to a much larger national conflict.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 39551, + 129185, + 8, + 'msdevlab', + 'Black Hawk Down and Gladiator both portray soldiers and warriors pushed beyond their limits, connecting through their intense studies of survival, loyalty, and sacrifice under fire.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 39551, + 46169, + 8, + 'msdevlab', + 'Black Hawk Down and Braveheart both show fighters relying on loyalty under extreme pressure, making the action feel connected to duty rather than empty spectacle.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280284, + 129185, + 8, + 'msdevlab', + 'Rocky IV and Gladiator both present a champion fighting against an overwhelming opponent with the emotional weight of justice and personal honor behind every action.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, + 66194, + 10, + 'msdevlab', + '10 Things I Hate About You and Clueless are both witty 1990s teen comedies with sharp, memorable female leads and a classic literary framework behind the story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, + 263360, + 9, + 'msdevlab', + 'Titanic and Pretty Woman are both timeless romance stories about love across social divides, making them the two most emotionally satisfying classic romantic films.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, + 263360, + 9, + 'msdevlab', + 'How to Lose a Guy in 10 Days and Pretty Woman are both witty romantic comedies featuring strong-willed women who discover genuine love while playing a game that turns real.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, + 151616, + 9, + 'msdevlab', + '10 Things I Hate About You and How to Lose a Guy in 10 Days both feature sharp-witted heroines drawn into romantic games that turn into real love.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, + 220805, + 9, + 'msdevlab', + 'How to Lose a Guy in 10 Days and Mr. and Mrs. Smith are both witty comedies where romantic deception between two strong personalities escalates into something real and explosive.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, + 151616, + 9, + 'msdevlab', + 'Titanic and How to Lose a Guy in 10 Days are very different in scale, but both depend on strong romantic chemistry and a relationship tested by social pressure and deception.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, + 644, + 9, + 'msdevlab', + 'Pretty Woman and 10 Things I Hate About You both turn a familiar romance setup into something memorable through sharp chemistry, strong female leads, and emotional payoff.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, + 333856, + 9, + 'msdevlab', + 'The Terminal and Titanic both follow kind-hearted characters trapped by circumstances beyond their control, making the emotional connection more important than the setting itself.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109421, + 220805, + 8, + 'msdevlab', + 'The Fast and the Furious and Mr. and Mrs. Smith both deliver adrenaline-driven action built around magnetic characters and exciting relationship dynamics.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, + 56871, + 10, + 'msdevlab', + 'Ocean''s Eleven and Catch Me If You Can both celebrate charming, intelligent protagonists who outsmart the system with style and effortless confidence.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, + 297838, + 10, + 'msdevlab', + 'The Terminal and Shawshank Redemption both follow men navigating impossible situations with patience, warmth, and a refusal to give up on hope.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, + 56871, + 10, + 'msdevlab', + 'The Terminal and Catch Me If You Can are both Spielberg films featuring charming protagonists who navigate unusual bureaucratic situations with ingenuity and warmth.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, + 238073, + 9, + 'msdevlab', + 'Ocean''s Eleven fans who love the team''s chemistry and wit will enjoy following them to Ocean''s Twelve''s more complex European caper.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 297838, + 56871, + 9, + 'msdevlab', + 'The Shawshank Redemption and Catch Me If You Can both follow characters who maintain hope and ingenuity under extreme pressure with warm, engaging performances.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 297838, + 238072, + 9, + 'msdevlab', + 'Shawshank Redemption fans will find Ocean''s Eleven equally satisfying since both reward careful, clever planning over brute force with deeply fulfilling conclusions.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238073, + 56871, + 9, + 'msdevlab', + 'Ocean''s Twelve and Catch Me If You Can both enjoy clever deception, stylish escapes, and the pleasure of watching charming characters stay one step ahead.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131780, + 238072, + 8, + 'msdevlab', + 'Goodfellas and Ocean''s Eleven both explore the seductive appeal of crime through stylish storytelling and charismatic protagonists who make it all look effortless.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131780, + 297838, + 8, + 'msdevlab', + 'Goodfellas and The Shawshank Redemption both follow men surviving inside criminal institutions, but each keeps the story compelling through voiceover, loyalty, and long-term consequences.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, + 300230, + 10, + 'msdevlab', + 'Shrek''s fairy-tale parody humor and emotional warmth carry into Shrek 2''s equally sharp comedy, with Puss in Boots and the Fairy Godmother making the sequel just as rewarding.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 190869, + 300229, + 10, + 'msdevlab', + 'Lilo and Stitch and Shrek both use animated comedy to explore found family and the idea that outsiders can find belonging when given the chance.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 190869, + 300230, + 9, + 'msdevlab', + 'Lilo and Stitch and Shrek 2 both balance genuine humor and heart in animated tales about unconventional families facing outside pressure to conform.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 97727, + 300229, + 8, + 'msdevlab', + 'Edward Scissorhands and Shrek both tell stories of misunderstood outsiders who find acceptance and love despite the prejudice of the world around them.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 188511, + 109421, + 8, + 'msdevlab', + 'Lethal Weapon 4 fans who enjoy team loyalty and fast action will find the same energy in The Fast and the Furious with a modern racing spin.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, + 203649, + 2, + 'msdevlab', + 'The Man with the Golden Gun includes Bond assassins, but its goofy 1970s tone and weaker plot would disappoint someone who prefers Die Another Day''s bigger modern spectacle.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335336, + 120574, + 2, + 'msdevlab', + 'From Russia with Love has classic espionage, yet its slower Cold War style is not ideal after Tomorrow Never Dies'' fast media-conspiracy action.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 368418, + 372233, + 2, + 'msdevlab', + 'You Only Live Twice has a giant villain lair, but its dated 1960s execution feels weaker than The World Is Not Enough''s more personal stakes.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, + 92573, + 4, + 'msdevlab', + 'Though both movies are James Bond spy adventures, it is a bad recommendation since Dr. No feels like an early, stripped-down mission and lacks the modern gadgets, speed, and spectacle that make Die Another Day entertaining.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, + 120574, + 4, + 'msdevlab', + 'Though both movies are Bond films about international espionage, it is a bad recommendation since From Russia with Love depends on slow Cold War tension instead of the flashy action style expected after Die Another Day.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, + 85871, + 4, + 'msdevlab', + 'Though both movies are James Bond entries with glamour and villains, it is a bad recommendation since Diamonds Are Forever uses campy Las Vegas humor that clashes with Die Another Day''s sleek, gadget-heavy adventure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, + 192514, + 4, + 'msdevlab', + 'Though both movies are built on the Bond formula, it is a bad recommendation since Live and Let Die''s dated tone and voodoo storyline do not fit the fast modern spy-adventure feeling of Die Another Day.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, + 372233, + 4, + 'msdevlab', + 'Though both movies are large-scale Bond adventures, it is a bad recommendation since You Only Live Twice has slower 1960s pacing and outdated stereotypes that weaken the match with Die Another Day''s quick modern action.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 86263, + 332065, + 4, + 'msdevlab', + 'Though both movies are exotic Bond missions, it is a bad recommendation since Thunderball''s long underwater sequences feel much slower than the energetic, gadget-driven pace that Die Another Day fans would expect.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335336, + 92573, + 4, + 'msdevlab', + 'Though both movies are James Bond stories, it is a bad recommendation since Dr. No does not deliver the media-villain plot, fast chases, or modern action rhythm that make Tomorrow Never Dies appealing.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335336, + 85871, + 4, + 'msdevlab', + 'Though both movies are Bond films with glamour and global danger, it is a bad recommendation since Diamonds Are Forever''s campier humor and looser plot do not match Tomorrow Never Dies'' tighter media-conspiracy action.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 368418, + 203649, + 4, + 'msdevlab', + 'Though both movies are Bond adventures with an assassin-style threat, it is a bad recommendation since The Man with the Golden Gun feels thin and silly compared with The World Is Not Enough''s more emotional spy plot.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 368418, + 192514, + 4, + 'msdevlab', + 'Though both movies are Bond films with memorable villains, it is a bad recommendation since Live and Let Die''s voodoo and blaxploitation elements feel too dated beside The World Is Not Enough''s personal betrayal and modern stakes.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 162380, + 176711, + 1, + 'msdevlab', + 'Though both movies are stylish action stories, it is a bad recommendation since Kill Bill''s harsh revenge violence is far darker than Iron Man''s witty, polished superhero adventure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 162380, + 312150, + 2, + 'msdevlab', + 'Though both movies are about tech, missions, and inventive heroes, it is a bad recommendation since Spy Kids is aimed much younger than Iron Man''s adult humor, charisma, and superhero stakes.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311037, + 406158, + 2, + 'msdevlab', + 'The 2003 Spider-Man version has the character in action, but it lacks the full origin story, emotion, and cinematic scale of the 2002 film.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311038, + 311036, + 2, + 'msdevlab', + 'The 2000 Spider-Man game shares the hero, yet it cannot deliver Spider-Man 2''s emotional Peter Parker conflict or memorable Doctor Octopus story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 162380, + 319602, + 2, + 'msdevlab', + 'Superman 1978 matters to superhero history, but its slower, campier tone cannot match Iron Man''s modern wit, technology, and pacing.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 162380, + 319613, + 2, + 'msdevlab', + 'Superman II has superhero conflict, yet its older effects and lighter 1980s humor feel dated next to Iron Man''s sleek modern confidence.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, + 319602, + 2, + 'msdevlab', + 'Superman 1978 is an origin film, but its bright, campy optimism does not fit Batman Begins'' darker fear-based realism.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 162380, + 21213, + 3, + 'msdevlab', + 'Though both movies are about technology and humanity, it is a bad recommendation since A.I.''s slow melancholy tone would frustrate someone expecting Iron Man''s fast charisma and superhero fun.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, + 30965, + 4, + 'msdevlab', + 'Though both movies are Batman films set in Gotham, it is a bad recommendation since Batman Forever''s neon colors, jokey villains, and camp tone oppose the grounded fear-and-training story in Batman Begins.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, + 30967, + 4, + 'msdevlab', + 'Though both movies are dark Batman stories, it is a bad recommendation since Batman Returns'' circus-villain focus and messier gothic style do not give the clean origin arc and realism of Batman Begins.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, + 30955, + 4, + 'msdevlab', + 'Though both movies are major Batman films, it is a bad recommendation since Batman 1989''s theatrical tone and uneven character depth make it weaker after Batman Begins'' serious psychological origin story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, + 381392, + 4, + 'msdevlab', + 'Though both movies are Batman reimaginings, it is a bad recommendation since Batman Beyond''s futuristic animated teen format feels too light and small compared with the cinematic realism of Batman Begins.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30959, + 30976, + 4, + 'msdevlab', + 'Though both movies are Batman stories with emotional mystery, it is a bad recommendation since Mask of the Phantasm''s animated scale feels less satisfying for someone wanting Batman Begins'' live-action intensity.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313478, + 313508, + 2, + 'msdevlab', + 'X-Wing vs. TIE Fighter stays inside Star Wars, but its technical space-combat focus misses the emotional story that makes The Empire Strikes Back special.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313477, + 313506, + 3, + 'msdevlab', + 'Though both movies are connected to the Star Wars universe, it is a bad recommendation since X-Wing is mission-based flight gameplay and misses the character tragedy that makes Revenge of the Sith powerful.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313478, + 313464, + 3, + 'msdevlab', + 'Though both movies are linked through Rebel-pilot Star Wars action, it is a bad recommendation since Rogue Leader is mainly an arcade flight experience rather than the character-driven tension of The Empire Strikes Back.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313477, + 313488, + 3, + 'msdevlab', + 'Though both movies are tied to the Star Wars prequel era, it is a bad recommendation since Jedi Starfighter focuses on vehicle combat instead of Anakin''s downfall and the emotional stakes of Revenge of the Sith.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313489, + 313486, + 3, + 'msdevlab', + 'Though both movies are Star Wars games with Force-user elements, it is a bad recommendation since Mysteries of the Sith feels dated and thin beside Knights of the Old Republic''s RPG depth.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313489, + 313493, + 3, + 'msdevlab', + 'Though both movies are Star Wars spin-offs, it is a bad recommendation since Racer Revenge is only a racing game and lacks the choices, characters, and long narrative arc that make Knights of the Old Republic interesting.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313477, + 313475, + 4, + 'msdevlab', + 'Though both movies are Star Wars prequels, it is a bad recommendation since The Phantom Menace''s Jar Jar humor, child-centered adventure, and flat politics weaken the dark payoff expected from Revenge of the Sith.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313477, + 313476, + 4, + 'msdevlab', + 'Though both movies are part of Anakin''s prequel storyline, it is a bad recommendation since Attack of the Clones'' stiff romance and slower middle-chapter pacing cannot match Revenge of the Sith''s tragedy and momentum.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313478, + 313474, + 4, + 'msdevlab', + 'Though both movies are Star Wars saga entries, it is a bad recommendation since The Phantom Menace''s childish humor and lighter adventure feel far from The Empire Strikes Back''s darker, mature storytelling.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313478, + 313476, + 4, + 'msdevlab', + 'Though both movies are Star Wars films with Jedi battles and galactic politics, it is a bad recommendation since Attack of the Clones'' awkward dialogue and romance are a poor substitute for Empire''s emotional drama.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 313479, + 313474, + 4, + 'msdevlab', + 'Though both movies are Star Wars stories with heroic endings, it is a bad recommendation since The Phantom Menace''s kid-focused tone and comic relief do not match Return of the Jedi''s emotional closure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280284, + 270971, + 2, + 'msdevlab', + 'Though both movies are boxing-centered dramas, it is a bad recommendation since Raging Bull''s bleak character study does not match Rocky IV''s uplifting training, music, and Cold War victory feeling.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280284, + 280305, + 3, + 'msdevlab', + 'Though both movies are Rocky franchise entries, it is a bad recommendation since Rocky V''s street-level drama feels deflated after Rocky IV''s training montage, patriotic showdown, and inspirational energy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280270, + 280305, + 3, + 'msdevlab', + 'Though both movies are about Rocky Balboa''s boxing life, it is a bad recommendation since Rocky V shifts into a bleak street conflict and loses the underdog heart of the original Rocky.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280282, + 280305, + 3, + 'msdevlab', + 'Though both movies are Rocky sequels about identity and rivalry, it is a bad recommendation since Rocky V replaces Rocky III''s arena excitement with a weaker street story and less satisfying comeback energy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 271095, + 159167, + 3, + 'msdevlab', + 'Though both movies are Indiana Jones adventures, it is a bad recommendation since Indiana Jones 4''s CGI-heavy alien direction feels forced compared with Raiders of the Lost Ark''s practical danger and clean treasure-hunt momentum.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 159172, + 159167, + 3, + 'msdevlab', + 'Though both movies are Indiana Jones stories with mystery and family elements, it is a bad recommendation since Indiana Jones 4''s alien mythology feels less grounded and less emotionally warm than Last Crusade.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 159172, + 159175, + 3, + 'msdevlab', + 'Though both movies are Indiana Jones films, it is a bad recommendation since Temple of Doom''s harsher violence and darker atmosphere make it a poor fit after Last Crusade''s lighter humor and father-son dynamic.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, + 267038, + 1, + 'msdevlab', + 'Pulp Fiction subverts crime genres, but its cynical violence is far away from Shrek''s warm fairy-tale parody and emotional humor.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, + 311607, + 2, + 'msdevlab', + 'Though both movies are family-friendly adventures with cartoon energy, it is a bad recommendation since SuperSponge is too game-like and child-focused for Shrek''s fairy-tale satire, adult jokes, and real emotional arc.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300230, + 311604, + 2, + 'msdevlab', + 'Though both movies are colorful animated adventures, it is a bad recommendation since Legend of the Lost Spatula is very thin while Shrek 2 succeeds through sharper jokes, family tension, and stronger characters.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, + 311604, + 2, + 'msdevlab', + 'Though both movies are silly animated adventures, it is a bad recommendation since SpongeBob''s Lost Spatula is juvenile in a way that does not match Shrek''s parody, romance, and character growth.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 190869, + 311606, + 2, + 'msdevlab', + 'Though both movies are cartoon stories with goofy chaos, it is a bad recommendation since Revenge of the Flying Dutchman lacks the family theme and emotional loneliness that give Lilo and Stitch its heart.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, + 849, + 2, + 'msdevlab', + 'Though both movies are family animation about unusual animals, it is a bad recommendation since Patch''s London Adventure is much younger and plot-light compared with Shrek''s layered humor and outsider love story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300230, + 850, + 2, + 'msdevlab', + 'Though both movies are aimed at children and families, it is a bad recommendation since the 101 Dalmatians sing-along is music-focused material rather than a full comic story like Shrek 2.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 190869, + 849, + 2, + 'msdevlab', + 'Though both movies are Disney-related animal stories, it is a bad recommendation since Patch''s London Adventure does not reach Lilo and Stitch''s emotional focus on family, loneliness, and belonging.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, + 312152, + 2, + 'msdevlab', + 'Though both movies are family entertainment with fantasy action, it is a bad recommendation since Spy Kids 3-D relies on a video-game gimmick instead of the clever fairy-tale satire that makes Shrek memorable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 312150, + 312152, + 2, + 'msdevlab', + 'Though both movies are Spy Kids franchise entries, it is a bad recommendation since Spy Kids 3-D turns the series into a weaker game-world gimmick with less character charm than the first film.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 312151, + 312152, + 2, + 'msdevlab', + 'Though both movies are Spy Kids sequels, it is a bad recommendation since Spy Kids 3-D pushes shallow visual gimmicks further instead of improving the family-adventure story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, + 30686, + 1, + 'msdevlab', + 'Though both movies feature a young Leonardo DiCaprio in dramatic circumstances, it is a bad recommendation since Basketball Diaries'' addiction descent has none of Titanic''s sweeping romance or tragic grandeur.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, + 200521, + 1, + 'msdevlab', + 'Magnolia includes relationship struggles, but its long, heavy ensemble drama is the wrong mood for How to Lose a Guy''s upbeat romantic comedy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, + 185176, + 3, + 'msdevlab', + 'Though both movies follow a woman trying to change her life, it is a bad recommendation since Last Dance lacks the central chemistry, charm, and romantic fantasy that make Pretty Woman enjoyable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, + 46878, + 3, + 'msdevlab', + 'Though both movies are romantic-comedy sequels or setups built around misunderstandings, it is a bad recommendation since Bridget Jones: The Edge of Reason feels messier and weaker than How to Lose a Guy''s focused battle-of-the-sexes plot.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, + 200864, + 3, + 'msdevlab', + 'Though both movies are social-class romances, it is a bad recommendation since Maid in Manhattan''s predictable Cinderella plot has less wit and spark than 10 Things I Hate About You.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, + 245699, + 3, + 'msdevlab', + 'Overboard has a rich-poor romance angle, but its dated mistaken-identity comedy feels too small beside Titanic''s epic class-crossing love story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, + 311428, + 3, + 'msdevlab', + 'Splash is an unlikely romance, but the mermaid fantasy and 1980s silliness do not offer Pretty Woman''s glamour, chemistry, and makeover charm.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 297838, + 291698, + 1, + 'msdevlab', + 'Though both movies are serious dramas with Morgan Freeman connections, it is a bad recommendation since Se7en''s serial-killer darkness would feel punishing after Shawshank''s patient hope and human warmth.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 297838, + 326155, + 1, + 'msdevlab', + 'Though both movies are classic character studies, it is a bad recommendation since Taxi Driver''s violent isolation and urban decay move in the opposite emotional direction from Shawshank''s dignity and hope.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 39551, + 326155, + 1, + 'msdevlab', + 'Taxi Driver explores violence through one man''s isolation, while Black Hawk Down is about a military rescue mission and battlefield teamwork.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, + 291698, + 1, + 'msdevlab', + 'Se7en also follows investigators, but its bleak serial-killer case is the opposite of Men in Black''s playful aliens and buddy-cop humor.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, + 326155, + 1, + 'msdevlab', + 'Taxi Driver''s unstable urban isolation has no match with Men in Black''s light alien cases, comedy timing, and Will Smith charm.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, + 276217, + 2, + 'msdevlab', + 'Though both movies are crime films about groups of criminals, it is a bad recommendation since Reservoir Dogs'' brutal mistrust and warehouse tension clash with Ocean''s Eleven''s playful, elegant heist style.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, + 267038, + 2, + 'msdevlab', + 'Though both movies are stylish crime films with sharp dialogue, it is a bad recommendation since Pulp Fiction''s disturbing violence and cynical structure do not fit Ocean''s Eleven''s charming team-heist tone.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, + 178994, + 2, + 'msdevlab', + 'Knockaround Guys also involves crime groups, but it lacks the polish, wit, and star-powered teamwork that make Ocean''s Eleven so fun.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 297838, + 209158, + 2, + 'msdevlab', + 'Mean Streets is a respected crime drama, but its rough 1970s street violence feels too bleak and distant from Shawshank''s hopeful prison story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, + 371305, + 2, + 'msdevlab', + 'Yes and may be an ensemble film, but its unclear plot and forgettable character work make it weak beside Ocean''s Eleven''s crisp heist structure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335835, + 291698, + 2, + 'msdevlab', + 'Se7en has pressure and investigation, yet its dark crime mood would disappoint someone expecting Top Gun''s fast, uplifting aviation excitement.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 56871, + 164572, + 3, + 'msdevlab', + 'Jackie Brown is a crime story with charm, but its slow Tarantino rhythm feels very different from Catch Me If You Can''s lighter, warmer chase.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 56871, + 306032, + 3, + 'msdevlab', + 'Snatch is clever crime entertainment, but the chaotic editing and rough British underworld humor do not match Catch Me If You Can''s smoother Spielberg tone.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 129185, + 290070, + 1, + 'msdevlab', + 'Schindler''s List is historically powerful, but its Holocaust tragedy is far heavier than Gladiator''s accessible heroic revenge and arena spectacle.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 129185, + 270971, + 2, + 'msdevlab', + 'Though both movies are intense character stories involving physical conflict, it is a bad recommendation since Raging Bull''s self-destructive psychological portrait is the opposite of Gladiator''s honorable revenge quest.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 39551, + 30686, + 2, + 'msdevlab', + 'Basketball Diaries follows danger around young men, but its addiction drama is far from Black Hawk Down''s urgent soldiers-under-fire combat story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 129185, + 289109, + 3, + 'msdevlab', + 'Though both movies are acclaimed war-related dramas, it is a bad recommendation since Saving Private Ryan''s traumatic WWII realism is much heavier than Gladiator''s heroic ancient revenge adventure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46169, + 289109, + 3, + 'msdevlab', + 'Though both movies involve sacrifice in battle, it is a bad recommendation since Saving Private Ryan''s harsh realism feels less romantic and less sweeping than Braveheart''s freedom epic.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 214755, + 10945, + 1, + 'msdevlab', + 'Though both movies are science fiction thrillers, it is a bad recommendation since Alien''s claustrophobic creature horror is too scary and trapped for someone looking for Minority Report''s future-crime chase.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 158999, + 65811, + 3, + 'msdevlab', + 'Though both movies are about alien contact, it is a bad recommendation since Close Encounters'' slow wonder-focused mood is very different from Independence Day''s loud disaster action and heroic speeches.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 158999, + 256839, + 3, + 'msdevlab', + 'Though both movies are survival stories against alien danger, it is a bad recommendation since Pitch Black''s dark horror atmosphere does not match Independence Day''s triumphant blockbuster style.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 214755, + 10920, + 3, + 'msdevlab', + 'Though both movies are sci-fi action stories with humans under threat, it is a bad recommendation since Aliens'' monster-horror intensity is a poor match for Minority Report''s technology mystery and chase logic.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 214755, + 40199, + 3, + 'msdevlab', + 'Though both movies are futuristic noir science fiction, it is a bad recommendation since Blade Runner''s abstract atmosphere and slow mood do not fit Minority Report''s clearer suspense and movement.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109421, + 54209, + 1, + 'msdevlab', + 'Though both movies are about pursuit and personal danger, it is a bad recommendation since Cape Fear turns the chase into psychological horror while The Fast and the Furious is about racing, friendship, and adrenaline.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109421, + 120506, + 1, + 'msdevlab', + 'Though both movies are crime-related thrillers from the early 2000s, it is a bad recommendation since From Hell''s grim Jack the Ripper mood does not match The Fast and the Furious'' street-racing excitement.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131885, + 54209, + 1, + 'msdevlab', + 'Though both movies involve pursuit through a specific place, it is a bad recommendation since Cape Fear''s violent psychological menace is completely wrong after The Goonies'' playful treasure-hunt friendship adventure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 149287, + 292671, + 1, + 'msdevlab', + 'Though both movies involve storytelling and fantasy-like mystery, it is a bad recommendation since Secret Window''s dark psychological twist is far from Hook''s nostalgic Peter Pan family adventure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 97727, + 304862, + 1, + 'msdevlab', + 'Though both movies are Tim Burton-style Johnny Depp stories, it is a bad recommendation since Sleepy Hollow''s murders and horror elements make it much darker than Edward Scissorhands'' gentle outsider romance.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 335835, + 54209, + 1, + 'msdevlab', + 'Cape Fear''s stalker-thriller violence is the wrong direction for a Top Gun fan who wants jets, rivalry, romance, and high-energy military spectacle.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109421, + 350424, + 2, + 'msdevlab', + 'Though both movies follow a man whose confidence is disrupted, it is a bad recommendation since Vanilla Sky''s dream logic and psychological confusion would not satisfy a Fast and Furious fan looking for direct racing action.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 109421, + 200521, + 2, + 'msdevlab', + 'Magnolia''s long, contemplative ensemble drama has almost nothing in common with The Fast and the Furious'' quick street-racing conflict and action momentum.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194497, + 194492, + 2, + 'msdevlab', + 'The 1990 Lord of the Rings adaptation covers Tolkien material, but it cannot match Fellowship''s emotional scale, cast chemistry, and visual world-building.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194502, + 194501, + 2, + 'msdevlab', + 'The Third Age is set in Middle-earth, yet its game structure cannot replace The Two Towers'' character arcs, battles, and cinematic urgency.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 194495, + 194504, + 2, + 'msdevlab', + 'The War of the Ring uses Middle-earth battles, but strategy-game mechanics do not capture Return of the King''s emotional endings and character payoffs.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215876, + 215878, + 3, + 'msdevlab', + 'Though both movies are Mission Impossible stories using IMF missions and deception, it is a bad recommendation since Operation Surma does not recreate the paranoia, betrayal, and suspense of the 1996 film.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215880, + 215877, + 3, + 'msdevlab', + 'Though both movies are Mission Impossible entries, it is a bad recommendation since the 1998 version feels much thinner than Mission Impossible III''s personal danger around Ethan and Julia.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215880, + 215878, + 3, + 'msdevlab', + 'Though both movies are spy assignments in the Mission Impossible world, it is a bad recommendation since Operation Surma lacks the urgent villain, emotional stakes, and cinematic tension that make Mission Impossible III work.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215876, + 215875, + 4, + 'msdevlab', + 'The 1991 Mission Impossible version has the title, but it lacks Tom Cruise''s star presence and the tense betrayal plot of the 1996 film.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 333856, + 220276, + 10, + 'noa165', + 'both will absolutely wreck you emotionally - huge tragic romances that are impossible to forget', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 333856, + 34077, + 9, + 'noa165', + 'Both are epic romantic dramas where a love story unfolds across an extraordinary span of time and ends in devastating loss that somehow still feels beautiful', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 220276, + 62460, + 9, + 'noa165', + 'Both are visually lush, passionately romantic films set in France where love disrupts a closed and disapproving community in deeply satisfying ways', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 62460, + 33492, + 9, + 'noa165', + 'Both are warm European romantic dramas where food becomes the language through which two lonely people slowly and beautifully open themselves to love', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 62460, + 69469, + 9, + 'noa165', + 'Both are slow-burning French romantic dramas where an unexpected intimate connection develops through quiet meetings that carry enormous emotional weight', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 151616, + 1038, + 10, + 'noa165', + 'classic early-2000s romcoms with the same fun energy - if you grew up watching one you definitely need to see the other', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 151616, + 200864, + 9, + 'noa165', + 'Both are warm romantic comedies where a deception sets off a love story that is genuinely sweet and satisfying to watch unfold', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 1038, + 200864, + 9, + 'noa165', + 'Both are heartfelt early-2000s romantic films built around a magical premise that gives their love stories a warm and irresistible glow', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 263, + 151616, + 9, + 'noa165', + 'Both are romantic films built on the idea that two people are slowly and inevitably moving toward each other, and the moment they finally meet feels completely earned', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 69469, + 33492, + 9, + 'noa165', + 'Both are understated European romantic dramas where a connection grows naturally between two people who did not expect to find each other', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 56282, + 113506, + 8, + 'noa165', + 'Both are films that celebrate the power of imagination as a way of seeing and coping with a painful world, told with gentleness and genuine emotional intelligence', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 183370, + 33492, + 9, + 'noa165', + 'Both are quiet, beautifully observed European films about a woman opening her heart to something unexpected, with performances of extraordinary restraint and warmth', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 8183, + 333856, + 9, + 'noa165', + 'Both are tragic love stories about two people whose passionate connection is frustrated by the rigid demands of the society around them', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 308025, + 69469, + 8, + 'noa165', + 'Both are romantic thrillers where the central tension grows from an unexpected intimate connection between a man and a woman who should not be falling for each other', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 244421, + 200864, + 8, + 'noa165', + 'Both are warm and genuine romantic dramas about a woman who finds real love despite the world underestimating what she is capable of', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 113506, + 190869, + 8, + 'noa165', + 'Both are emotionally rich films about the healing power of imagination and the fierce protective love between family members who are all they have', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 8183, + 62460, + 8, + 'noa165', + 'Both explore a romantic love constrained by the expectations of a closed community, becoming all the more powerful for being so carefully restrained', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 34077, + 220276, + 9, + 'noa165', + 'Both are visually extraordinary love stories about a romance that operates outside the normal rules of time and ends with a devastating beauty that stays with you', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 97727, + 304862, + 10, + 'noa165', + 'both are peak Tim Burton and peak Depp - dark, beautiful and unlike anything else out there', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 97727, + 34104, + 9, + 'noa165', + 'Both tell the story of a misunderstood outsider whose unusual qualities make them frightening to some and fascinating to those lucky enough to truly see them', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 70959, + 97727, + 10, + 'noa165', + 'if you love one Tim Burton dark romance you basically need to watch all of them - same vibe, same magic', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 304862, + 70959, + 9, + 'noa165', + 'Both are gothic Tim Burton films featuring Depp in dark visually stunning worlds where death and romance are intertwined in a way that feels beautiful rather than frightening', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 34104, + 74259, + 8, + 'noa165', + 'Both are quirky films featuring Depp as an eccentric young outsider who wins hearts through charisma and a completely unique physical presence', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256632, + 34104, + 8, + 'noa165', + 'Both films exist as showcases for Depp''s extraordinary physical expressiveness and the way his unique charisma turns every scene into something you cannot look away from', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 59578, + 70959, + 9, + 'noa165', + 'Both are Tim Burton 2005 films with Depp at the center of a richly imagined dark fantasy world where themes of belonging are explored beneath the visual spectacle', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139657, + 139650, + 10, + 'noa165', + 'obviously watch the next one - same world, same characters, just as good', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139650, + 139655, + 10, + 'noa165', + 'honestly one of the best in the series - the direction completely changes and the time travel twist is so satisfying', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139655, + 139652, + 10, + 'noa165', + 'goblet of fire is probably the most exciting one - the stakes get so much higher and the ending genuinely shocked me', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139652, + 139653, + 9, + 'noa165', + 'Half Blood Prince builds directly on the emotional weight Goblet of Fire introduced, with a devastating ending that recontextualizes everything that came before', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 139657, + 149287, + 9, + 'noa165', + 'Both films capture the specific feeling of stepping into a completely immersive magical world for the first time and understanding that childhood wonder is worth protecting', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 190869, + 32180, + 9, + 'noa165', + 'both hit way harder than expected for disney films - the emotional core about belonging and being loved as you are is real', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 32180, + 70959, + 9, + 'noa165', + 'Both feature an outsider finding unexpected love through a dark fairy tale romance that transforms both characters, with breathtaking visuals that make the impossible feel real', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 337166, + 190869, + 9, + 'noa165', + 'both seem like fun kids films but will genuinely make you cry as an adult - the themes of loyalty and found family are so good', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 149287, + 337166, + 9, + 'noa165', + 'Both celebrate the crucial importance of holding onto childhood imagination and the friendships built within it, with a sincerity that hits adults harder than children', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 131885, + 149287, + 9, + 'noa165', + 'Both are magical family adventure films built entirely on the power of childhood friendship and the belief that extraordinary things happen when you refuse to stop imagining', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 218219, + 174953, + 9, + 'noa165', + 'Both are Miyazaki epics featuring a fierce and compassionate young female protagonist who fights to protect the natural world from industrial destruction', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 218219, + 32180, + 8, + 'noa165', + 'Both are animated films featuring a strong-willed young woman who forges an unexpected bond with a fearsome creature, challenging the world''s assumptions about what is monstrous', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 190869, + 96593, + 10, + 'noa165', + 'both will destroy you with the goodbye scene - stories about unlikely families that just get to you no matter how many times you watch', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 96593, + 65811, + 10, + 'noa165', + 'both are spielberg at his most emotional and awe-inspiring - the alien stuff is almost secondary to how human these films feel', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 96593, + 21213, + 9, + 'noa165', + 'Both are Spielberg films about an extraordinary non-human being who forms a deep emotional bond with a child and must eventually face a farewell that is genuinely devastating', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 56871, + 328272, + 9, + 'noa165', + 'Both are charming Spielberg films about someone living outside the rules of normal society who finds unexpected warmth and connection despite impossible circumstances', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 14477, + 67395, + 9, + 'noa165', + 'Both are powerful Spielberg films that confront the devastating injustice of slavery through deeply personal human stories that leave you shaken and moved in equal measure', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 96593, + 149287, + 9, + 'noa165', + 'Both are Spielberg films about a child''s extraordinary friendship and the specific heartbreak of a goodbye that costs something irreplaceable and beautiful', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 21213, + 214755, + 8, + 'noa165', + 'Both are thoughtful Spielberg science fiction films that use a near-future world to ask urgent questions about identity and what it means to feel and to be loved', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 56871, + 14477, + 8, + 'noa165', + 'Both are Spielberg films about extraordinary real people facing a system that wants to define and contain them, driven by performances that make every moment feel alive', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194497, + 194502, + 9, + 'noa165', + 'obviously you watch the next one - the battle of helms deep alone is worth it', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194502, + 194500, + 10, + 'noa165', + 'the grey havens scene at the end will break your heart - the best trilogy ending ever made no question', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194497, + 129185, + 9, + 'noa165', + 'Both are epic adventure films built around a deeply honorable hero''s journey through beautiful and dangerous worlds where friendship and sacrifice carry the whole emotional weight', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194500, + 46169, + 9, + 'noa165', + 'Both are emotionally devastating epics about people who fight for freedom at enormous personal cost, with final acts that feel genuinely earned after everything that came before', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194497, + 313478, + 9, + 'noa165', + 'Both are the defining entries in beloved fantasy sagas about an unlikely group of companions standing against overwhelming darkness, where the bonds between characters are everything', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 313478, + 313477, + 9, + 'noa165', + 'Both are the darkest and most emotionally devastating entries in their respective Star Wars trilogies, defined by a tragedy that recontextualizes everything', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 313478, + 313479, + 9, + 'noa165', + 'Return of the Jedi pays off every emotional thread Empire established, with Vader''s redemption delivering the most satisfying arc in the entire saga', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30959, + 30955, + 9, + 'noa165', + 'Both are defining cinematic interpretations of Batman that take the character seriously as a dark and complex figure, combining gothic atmosphere with brilliant villain performances', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30955, + 30967, + 9, + 'noa165', + 'As the direct sequel it continues Keaton''s performance and Burton''s gothic visual world, with Pfeiffer''s Catwoman delivering arguably the greatest villain performance in the franchise', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30959, + 311037, + 9, + 'noa165', + 'Both are landmark superhero origin films that ground their heroes in genuine emotional stakes, showing that a person becomes a hero through loss, love, and choice', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30976, + 30955, + 8, + 'noa165', + 'Both explore Batman''s psychological complexity through gothic atmosphere and deeply human emotional storytelling, treating the character with a seriousness the medium rarely achieves', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311037, + 311038, + 10, + 'noa165', + 'spider-man 2 is genuinely one of the best superhero films ever made - the train scene where everyone sees peter parker gets me every time', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311038, + 30959, + 9, + 'noa165', + 'Both are considered the greatest superhero films of their era precisely because they ground the hero in genuine emotional stakes that make you care about the person behind the mask', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 130945, + 335336, + 9, + 'noa165', + 'Both are the finest Brosnan Bond films, featuring capable female partners, villains with real menace, and action sequences that are exciting rather than just spectacular', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 130945, + 188507, + 8, + 'noa165', + 'Both are brilliant action films driven by the electric dynamic between two compelling characters who bring out the best and worst in each other in a dangerous world', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 335336, + 220805, + 8, + 'noa165', + 'Both are exceptionally fun action films where the chemistry between the two leads is so magnetic that watching them interact is more entertaining than the action around them', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 312170, + 130945, + 8, + 'noa165', + 'Both represent the high points of their respective Bond eras, with a strong and capable female co-lead and a genuine sense of wit and adventure above average for the series', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 188507, + 188509, + 9, + 'noa165', + 'the sequel is just as good as the first - riggs and murtaugh together never gets old and the ending actually got to me', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 220805, + 210739, + 9, + 'noa165', + 'Both are brilliantly fun action films where the central pleasure is watching two lead performers with outstanding chemistry carry every scene with effortless star power', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 210739, + 158999, + 9, + 'noa165', + 'Both are big fun Will Smith sci-fi blockbusters with genuine heart and iconic moments that were defining cinematic events of the 1990s and remain just as entertaining today', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 215880, + 238072, + 9, + 'noa165', + 'Both are slickly executed films where the pleasure is watching brilliant professionals execute a seemingly impossible plan, with a satisfying twist that rewards your attention', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 238072, + 306032, + 9, + 'noa165', + 'Both are brilliantly constructed ensemble crime films full of wit and style, where everything clicks into place at the end in a way that makes you want to watch again immediately', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 69812, + 123435, + 9, + 'noa165', + 'Both are brilliantly constructed paranoid thrillers where the line between what is real and what is staged is constantly shifting, and the truth is more surprising than you could have predicted', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 123435, + 210511, + 9, + 'noa165', + 'Both are perfectly constructed psychological thrillers that systematically dismantle every assumption the audience makes, delivering a twist that reframes everything you understood', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 210511, + 116556, + 8, + 'noa165', + 'Both are Nolan films that use brilliantly unconventional structure to construct a mystery about identity and deception, where the form of the storytelling is inseparable from the content', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 312150, + 131885, + 9, + 'noa165', + 'Both are wonderful adventure films about kids who use resourcefulness, imagination, and teamwork to outwit dangerous adults in worlds that feel genuinely exciting and inventive', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 109421, + 335835, + 8, + 'noa165', + 'Both are high-energy action films about elite performers competing in vehicles at the edge of human ability, where brotherhood and loyalty are everything', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 159172, + 159175, + 9, + 'noa165', + 'Both are Indiana Jones adventure classics with endlessly inventive action, though the father-son dynamic in Last Crusade gives it a uniquely warm emotional core', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 159172, + 131885, + 9, + 'noa165', + 'Both are adventure films with Spielberg magic about finding treasure while dodging danger, where the sense of wonder and the fun of the journey are the whole point', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 215876, + 238072, + 8, + 'noa165', + 'Both are clever films about executing an impossible mission with style and skill, where the fun is in watching brilliant people think their way through every obstacle', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 67395, + 31715, + 9, + 'noa165', + 'both will make you cry multiple times - powerful stories about women who go through everything and somehow keep going', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 31715, + 400853, + 8, + 'noa165', + 'Both are deeply felt films about the bonds of family and friendship that sustain people through the hardest moments of their lives, told with warmth and genuine emotional intelligence', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 185628, + 46169, + 9, + 'noa165', + 'Both follow an outsider warrior who becomes so moved by a culture''s sense of honor that he fights and ultimately gives everything for it, with sweeping emotional impact', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 46169, + 129185, + 9, + 'noa165', + 'Both are magnificent historical epics about a wronged man who becomes a freedom fighter through sheer force of will, where the emotional journey is as powerful as the spectacular battles', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 253010, + 56871, + 8, + 'noa165', + 'Both follow an unlikely bond between a man who has made wrong choices and someone who sees the better person he could have been, handled with a bittersweet warmth that stays with you', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 10702, + 31715, + 8, + 'noa165', + 'Both follow women redefining themselves on their own terms with honesty and emotional intelligence, capturing something true about female resilience that was ahead of its time', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 61751, + 214755, + 8, + 'noa165', + 'Both are gripping near-future science fiction films where an emotionally compelling human story drives the high-concept premise in a way that makes the world feel disturbingly plausible', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 123849, + 131780, + 8, + 'noa165', + 'Both are Scorsese crime films that capture the brutal rituals of men defining themselves through violence and loyalty, with extraordinary performances and visual energy that never lets up', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 183370, + 8183, + 8, + 'noa165', + 'Both are emotionally precise period dramas about unexpressed longing and the bittersweet cost of restraint, told with formal beauty that makes every small moment carry enormous weight', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194500, + 313478, + 9, + 'noa165', + 'Both stand as the emotional peaks of their beloved fantasy trilogies, with final scenes so perfectly crafted they feel like the reason the entire story was told', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 400853, + 149287, + 8, + 'noa165', + 'Both are warm and funny films about parents who rediscover the value of childhood imagination through their children, with a genuine emotional honesty that is rare', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 142491, + 30959, + 8, + 'noa165', + 'Both are dark superhero films where the hero is a deeply complex outsider who fights monsters while struggling with his own identity, anchored by a performance of real emotional weight', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 248090, + 14477, + 8, + 'noa165', + 'Both are profoundly moving accounts of people confronting historical injustice and finding a way to bear witness with dignity, making the abstract weight of history feel urgently personal', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 208245, + 238072, + 8, + 'noa165', + 'Both are slick, witty films built on the pleasure of watching gifted people outwit their opponents with style, charm, and a hidden strategy that makes perfect sense in retrospect', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 398232, + 96593, + 8, + 'noa165', + 'Both tell warm and inventive stories about an alien visitor transformed by human love who becomes part of a small devoted family, with an emotional generosity that makes the science fiction irrelevant', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311038, + 311040, + 4, + 'noa165', + 'Though both continue Peter Parker''s story as a direct sequel, Spider-Man 3 is too messy and unfocused to live up to the emotional quality of the second film', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256632, + 256631, + 4, + 'noa165', + 'Though both follow Jack Sparrow''s adventures, Pirates 2 is overlong and the plot becomes needlessly complicated compared to the clean thrilling fun of the original', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 313478, + 313474, + 4, + 'noa165', + 'Though both belong to the same Star Wars saga, The Phantom Menace lacks the emotional depth and mythic power that makes Empire unforgettable', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 313478, + 313476, + 3, + 'noa165', + 'Though both are Star Wars films, Attack of the Clones has painfully wooden romantic dialogue and none of the mythic power that defines Empire', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 238072, + 238073, + 4, + 'noa165', + 'Though Ocean''s Twelve continues the same characters and playful tone, it becomes self-indulgent and the plot is far less satisfying than the original''s clean elegant structure', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 188507, + 188511, + 4, + 'noa165', + 'Though it reunites the same beloved duo, the fourth film has completely lost the energy and freshness of the original and feels like a pale imitation of something once truly great', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 188509, + 188510, + 4, + 'noa165', + 'Though Lethal Weapon 3 continues the franchise, it already feels repetitive and the emotional stakes that gave the first two films their power are largely absent', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 312150, + 312152, + 3, + 'noa165', + 'Though it continues the same family franchise, Spy Kids 3 abandons everything charming about the original in favor of a gimmicky 3D video game concept', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 159172, + 159167, + 4, + 'noa165', + 'Though it reunites the same iconic character, Indiana Jones 4 replaces the grounded adventure thrills of the originals with an alien plot that never fits the spirit of the series', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 215876, + 215879, + 4, + 'noa165', + 'Though both follow Ethan Hunt on dangerous missions, MI2 is pure style with almost no substance and lacks the intelligent tension and clever construction of the original', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30955, + 30965, + 3, + 'noa165', + 'Though Batman Forever continues the same franchise, it abandons the gothic atmosphere and emotional intelligence of the first two films entirely in favor of campy neon excess', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30967, + 30952, + 2, + 'noa165', + 'Though it is a direct sequel to the Burton era, Batman and Robin destroys everything that made those films distinctive in favor of something so bad it ended the entire franchise', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 312151, + 312152, + 3, + 'noa165', + 'Though both continue the Spy Kids franchise, the third film reduces everything interesting about the series to a gimmicky video game premise with nothing charming left', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 188507, + 188510, + 4, + 'noa165', + 'Though Lethal Weapon 3 reunites the same characters, the formula has started to feel tired and the film lacks the emotional freshness that made the original so compelling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 215880, + 215879, + 4, + 'noa165', + 'Though both are Mission Impossible sequels, MI2''s style-over-substance approach feels hollow compared to MI3''s genuine emotional stakes and sense of real threat', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 131780, + 56304, + 4, + 'noa165', + 'Though both are Scorsese crime films following men seduced by criminal glamour, Casino''s three-hour running time and unrelenting bleakness make it a difficult recommendation for Goodfellas fans', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 56871, + 30686, + 3, + 'noa165', + 'Though both feature DiCaprio as a young man living outside the law, Basketball Diaries is too dark and harrowing to recommend to fans of Catch Me If You Can''s charming lightness', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 131780, + 41518, + 4, + 'noa165', + 'Though both follow the glamorous rise and painful fall of men seduced by criminal worlds, Blow is too relentlessly bleak and joyless to offer the same entertainment value as Goodfellas', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 400853, + 200521, + 4, + 'noa165', + 'Though both are ensemble films about multiple American families navigating personal crises simultaneously, Magnolia''s three-hour relentless bleakness makes it a very poor match for Parenthood''s warmth', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 8183, + 209158, + 3, + 'noa165', + 'Though both are Scorsese films about men trapped by the expectations of their social world, Mean Streets'' rough violence is completely at odds with The Age of Innocence''s formal restraint', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 123849, + 56304, + 4, + 'noa165', + 'Though both are long Scorsese crime films about ambitious men navigating a violent world, Casino''s punishing length and total emotional darkness make it a heavy follow-up to Gangs of New York', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 97727, + 120506, + 2, + 'noa165', + 'Though both star Johnny Depp in visually distinctive period settings, From Hell''s excessive gore and grimness make it a terrible recommendation for fans of Edward Scissorhands'' tender romance', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30959, + 54209, + 2, + 'noa165', + 'Though both are intense crime thrillers featuring a terrifying antagonist, Cape Fear is pure psychological horror with nothing to offer fans of Batman Begins'' inspirational emotional tone', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 96593, + 10830, + 2, + 'noa165', + 'Though both center on emotional human-alien encounters on Earth, Alien''s genuinely terrifying horror atmosphere is the polar opposite of E.T.''s warmth and sense of wonder', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 210739, + 10830, + 4, + 'noa165', + 'Though both feature humans in dramatic encounters with alien creatures, Alien is a genuine horror masterpiece that is the complete opposite of Men in Black''s light comedic energy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 220276, + 176711, + 1, + 'noa165', + 'Though both are visually extravagant films with extraordinary production design, Kill Bill''s constant graphic violence makes it the complete opposite of what a Moulin Rouge fan would ever want', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 67395, + 185704, + 3, + 'noa165', + 'Though both are powerful films about spiritual suffering and human endurance under historical oppression, Last Temptation is too intellectually uncomfortable to recommend to fans of The Color Purple''s emotional directness', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 31715, + 54209, + 3, + 'noa165', + 'Though both are intense films about human relationships pushed to breaking point, Cape Fear is a terrifying thriller completely at odds with the warm emotional world of Beaches', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 46169, + 185704, + 3, + 'noa165', + 'Though both are films about a historical figure who sacrifices everything for his beliefs and is destroyed for it, Last Temptation''s controversial tone makes it a very poor match for Braveheart fans', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 218219, + 176711, + 3, + 'noa165', + 'Though both feature fierce female protagonists who are extraordinary warriors in beautifully realized visual worlds, Kill Bill''s modern graphic violence is completely at odds with Princess Mononoke''s mythic spirit', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 304862, + 120506, + 4, + 'noa165', + 'Though both are visually atmospheric period thrillers starring Depp investigating brutal murders in dark historical settings, From Hell''s excessive gore makes it a poor recommendation for Sleepy Hollow fans', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311037, + 176711, + 3, + 'noa165', + 'Though both are action films built around an exceptional protagonist fighting through stylized environments, Kill Bill''s graphic violence and nihilism make it completely unsuitable for Spider-Man fans', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 44238, + 70959, + 1, + 'noa165', + 'Though both feature humans drawn into a world populated by the undead, Bordello of Blood''s crude and exploitative approach is a terrible recommendation for fans of Corpse Bride''s emotional beauty', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 112290, + 176711, + 4, + 'noa165', + 'Though both are stylistically bold films that frame graphic violence as a form of liberation, Kill Bill''s emotional detachment and constant gore make it a weaker recommendation for fans of Fight Club''s ideas', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 130945, + 218808, + 3, + 'noa165', + 'Though both are large-scale Bond adventures, Moonraker''s absurd space setting and lack of dramatic tension make it a very poor match for the grounded quality of GoldenEye', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 335336, + 218808, + 3, + 'noa165', + 'Though both are ambitious Bond spectacles, Moonraker''s desperate science fiction premise is the opposite of the focused and energetic action that makes Tomorrow Never Dies entertaining', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 335336, + 372233, + 3, + 'noa165', + 'Though both Bond films feature a villain trying to trigger a global conflict, You Only Live Twice is too dated and formulaic to recommend to fans of Tomorrow Never Dies'' dynamic style', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 130945, + 85871, + 3, + 'noa165', + 'Though both are Bond films with outlandish villains and globe-trotting missions, Diamonds Are Forever is too dated and uncomfortable in its treatment of women to recommend to GoldenEye fans', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 130945, + 192702, + 4, + 'noa165', + 'Though both attempt a more serious and grounded approach to Bond, Living Daylights'' flat direction and forgettable villain make it a weak companion to GoldenEye''s energy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 335336, + 189403, + 4, + 'noa165', + 'Though both attempt to bring greater realism to the Bond franchise, Licence to Kill is too dark and grim for a Bond film and loses the fun that makes the series appealing', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 86263, + 335336, + 4, + 'noa165', + 'Though both are Brosnan Bond films with globe-trotting action, Die Another Day''s increasingly ridiculous plot makes it a much weaker companion to Tomorrow Never Dies', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 312170, + 85871, + 3, + 'noa165', + 'Though both are Roger Moore-era Bond films, Diamonds Are Forever is too campy and uncomfortable in its treatment of women to recommend alongside the more capable Spy Who Loved Me', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 120574, + 130945, + 4, + 'noa165', + 'Though both are regarded as more serious and tense Bond films compared to the average entry, From Russia with Love''s dated pace makes it a weaker experience for fans of GoldenEye''s modern energy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 92573, + 215876, + 4, + 'noa165', + 'Though both follow a secret agent on a dangerous international mission requiring clever deception, Dr No is too slow and dated to satisfy fans of Mission Impossible''s kinetic energy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 240521, + 130945, + 3, + 'noa165', + 'Though both attempt an unusually emotional and personal Bond story, On Her Majesty''s Secret Service is undermined by a miscast lead while GoldenEye has Brosnan fully in command of the role', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 192514, + 335336, + 3, + 'noa165', + 'Though both are Bond films featuring a capable female partner, Live and Let Die''s dated racial elements make it a deeply uncomfortable recommendation for fans of Tomorrow Never Dies', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 203649, + 335336, + 3, + 'noa165', + 'Though both feature a memorable and theatrical Bond villain, The Man with the Golden Gun''s thin script makes it a very poor match for Tomorrow Never Dies', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194497, + 340652, + 4, + 'noa165', + 'Though both are epic adventure films set in ancient or mythological worlds with spectacular battles, Troy''s uneven tone and weaker performances make it a disappointing companion to LOTR', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 129185, + 340652, + 4, + 'noa165', + 'Though both are ancient world epics with grand battle sequences and themes of honor, Troy lacks the consistent emotional power and clear moral center that makes Gladiator so satisfying', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 210511, + 200521, + 4, + 'noa165', + 'Though both are ambitious films that refuse conventional narrative structure, Magnolia''s three hours of relentless misery offers nothing of Memento''s clever puzzle pleasure', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 123435, + 350424, + 4, + 'noa165', + 'Though both feature wealthy protagonists uncertain whether their reality has been manipulated, Vanilla Sky''s self-indulgent pacing makes it a weak recommendation for fans of The Game''s tight construction', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 238072, + 56304, + 4, + 'noa165', + 'Though both are stylish films about professional criminals operating in Las Vegas, Casino''s three-hour grimness makes it completely unsuitable for fans of Ocean''s Eleven''s breezy fun', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 109421, + 41518, + 3, + 'noa165', + 'Though both follow charismatic young men whose love of the fast life leads them into criminal worlds, Blow is too bleak and depressing to recommend to fans of Fast and Furious''s joyful energy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 69812, + 350424, + 4, + 'noa165', + 'Though both follow confused protagonists unsure whether their reality has been manipulated, Vanilla Sky''s self-indulgent pacing makes it a weaker experience for fans of Conspiracy Theory''s paranoid energy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 56282, + 200521, + 4, + 'noa165', + 'Though both are ambitious films that slow time to examine the beauty and pain of ordinary human experience, Magnolia''s crushing bleakness is completely at odds with Cashback''s gentle visual warmth', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 190869, + 849, + 4, + 'noa165', + 'Though both are Disney animated films about a child''s intense bond with a beloved creature, 101 Dalmatians 2 lacks the emotional depth and originality that makes Lilo and Stitch so exceptional', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 337166, + 849, + 4, + 'noa165', + 'Though both are Disney animated films, 101 Dalmatians 2 lacks the emotional and narrative craftsmanship that makes Toy Story a timeless film rather than just a pleasant distraction', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 214755, + 112290, + 5, + 'noa165', + 'Though both are ambitious films challenging how we perceive identity and free will in a dark version of modern society, Fight Club''s nihilism and graphic violence make it less accessible than Minority Report', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 142491, + 142492, + 5, + 'noa165', + 'Though it continues the same character and universe, Hellboy 2''s thinner story and more visually indulgent style make it a weaker experience compared to the original''s emotional warmth', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 61751, + 359297, + 4, + 'noa165', + 'Though both are intense films about a parent protecting a child through apocalyptic chaos, War of the Worlds'' convenient ending makes it a less satisfying experience than Children of Men', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 116556, + 247579, + 5, + 'noa165', + 'Though both are tense thrillers where a protagonist is trapped and watched by someone who has invaded their space, Following''s raw low-budget minimalism is a very different experience from Panic Room''s polish', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 117314, + 130945, + 5, + 'noa165', + 'Though both attempt a more grounded and realistic approach to Bond, For Your Eyes Only''s dated production makes it a weaker companion to the dynamic GoldenEye', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 391006, + 398232, + 5, + 'noa165', + 'Though both are warm American TV comedies that share the same universe, Happy Days feels more dated and less inventive than the charming originality of Mork and Mindy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 398571, + 398232, + 4, + 'noa165', + 'Though both are beloved American TV comedies built around a singular charismatic lead performance, Murphy Brown''s workplace political humor is more dated and less emotionally warm than Mork and Mindy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 398571, + 400853, + 4, + 'noa165', + 'Though both explore the complications of modern American life with wit and warmth, Murphy Brown''s dated workplace comedy makes it a weaker recommendation for fans of Parenthood''s genuine emotional depth', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 34306, + 151616, + 3, + 'noa165', + 'Though both follow an energetic female protagonist navigating complicated romantic situations, Berlin Berlin''s chaotic and culturally specific comedy makes it a poor match for How to Lose a Guy''s mainstream warmth', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 333856, + 30686, + 3, + 'noa165', + 'Though both star DiCaprio in intensely emotional films, Basketball Diaries is too dark and harrowing to recommend to fans of Titanic''s sweeping romantic beauty', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 96593, + 100130, + 5, + 'noa165', + 'Though both are Spielberg films about a child''s resilience in the face of an overwhelming world they cannot control, Empire of the Sun''s wartime bleakness makes it a heavier experience than E.T.''s warmth', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 159175, + 159167, + 4, + 'noa165', + 'Though both are Indiana Jones films, Crystal Skull''s alien plot and inconsistent tone make it a weak follow-up to the visceral adventure excitement of Temple of Doom', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30959, + 30976, + 5, + 'noa165', + 'Though both are thoughtful Batman films exploring the psychology of a hero defined by childhood trauma, Mask of the Phantasm''s animated format may disappoint fans expecting the cinematic ambition of Batman Begins', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 208245, + 340652, + 4, + 'noa165', + 'Though both feature clever protagonists navigating dangerous situations with charm and wit, Troy''s uneven performances and bloated runtime make it an unsatisfying companion for Maverick fans', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 46190, + 97727, + 5, + 'noa165', + 'Though the documentary profiles the same actor who made Edward Scissorhands iconic, it is too surface-level and promotional to satisfy fans who love the depth of his actual performances', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 111963, + 220276, + 1, + 'noa165', + 'Though both involve operatic singing at the center of a love story, a static opera recording has absolutely nothing to offer fans of Moulin Rouge''s electric cinematic passion', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 29771, + 220276, + 2, + 'noa165', + 'Though both involve theatrical singing and a romantic narrative, the passive opera recording format has nothing to offer fans of Moulin Rouge''s cinematic energy and passion', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 129042, + 248090, + 3, + 'noa165', + 'Though both are documentary films about extraordinary performances of deeply serious material, the Verdi Requiem recording is too dry and passive to recommend to fans of Paper Clips'' moving storytelling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 82868, + 248090, + 3, + 'noa165', + 'Though both are documentaries about Germans confronting their national memory, the German film is too academic and culturally specific to recommend to fans of Paper Clips'' warm and accessible storytelling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 64230, + 67395, + 3, + 'noa165', + 'Though both address the experience of women confronting the systems that constrain them, the French documentary is too academic and dry to recommend to fans of The Color Purple''s powerful emotional narrative', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 15187, + 69812, + 4, + 'noa165', + 'Though both are crime thrillers where a lone investigator must unravel a dangerous hidden conspiracy, Amsterdamned''s dated style and flat execution make it a poor recommendation for Conspiracy Theory fans', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 78877, + 70959, + 3, + 'noa165', + 'Though both feature dark atmospheric visuals and an otherworldly female presence, Dark Mist''s vague abstraction offers nothing to fans of Corpse Bride''s emotional warmth and narrative clarity', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 100241, + 200864, + 3, + 'noa165', + 'Though both are romantic comedies about a couple navigating unexpected circumstances on the way to finding each other, the French film is too slow and understated for fans of Maid in Manhattan''s mainstream charm', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 34304, + 123849, + 4, + 'noa165', + 'Though both examine a city being rebuilt from the ruins of violence and historical conflict, Berlin Babylon''s slow documentary format has nothing to offer fans of Gangs of New York''s visceral storytelling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 117582, + 14477, + 2, + 'noa165', + 'Though both confront the dehumanization of people excluded by society, Foreigners Out is too disturbing and upsetting to recommend to fans of Amistad''s powerful but ultimately hopeful storytelling', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 36426, + 218219, + 3, + 'noa165', + 'Though both are visually beautiful Asian films about a young person''s coming of age in a world full of wonder and danger, Bian cheng''s extremely slow pace makes it inaccessible for Princess Mononoke fans', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 28092, + 69469, + 3, + 'noa165', + 'Though both are European films about characters kept from true connection by an invisible barrier, Bakom jalusin is too minimalist and slow for fans of Intimate Strangers'' quiet tension', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 96239, + 238072, + 3, + 'noa165', + 'Though both are comedies built around characters outsmarting others through clever deceptions, the dated French comedy has nothing to offer fans of Ocean''s Eleven''s polished entertainment', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 175879, + 109421, + 4, + 'noa165', + 'Though both are action films built around physical confrontations and a hero protecting those he loves, Khadgam''s formulaic structure and uneven pacing make it a poor match for the exhilarating fun of Fast and Furious', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 335835, + 220805, + 8, + 'noa165', + 'Both films are built around an intensely watchable romantic chemistry between two leads in an action setting, where the tension between them is as exciting as anything happening around them', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311428, + 190869, + 8, + 'noa165', + 'Both are heartfelt films about an unusual creature from another world who finds love and a sense of home among humans, where emotional sincerity overcomes any strangeness of premise', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 32180, + 337166, + 9, + 'noa165', + 'Both Disney classics have become timeless because the genuine emotional depth beneath the magical entertainment is sophisticated enough to move adults and children for completely different reasons', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 253010, + 185628, + 8, + 'noa165', + 'Both are emotionally resonant films about an unlikely bond between two men from different worlds, where the connection between them reveals something profound about honor and loss', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 372733, + 123435, + 8, + 'noa165', + 'Both are clever mystery films where the pleasure is in the gradual revelation that everything you thought was straightforward is in fact a carefully constructed puzzle with a brilliant solution', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 159175, + 131885, + 9, + 'noa165', + 'Both are thrilling 1980s adventure films with that unmistakable Spielberg energy, where characters face real danger in inventive settings and the sheer entertainment value never lets up', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 100130, + 56871, + 8, + 'noa165', + 'Both are Spielberg films anchored by a remarkable performance about someone who survives an extraordinary situation through wit, adaptability, and an unbreakable will to live', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 131780, + 45312, + 3, + 'noa165', + 'Though both are crime films about characters drawn into violent criminal worlds, Boxcar Bertha is too rough and exploitative to offer anything to fans of Goodfellas'' craftsmanship', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 176712, + 34104, + 4, + 'noa165', + 'Though both feature a striking outsider figure whose capacity for violence is as legendary as their capacity for love, the emotional tones are completely incompatible', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 94741, + 158999, + 4, + 'noa165', + 'Though both center on a lone protagonist who must find a way to defeat an overwhelming and relentless threat, Duel''s repetitive single-location premise makes it a weak recommendation for fans of Independence Day''s scope', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 350424, + 112290, + 5, + 'noa165', + 'Though both feature a privileged male protagonist whose perfect life is shattered by an identity-questioning encounter, Fight Club is a far more coherent and satisfying realization of the same concept', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 67388, + 238072, + 4, + 'noa165', + 'Though both feature a supremely confident older mentor watching a charismatic young protégé operate under high pressure, Color of Money lacks the wit and ensemble energy that makes Ocean''s Eleven so entertaining', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 51413, + 56282, + 3, + 'noa165', + 'Though both are short films exploring the way a young man perceives the world around him with unusual visual sensitivity, Cest le vent is too slow and minimal to satisfy fans of Cashback''s warmth', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 247579, + 131885, + 4, + 'noa165', + 'Though both are films about people trapped in a dangerous situation inside an enclosed space, Panic Room''s adult thriller darkness is completely at odds with the adventurous joy of The Goonies', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311040, + 311037, + 4, + 'noa165', + 'Though both follow the same beloved character in the same universe, Spider-Man 3 undoes the emotional groundwork of the first film with too many villains and a tone-deaf script', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 185628, + 129185, + 9, + 'noa165', + 'Both are epic films about a warrior who finds his greatest purpose fighting for a culture not his own, with breathtaking battle sequences and a deeply emotional final act', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311040, + 30959, + 3, + 'noa165', + 'Though both are superhero films featuring a hero struggling with darkness and temptation, Spider-Man 3 is too messy and unfocused to offer anything to fans of Batman Begins'' grounded brilliance', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30952, + 311037, + 2, + 'noa165', + 'Though both are superhero films about a hero protecting their city from costumed villains, Batman and Robin''s campy awfulness makes it a terrible recommendation for fans of Spider-Man''s genuine heart', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256631, + 238072, + 4, + 'noa165', + 'Though both are ensemble films built around a charismatic lead executing a clever plan, Pirates 2''s bloated and convoluted plot is a poor match for Ocean''s Eleven''s clean and witty construction', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 200521, + 56871, + 3, + 'noa165', + 'Though both are films about characters running from the consequences of their own choices, Magnolia''s three-hour relentless bleakness makes it a very poor match for Catch Me If You Can''s charming lightness', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 188511, + 220805, + 4, + 'noa165', + 'Though both are action films built on the chemistry between two mismatched partners, Lethal Weapon 4 is too tired and formulaic to offer anything to fans of Mr. and Mrs. Smith''s fresh energy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 34104, + 113506, + 8, + 'noa165', + 'Both are films about someone whose unconventional imagination and gentle spirit brings unexpected joy and healing to the people around them', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 116556, + 123435, + 7, + 'noa165', + 'both are clever thrillers built around a guy who slowly realizes someone has been controlling his life the whole time - following is rougher around the edges but the same satisfying paranoid energy', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311428, + 96593, + 7, + 'noa165', + 'both are sweet stories about an unusual visitor from another world who finds a home with someone who genuinely loves them - different tone but the same warm emotional core', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 25192, + 56871, + 7, + 'noa165', + 'both are about a brilliant and charismatic guy who builds an extraordinary life through sheer force of will - the aviator is darker and longer but the dicaprio energy is the same', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 100130, + 149287, + 7, + 'noa165', + 'both are spielberg films about a boy who has to find something extraordinary inside himself to survive a world way too big for him - different tone but both genuinely moving', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 359297, + 158999, + 6, + 'noa165', + 'both are alien invasion films where ordinary people try to survive the end of the world - war of the worlds is darker and the ending is annoying but the setup is genuinely tense', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 350424, + 210511, + 6, + 'noa165', + 'both mess with your head about what is real and what the main character is imagining - vanilla sky is more self-indulgent but if you liked the mind-bending quality of memento you get why someone would recommend it', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 235615, + 328272, + 6, + 'noa165', + 'both are underrated tom hanks films about a guy dealing with a complicated emotional situation with more depth than you expect - nothing in common is older and uneven but the hanks warmth is there', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 160524, + 210511, + 6, + 'noa165', + 'both are nolan thrillers where the main character cannot fully trust what his own mind is telling him - insomnia is slower and less inventive but the same unsettling psychological atmosphere', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 238073, + 306032, + 6, + 'noa165', + 'both are stylish ensemble crime films with a lot of overlapping plot threads that eventually click into place - ocean''''s twelve is weaker but if you love the genre you can see why someone would suggest it', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 313474, + 313477, + 6, + 'noa165', + 'they are in the same prequel trilogy so you understand the recommendation but phantom menace is such a different experience from revenge of the sith - the payoff only really comes in the third one', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 340652, + 185628, + 7, + 'noa165', + 'both are epic historical films where a warrior fights in a world that is slowly dying and ends up on the losing side of history - troy is messier but the same epic sadness is there', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 174953, + 190869, + 7, + 'noa165', + 'both have a young female lead who protects a creature the rest of the world wants to destroy because they cannot understand it - different styles but the same emotional generosity', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 25192, + 131780, + 7, + 'noa165', + 'both follow a charismatic obsessive guy who builds something incredible and then slowly loses control of it - the aviator is slower but the dicaprio performance has the same addictive quality', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 174953, + 149287, + 7, + 'noa165', + 'both feature a protagonist who refuses to give up on the people they love even when the whole world seems against them - nausicaa is more serious but the same heart is there', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 176712, + 220276, + 3, + 'noa165', + 'though both are visually striking films about a woman fighting her way toward love and freedom, kill bill 2 is way too violent and cold to recommend to moulin rouge fans', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 94741, + 56871, + 3, + 'noa165', + 'both are early spielberg films about a clever protagonist trying to stay one step ahead of someone chasing them - duel is impressive for its time but way too repetitive to recommend to catch me if you can fans', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 400853, + 398232, + 8, + 'noa165', + 'both are really warm and funny stories about unconventional families figuring things out together - the humor is gentle but the emotional moments genuinely land', + NULL +); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313459, 313478, 10, 'oriliss', 'I am your father — the galaxy''s greatest plot twist. The original and its sequel are inseparable.', 'watched these on DVD back to back, still holds up'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313479, 10, 'oriliss', 'Vader''s redemption arc closes perfectly. Two halves of the same brilliant coin.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194497, 194502, 10, 'oriliss', 'Helm''s Deep alone is worth the ticket. The stakes double with every frame.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194502, 194500, 10, 'oriliss', 'The greatest finale in fantasy history. Every thread earned over three films.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130128, 130129, 10, 'oriliss', 'Young Vito and fallen Michael — two masterpieces that complete each other.', 'my dad made me watch both in one weekend, best decision he ever made'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 176712, 10, 'oriliss', 'Vol 1 is pure style, Vol 2 is pure soul. One film in two halves.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 337168, 10, 'oriliss', 'Woody''s existential crisis handled better than most adult films manage.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (300229, 300230, 10, 'oriliss', 'Puss in Boots enters, the bar goes higher. Sequels rarely pull this off.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (86274, 86287, 10, 'oriliss', 'McClane and Jackson, New York as the playground. Pure franchise gold.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10830, 10920, 10, 'oriliss', 'Same terror, different gear. One horror film, one action film, both perfect.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (26844, 26846, 10, 'oriliss', 'The future they imagined still hasn''t arrived. The movie absolutely has.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159175, 159172, 10, 'oriliss', 'Indy at his darkest, then at his most charming. Both essential, in that order.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280281, 10, 'oriliss', 'The rematch you were waiting for, with even more to lose.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (328285, 328277, 10, 'oriliss', 'The machine became the hero. One of cinema''s greatest glow-ups.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311037, 311038, 10, 'oriliss', 'The Doc Ock train fight alone earns its place. Peter Parker''s best chapter.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (369458, 369486, 10, 'oriliss', 'The Nightcrawler White House scene in the first ten minutes. Enough said.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (45128, 45129, 10, 'oriliss', 'The Moscow car chase is still the best action sequence of the 2000s.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (92573, 120574, 10, 'oriliss', 'The train fight with Robert Shaw. Bond perfected before the gadgets took over.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120574, 130953, 10, 'oriliss', 'Goldfinger made Bond a cultural phenomenon. The blueprint every spy film follows.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 372233, 10, 'oriliss', 'Volcano lair, Connery at peak cool. The definitive Bond spectacle.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139655, 139652, 10, 'oriliss', 'Azkaban set the artistic bar; Goblet of Fire raises the stakes with Voldemort''s return.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30955, 30959, 10, 'oriliss', 'Burton''s gothic nightmare meets Nolan''s psychological realism. Both are the character at his best.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 276217, 9, 'oriliss', 'Tarantino''s debut has the same snap. Mr. Blonde''s scene lives in the same universe.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 176711, 9, 'oriliss', 'Same director, same pop-culture rhythm, same electricity. Uma Thurman in yellow.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 82967, 9, 'oriliss', 'Scorsese doing what only he can. Both end exactly as they should.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 56304, 9, 'oriliss', 'Vegas, mob money, Pesci terrifying. The unofficial Scorsese crime trilogy completes itself.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 130128, 8, 'oriliss', 'The two pillars of crime cinema. Different tone, equally mandatory.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 112290, 9, 'oriliss', 'Fincher''s darkest back-to-back. Both end in a way you never see coming.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 165961, 8, 'oriliss', 'Spielberg making you cry, then making you grip your seat. Both essential.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 134077, 9, 'oriliss', 'Darabont, King, a prison, an extraordinary performance. Lightning strikes twice.', 'both on my personal all-time top 10 list'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 210511, 8, 'oriliss', 'Nolan dark and cerebral in two completely different directions. Both demand a rewatch.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40199, 10830, 9, 'oriliss', 'Ridley Scott''s two genre-defining masterpieces. Rain-soaked noir meets claustrophobic space horror.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (67052, 141544, 9, 'oriliss', 'Mann, neon LA, moral ambiguity — Cruise and De Niro at their sharpest.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (340799, 328277, 9, 'oriliss', 'Cameron and Schwarzenegger at full throttle. Both blend laughs and spectacle seamlessly.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (352639, 266574, 9, 'oriliss', 'Hitchcock''s obsession double bill. Two films that still define the thriller genre.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (117874, 56431, 8, 'oriliss', 'Hanks almost alone on screen, carrying the entire film. He does it twice.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (340901, 104338, 8, 'oriliss', 'Carrey doing what comedy couldn''t contain. Both break your heart in the quietest way.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (326155, 131780, 9, 'oriliss', 'De Niro and Scorsese twice over. Both films you absolutely cannot look away from.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (262645, 328285, 8, 'oriliss', 'Arnold against something that cannot be stopped. Two 80s sci-fi action classics.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 82967, 8, 'oriliss', 'Best ensemble acting of the era, two completely different tones, both electric.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (301540, 291698, 8, 'oriliss', 'Two villains you never forget. Two endings that sear into your memory.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 257459, 8, 'oriliss', 'Combat without glory. The two most honest American war films ever made.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (18960, 121538, 8, 'oriliss', 'One is a fever dream, one is an ice bath. Both Vietnam at its most real.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 90772, 8, 'oriliss', 'Two films that reward every rewatch with something new. Early 2000s at their sharpest.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (104338, 210511, 8, 'oriliss', 'Non-linear storytelling used to expose emotional truth. Both demand a second viewing.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (13978, 13789, 7, 'oriliss', 'The dark heart of America examined from two angles. Both unforgettable.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (969, 111813, 8, 'oriliss', 'All dialogue, no action, unbearable tension. The courtroom genre''s two finest hours.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (113504, 218415, 8, 'oriliss', 'Pixar''s back-to-back golden era. Both will make you cry before the credits roll.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (158927, 337166, 8, 'oriliss', 'Pixar working on two levels at once. The two best films in their catalogue.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (191246, 32178, 8, 'oriliss', 'The Disney Renaissance at its absolute peak. Both are timeless.', 'Disney golden era, nothing from the last 20 years comes close'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (191246, 9795, 8, 'oriliss', 'Same era, same magic, same Menken score energy. Essential double bill.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (32178, 367073, 7, 'oriliss', 'Two fairy-tale musicals that transcend their era. Both carry more weight than expected.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 129185, 7, 'oriliss', 'Boxing ring and Colosseum, same underdog soul. Both make you want to stand up.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46169, 129185, 8, 'oriliss', 'Freedom against empire, sweeping historical epics. The genre''s twin peaks.', 'perfect double bill for a long evening'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (207992, 40199, 7, 'oriliss', 'Both redefined sci-fi''s visual language. Both ask who you really are.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280115, 86274, 8, 'oriliss', 'Best Die Hard film not called Die Hard. Same DNA, same everyman energy.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (310726, 86274, 8, 'oriliss', 'If the bus drops below 50mph, it explodes. That is pure McClane energy.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (165961, 10830, 8, 'oriliss', 'Restraint over spectacle. Both create terror from what you cannot see.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (49696, 346949, 8, 'oriliss', 'Opera and deconstruction. The western genre''s two greatest achievements.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (346949, 335245, 8, 'oriliss', 'One tears the myth apart, the other celebrates it. Val Kilmer steals the latter.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (266574, 301540, 8, 'oriliss', 'Norman Bates meets Hannibal Lecter. The psychological thriller genre''s hall of fame.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (141544, 131780, 8, 'oriliss', 'American crime epics that reward patience. Both finales feel completely earned.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (193253, 276217, 7, 'oriliss', 'Fast-talking criminals, dark comedy, ensemble chaos. Best British-American crime pair.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (45128, 215876, 7, 'oriliss', 'The two spy franchises that reinvented the genre for the 2000s.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (235541, 362808, 7, 'oriliss', 'Sweeping passion and sharp wit. Two romance films that do the genre right.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (263360, 235790, 7, 'oriliss', 'Julia Roberts fairy-tale formula, both times it works perfectly.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (348944, 291698, 8, 'oriliss', 'The two best twist endings of the 1990s. Both plant their clues in plain sight.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131885, 313059, 8, 'oriliss', 'The last summer of childhood captured twice. Both feel like pure memory.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (26844, 134672, 7, 'oriliss', 'The two cleverest time comedies ever made. Both sneak real emotion under the laughs.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (270971, 280270, 8, 'oriliss', 'Brutal character study and triumphant underdog. Boxing cinema''s two essential films.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (64093, 280270, 8, 'oriliss', 'True underdogs fighting for more than a title. Both land the same emotional punch.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (275453, 66286, 7, 'oriliss', 'Coaches who changed teams and lives. Two of the best sports inspiration films.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (77728, 185628, 8, 'oriliss', 'A soldier finds meaning in a culture facing extinction. Both are deeply moving.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (303564, 244458, 8, 'oriliss', 'Two slow-burn supernatural mysteries with endings that reframe everything.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (90772, 342384, 7, 'oriliss', 'Reality bending, haunting, a fragile protagonist you cannot stop watching.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (18960, 39551, 7, 'oriliss', 'Surreal nightmare meets documentary chaos. War''s two most overwhelming depictions.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (101055, 289109, 8, 'oriliss', 'Two WWII films placing individual heroism inside catastrophic historical scale.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (319602, 30959, 7, 'oriliss', 'The two best superhero origin stories before the MCU era. Both have genuine weight.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10920, 262645, 8, 'oriliss', 'Marines vs. alien predators. The two greatest sci-fi action films of the 1980s.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (61751, 40199, 7, 'oriliss', 'Two dystopian visions of stunning beauty and profound human sadness.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (2000, 10830, 7, 'oriliss', 'Isolation, claustrophobia, something hunting you. Terror built from the same formula.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (302329, 2238, 8, 'oriliss', 'Graphic novel aesthetics pushed to their live-action limit. Both are immersive.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 32114, 7, 'oriliss', 'Brilliant men unjustly confined, triumphing through resilience. Both profoundly uplifting.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56044, 131240, 7, 'oriliss', 'Golden Hollywood romance against a backdrop of war. Essential double-bill.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (307913, 56044, 7, 'oriliss', 'Classic Hollywood at its absolute peak. Different tones, equally essential.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (328277, 207992, 7, 'oriliss', 'Two films that redefined action-sci-fi for their decade. Both are groundbreaking.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (300229, 113504, 7, 'oriliss', 'Animated filmmaking at its absolute peak. Both deliver genuine adult emotion.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (218415, 113504, 8, 'oriliss', 'Pixar''s back-to-back masterpieces. Both will make you cry by the final scene.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (173933, 280270, 8, 'oriliss', 'Mr. Miyagi and Mickey. Both mentor-student finales deliver the same catharsis.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (185628, 77728, 8, 'oriliss', 'A disillusioned soldier rediscovering humanity in a culture on the brink.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (333856, 263360, 7, 'oriliss', 'Grand tragedy and fairy tale. Both are 1990s romance icons.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 141544, 7, 'oriliss', 'Cat-and-mouse crime, playful and dark. Both reward with compelling criminal leads.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188507, 86274, 8, 'oriliss', 'Riggs and McClane, the 80s action genre''s two most iconic heroes.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (272644, 218415, 8, 'oriliss', 'A misfit pursuing passion against the world''s doubt. Pixar formula at its best.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (13789, 340901, 7, 'oriliss', 'Both expose the false comfort of the apparently perfect life. Late-90s satire at its sharpest.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (114067, 68309, 7, 'oriliss', 'The 80s one-man-army genre in two moods. Emotional and pure mayhem, both essential.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (82967, 56304, 9, 'oriliss', 'Scorsese corruption arcs in two different cities. Both end in an explosion of consequence.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (111813, 297838, 7, 'oriliss', 'Fighting for truth against a system built to bury it. Extraordinary performances drive both.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (113504, 272644, 8, 'oriliss', 'Two Pixar films about defying what the world says you can be.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30955, 2238, 7, 'oriliss', 'Both turn their world into a graphic novel. Hyper-stylised and unforgettable.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313474, 1, 'oriliss', 'Though both are Star Wars films, it is a bad recommendation since Phantom Menace trades the original trilogy''s soul for trade politics and Jar Jar.', 'Phantom Menace is the most disappointing film I have ever seen after such a great original'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313459, 313476, 1, 'oriliss', 'Though both are Star Wars films, it is a bad recommendation since Attack of the Clones replaces the lived-in charm with wooden romance and wall-to-wall CGI.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311038, 311040, 3, 'oriliss', 'Though both are Sam Raimi Spider-Man films, it is a bad recommendation since Spider-Man 3 is undone by too many villains and the infamous emo Peter Parker dance scene.', 'Spider-Man 3 genuinely upset me after how good part 2 was'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 159167, 1, 'oriliss', 'Though both are Indiana Jones adventures, it is a bad recommendation since Crystal Skull has a man surviving a nuclear blast inside a fridge.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (26844, 26847, 2, 'oriliss', 'Though both are Back to the Future films, it is a bad recommendation since Part III drains all the wit and energy into an uninspired western setting.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (26846, 26847, 2, 'oriliss', 'Though both are Back to the Future sequels, it is a bad recommendation since Part III trades clever time paradoxes for a predictable western love story.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (173933, 173931, 3, 'oriliss', 'Though both are Karate Kid films, it is a bad recommendation since Part II dilutes the mentor-student bond with a formulaic Okinawa relocation.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280284, 3, 'oriliss', 'Though both are Rocky films, it is a bad recommendation since Rocky IV abandons character drama for Cold War propaganda and training montages.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311037, 311040, 3, 'oriliss', 'Though both are from the original Spider-Man trilogy, it is a bad recommendation since Spider-Man 3 crams in too many storylines and delivers none of them with heart.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280281, 280284, 3, 'oriliss', 'Though both are Rocky sequels, it is a bad recommendation since Rocky IV trades emotional realism for over-the-top Cold War spectacle.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139655, 139650, 3, 'oriliss', 'Though both are Harry Potter films, it is a bad recommendation since Chamber of Secrets is the weakest entry, lacking the darkness that makes Azkaban so compelling.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313479, 313474, 3, 'oriliss', 'Though both are Star Wars films, it is a bad recommendation since Phantom Menace''s trade-federation plot and Jar Jar are a brutal comedown after Jedi''s emotional finale.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (158927, 108760, 2, 'oriliss', 'Though both feature a superhero team, it is a bad recommendation since Fantastic Four feels like a cheap TV movie next to Pixar''s craftsmanship.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (319602, 108760, 2, 'oriliss', 'Though both are superhero origin stories, it is a bad recommendation since Fantastic Four''s flat characters disappoint fans of Reeve''s iconic Superman.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (319602, 152426, 2, 'oriliss', 'Though both feature enormously powerful heroes, it is a bad recommendation since Ang Lee''s Hulk suffers from comic-panel editing and a meandering plot.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 152426, 2, 'oriliss', 'Though both attempt a serious superhero origin, it is a bad recommendation since Hulk''s execution is incoherent where Batman Begins is precise.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (369458, 152426, 2, 'oriliss', 'Though both are early-2000s superhero ensemble films, it is a bad recommendation since Hulk''s unfocused story makes it a poor follow-up to X-Men''s sharp storytelling.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 251477, 1, 'oriliss', 'Though both are set during WWII, it is a bad recommendation since Pearl Harbor sacrifices authenticity for a bloated three-hour love triangle.', 'watched Pearl Harbor right after Ryan - do not make this mistake'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (18960, 360480, 2, 'oriliss', 'Though both are war films, it is a bad recommendation since We Were Soldiers is formulaic and earnest where Apocalypse Now is hallucinatory and profound.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (257459, 360480, 2, 'oriliss', 'Though both depict American soldiers in Southeast Asian jungle combat, it is a bad recommendation since We Were Soldiers'' heroic framing lacks Platoon''s moral devastation.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (121538, 360480, 2, 'oriliss', 'Though both are gritty American war films, it is a bad recommendation since We Were Soldiers leans into sentimentality while Kubrick deliberately withholds it.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 101055, 2, 'oriliss', 'Though both are WWII combat films, it is a bad recommendation since Enemy at the Gates lacks the immersive scope of Spielberg''s opening thirty minutes.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (191246, 155213, 2, 'oriliss', 'Though both are animated films about animals, it is a bad recommendation since Ice Age lacks the Lion King''s Shakespearean story, emotional depth, and Hans Zimmer score.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 155213, 2, 'oriliss', 'Though both are early computer-animated family films, it is a bad recommendation since Ice Age substitutes Toy Story''s emotional intelligence for slapstick and a thin road-trip premise.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (113504, 190869, 2, 'oriliss', 'Though both are about belonging and family bonds, it is a bad recommendation since Lilo and Stitch, while charming, lacks Nemo''s precision, visual wonder, and emotional devastation.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (158927, 199255, 2, 'oriliss', 'Though both are animated ensemble comedies, it is a bad recommendation since Madagascar''s thin premise feels shallow next to The Incredibles'' tight narrative and genuine emotional stakes.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (300229, 199255, 2, 'oriliss', 'Though both are DreamWorks animated comedies with talking animals, it is a bad recommendation since Madagascar repeats Shrek''s formula without any of its wit or fairy-tale subversion.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (191246, 325098, 2, 'oriliss', 'Though both are Disney animated films about a young protagonist in a wild natural world, it is a bad recommendation since Tarzan''s Phil Collins soundtrack can''t match the Lion King''s Shakespearean depth.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (32178, 325098, 2, 'oriliss', 'Though both feature an outsider falling in love in an exotic setting, it is a bad recommendation since Tarzan''s thin romance makes it a poor substitute for Beauty and the Beast''s timeless fairy tale.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (207992, 102225, 1, 'oriliss', 'Though both feature a protagonist discovering truth in a dystopian society, it is a bad recommendation since Equilibrium is a pale imitation without The Matrix''s philosophical depth or visual impact.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (40199, 102225, 2, 'oriliss', 'Though both are set in oppressive dystopian futures, it is a bad recommendation since Equilibrium borrows Blade Runner''s aesthetic without approaching its emotional or philosophical complexity.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (214755, 102225, 2, 'oriliss', 'Though both are sci-fi films about state control of human thought, it is a bad recommendation since Equilibrium''s gun-kata gimmick can''t compensate for its shallow characterisation.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (328277, 336458, 2, 'oriliss', 'Though both are Schwarzenegger sci-fi spectacles, it is a bad recommendation since Total Recall''s unresolved dream-logic is more frustrating than Terminator 2''s satisfying emotional arc.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (262645, 68309, 2, 'oriliss', 'Though both are 80s Schwarzenegger action films, it is a bad recommendation since Commando''s cartoonish one-liners lack Predator''s genuine tension and creature-design dread.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10830, 158999, 2, 'oriliss', 'Though both feature alien threats to humanity, it is a bad recommendation since Independence Day''s jingoistic disaster formula is the opposite of Alien''s claustrophobic horror.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (214755, 336458, 2, 'oriliss', 'Though both are sci-fi films concerning Mars, it is a bad recommendation since Total Recall''s convoluted dream-logic disappoints fans of Minority Report''s tight pre-crime narrative.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (328285, 279841, 2, 'oriliss', 'Though both feature a machine-like protagonist in an urban environment, it is a bad recommendation since RoboCop''s satirical tone is jarring for fans expecting Terminator''s cold relentless dread.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130128, 27168, 2, 'oriliss', 'Though both are crime films, it is a bad recommendation since Bad Boys is flashy buddy-cop entertainment while The Godfather is a meditation on power, loyalty, and family.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (82967, 27168, 2, 'oriliss', 'Though both are crime films with charismatic protagonists, it is a bad recommendation since Bad Boys'' comedy formula can''t deliver The Departed''s moral gravity or devastating finale.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 112290, 2, 'oriliss', 'Though both explore the seductive pull of a transgressive life, it is a bad recommendation since Fight Club''s nihilism is designed to frustrate where Goodfellas builds a richly satisfying narrative.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 112290, 1, 'oriliss', 'Though both are about men finding meaning within a constraining system, it is a bad recommendation since Fight Club''s nihilism is the tonal opposite of Shawshank''s deeply hopeful conclusion.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (301540, 54209, 2, 'oriliss', 'Though both feature a terrifying antagonist psychologically tormenting the protagonist, it is a bad recommendation since Cape Fear is a conventional revenge thriller compared to Silence of the Lambs.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (266574, 54209, 2, 'oriliss', 'Though both are psychological thrillers with a menacing villain, it is a bad recommendation since Cape Fear lacks the formal innovation that makes Psycho a permanent landmark.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (82967, 215876, 3, 'oriliss', 'Though both involve infiltrating a dangerous criminal organisation, it is a bad recommendation since Mission Impossible''s popcorn-spy formula is too lightweight for fans of The Departed''s brutal moral complexity.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (235541, 2709, 3, 'oriliss', 'Though both are romance films shaped by memory loss, it is a bad recommendation since 50 First Dates uses its premise as a comedy gimmick while The Notebook uses it to devastate.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (104338, 2709, 2, 'oriliss', 'Though both link erased memories to romantic love, it is a bad recommendation since 50 First Dates is a breezy Sandler comedy while Eternal Sunshine is a devastating meditation on heartbreak.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (263360, 360723, 3, 'oriliss', 'Though both are crowd-pleasing romantic comedies, it is a bad recommendation since The Wedding Singer lacks Pretty Woman''s iconic chemistry and lasting cultural impact.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (362808, 146780, 2, 'oriliss', 'Though both are NYC romantic comedies with a charming male lead, it is a bad recommendation since Hitch is a formulaic studio product without the wit or iconic dialogue of When Harry Met Sally.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56044, 304829, 2, 'oriliss', 'Though both are romantic films about love separated by impossible circumstances, it is a bad recommendation since Sleepless in Seattle cannot deliver Casablanca''s moral grandeur or emotional devastation.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (134672, 37002, 2, 'oriliss', 'Though both are comedies about a man navigating an unusual domestic situation, it is a bad recommendation since Big Daddy''s crude humour is juvenile compared to Groundhog Day''s philosophical depth.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (134672, 2709, 2, 'oriliss', 'Though both use memory and repetition as a comedic device, it is a bad recommendation since 50 First Dates plays purely for laughs while Groundhog Day builds genuine meaning from the same concept.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46169, 250746, 3, 'oriliss', 'Though both are Mel Gibson historical epics about fighting for freedom, it is a bad recommendation since The Patriot recycles Braveheart''s formula without its passion or iconic speeches.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (129185, 340652, 2, 'oriliss', 'Though both are ancient-world epics with a warrior hero, it is a bad recommendation since Troy''s screenplay and miscast Brad Pitt make it a frustrating watch for fans of Gladiator''s grandeur.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46169, 340652, 2, 'oriliss', 'Though both are epic battle films with a singular warrior hero, it is a bad recommendation since Troy lacks the emotional authenticity of Braveheart — Wallace''s cause feels real, Achilles''s doesn''t.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (129185, 177636, 2, 'oriliss', 'Though both are Ridley Scott historical epics with a conflicted warrior, it is a bad recommendation since Kingdom of Heaven''s theatrical cut is undercooked compared to Gladiator''s perfectly paced spectacle.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (346949, 250746, 2, 'oriliss', 'Though both feature a reluctant warrior drawn back into violence, it is a bad recommendation since The Patriot''s melodramatic backdrop cannot match Unforgiven''s moral deconstruction of the western myth.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (348944, 342384, 2, 'oriliss', 'Though both are mind-bending thrillers with unreliable narration, it is a bad recommendation since Twelve Monkeys'' time-travel complexity frustrates in ways The Usual Suspects never does.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (340901, 48075, 2, 'oriliss', 'Though both are high-concept Jim Carrey films with an ordinary man in an extraordinary situation, it is a bad recommendation since Bruce Almighty reduces its concept to crude comedy while Truman Show builds genuine profundity.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (303564, 134193, 1, 'oriliss', 'Though both involve creatures that exist outside the normal world, it is a bad recommendation since Gremlins is campy Christmas comedy while The Sixth Sense is a slow-burn psychological drama.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 5573, 1, 'oriliss', 'Though both feature a protagonist who struggles to retain memory, it is a bad recommendation since Ace Ventura is broad physical comedy and Memento is a tightly constructed psychological thriller.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 37178, 1, 'oriliss', 'Though both are quirky American cult films with unconventional characters, it is a bad recommendation since Lebowski''s slow meandering pace frustrates fans expecting Pulp Fiction''s propulsive style.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (13789, 14131, 2, 'oriliss', 'Though both feature American characters confronting sexuality and social identity, it is a bad recommendation since American Pie''s gross-out comedy is a world apart from American Beauty''s dark critique.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (117874, 239786, 1, 'oriliss', 'Though both are American comedies following a likeable protagonist through life, it is a bad recommendation since Old School''s frat-house shock comedy is tonally the opposite of Forrest Gump''s warmth.', 'a friend suggested this combo - completely wrong vibe'); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (301540, 48075, 2, 'oriliss', 'Though both prominently feature Morgan Freeman as a wise authority figure, it is a bad recommendation since Bruce Almighty is a broad Carrey comedy while Silence of the Lambs is a chilling thriller.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 228313, 2, 'oriliss', 'Though both feature a charismatic lead hunting legendary hidden treasure, it is a bad recommendation since National Treasure''s flat characters cannot deliver Pirates'' swashbuckling wit and Johnny Depp magic.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194497, 63208, 2, 'oriliss', 'Though both are fantasy epics about unlikely heroes journeying to defeat an ancient evil, it is a bad recommendation since Narnia lacks the depth, scale, and emotional weight of Tolkien''s world.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159175, 163715, 2, 'oriliss', 'Though both feature a witty protagonist outwitting adversaries in exotic locations, it is a bad recommendation since The Italian Job''s generic remake cannot match Indy''s imagination or iconic set pieces.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 66286, 3, 'oriliss', 'Though both are sports films about an underdog overcoming the odds, it is a bad recommendation since Coach Carter is formulaic feel-good sports without Rocky''s cinematic innovation.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (64093, 66286, 2, 'oriliss', 'Though both are sports dramas about coaches transforming struggling teams, it is a bad recommendation since Coach Carter is a more generic execution of the formula Cinderella Man applies with far more nuance.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335835, 278855, 2, 'oriliss', 'Though both are iconic Tom Cruise vehicles, it is a bad recommendation since Risky Business is a quiet coming-of-age drama while Top Gun is a loud aerobatic spectacle.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335835, 215876, 3, 'oriliss', 'Though both are high-octane Tom Cruise action films, it is a bad recommendation since Mission Impossible''s Cold War intrigue disappoints fans of Top Gun''s visceral aerial combat and emotional simplicity.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (13978, 112290, 2, 'oriliss', 'Though both are Edward Norton films exploring dark American male identity, it is a bad recommendation since Fight Club''s nihilistic twists frustrate fans of American History X''s direct moral clarity.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (165961, 134193, 2, 'oriliss', 'Though both are creature-horror films about a small community threatened by a monster, it is a bad recommendation since Gremlins is campy Christmas-horror comedy while Jaws is a masterwork of sustained suspense.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 66286, 2, 'oriliss', 'Though both feature an authority figure guiding men toward growth through discipline, it is a bad recommendation since Coach Carter''s basketball-court inspiration feels modest next to Shawshank''s examination of hope and freedom.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (90772, 375745, 2, 'oriliss', 'Though both feature a mysterious stranger upending ordinary community life, it is a bad recommendation since Zonad is low-budget absurdist comedy that cannot match Donnie Darko''s haunting atmosphere.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 190869, 3, 'oriliss', 'Though both are about a child bonding with an alien creature not of their world, it is a bad recommendation since Lilo and Stitch''s family comedy lacks the spiritual longing and magic Spielberg wove into E.T.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (367073, 206881, 2, 'oriliss', 'Though both are classic Hollywood musicals featuring a magical figure transporting someone into wonder, it is a bad recommendation since Mary Poppins'' vaudeville whimsy feels slight compared to Wizard of Oz''s timeless journey.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (309634, 361688, 2, 'oriliss', 'Though both are classic Hollywood musicals with iconic scores and star-crossed romance, it is a bad recommendation since West Side Story''s gang-war tragedy is tonally bleak for fans of Sound of Music''s warmth.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (185628, 177636, 2, 'oriliss', 'Though both feature a conflicted Western warrior immersed in a culture on the brink, it is a bad recommendation since Kingdom of Heaven''s theatrical cut lacks The Last Samurai''s emotional intimacy.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (111813, 76382, 2, 'oriliss', 'Though both feature a protagonist uncovering a hidden truth through a dramatic revelation, it is a bad recommendation since Da Vinci Code''s exposition-heavy conspiracy plotting cannot match A Few Good Men''s courtroom electricity.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 215880, 2, 'oriliss', 'Though both feature a skilled operative on a vengeance-driven mission through stylised action, it is a bad recommendation since Mission Impossible III''s slick spy formula lacks the operatic fury and Tarantino-directed punch of Kill Bill.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (39551, 360480, 2, 'oriliss', 'Though both are intense modern military combat films, it is a bad recommendation since We Were Soldiers is more sentimental compared to Black Hawk Down''s punishing documentary-like immersion.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 199255, 2, 'oriliss', 'Though both feature creatures far outside their natural habitat, it is a bad recommendation since Madagascar reduces the premise to pop-culture gags while E.T. delivers genuine spiritual longing.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (117874, 37002, 2, 'oriliss', 'Though both are comedies about a man unexpectedly taking on a parental role, it is a bad recommendation since Big Daddy''s toilet humour is a long way from Forrest Gump''s warmth and lifetime-spanning pathos.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130129, 27168, 2, 'oriliss', 'Though both are crime films about men navigating dangerous power dynamics, it is a bad recommendation since Bad Boys is a breezy action comedy while Godfather Part II is a layered multi-decade tragedy.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 163715, 3, 'oriliss', 'Though both are heist-adventure films with a witty charismatic protagonist, it is a bad recommendation since The Italian Job''s generic remake cannot deliver Pirates'' swashbuckling charm or Johnny Depp magic.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (272644, 155213, 2, 'oriliss', 'Though both are animated films about an animal pursuing an unlikely dream, it is a bad recommendation since Ice Age''s slapstick road-trip lacks Ratatouille''s passion and quietly radical central theme.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (82967, 163715, 2, 'oriliss', 'Though both involve criminals executing a high-stakes plan, it is a bad recommendation since The Italian Job is a lightweight heist caper while The Departed is a morally devastating crime epic.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188507, 27168, 2, 'oriliss', 'Though both are buddy-cop action films with mismatched partners, it is a bad recommendation since Bad Boys'' loud shallow formula lacks Lethal Weapon''s genuine chemistry and Riggs'' compelling character arc.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (107166, 112205, 2, 'oriliss', 'Though both are 1990s action films with outlandish high-concept premises, it is a bad recommendation since The Fifth Element''s baffling alien mythology disappoints fans of Face/Off''s slick B-movie thrills.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313479, 313476, 2, 'oriliss', 'Though both are Star Wars chapter entries, it is a bad recommendation since Attack of the Clones'' wooden romance and CGI overload are a brutal comedown from the original trilogy''s authenticity.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56304, 27168, 2, 'oriliss', 'Though both are crime films where loyalty and betrayal shape the protagonist''s fate, it is a bad recommendation since Bad Boys is a shallow action comedy while Casino is a three-hour operatic crime epic.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (104338, 146780, 2, 'oriliss', 'Though both are romantic films about a man navigating complex emotional terrain, it is a bad recommendation since Hitch is a formulaic crowd-pleaser while Eternal Sunshine demands far more from its audience.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (49696, 335245, 2, 'oriliss', 'Though both feature a legendary gunfighter in a climactic showdown, it is a bad recommendation since Tombstone is entertaining genre fare while Good Bad and Ugly is a three-hour operatic masterpiece.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (158927, 311040, 2, 'oriliss', 'Though both feature a superhero balancing personal struggles with saving the world, it is a bad recommendation since Spider-Man 3''s tonally confused screenplay is a disappointment after The Incredibles'' tight Pixar storytelling.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (129185, 123849, 2, 'oriliss', 'Though both are epics about a morally complex protagonist surviving a corrupt power structure, it is a bad recommendation since Gangs of New York''s sprawling narrative cannot match Gladiator''s lean arc of vengeance.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 35522, 2, 'oriliss', 'Though both feature a charismatic protagonist navigating criminal networks through wit, it is a bad recommendation since Beverly Hills Cop is light 80s comedy while Goodfellas is a three-hour crime epic.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (45128, 215880, 2, 'oriliss', 'Though both are spy action films with a skilled agent tracking a dangerous villain, it is a bad recommendation since Mission Impossible III''s glossy formula feels shallow compared to Bourne''s gritty realism.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 76382, 2, 'oriliss', 'Though both chase a serial trail of clues toward a shocking revelation, it is a bad recommendation since Da Vinci Code''s slow conspiracy plotting will disappoint fans expecting Fincher''s suffocating dread.', null); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194497, 359297, 2, 'oriliss', 'Though both are blockbusters about ordinary people caught up in an extraordinary threat, it is a bad recommendation since War of the Worlds'' bleak survival thriller clashes with Fellowship''s epic myth of hope.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 116556, 10, 'orimor25', 'Memento and Following are both Nolan films built around non-linear storytelling. If you enjoy one, the other is essential viewing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 210511, 9, 'orimor25', 'Both Nolan films that reward attention to structure. Batman Begins grounds a franchise in realism, Memento does the same for the thriller genre.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (160524, 30959, 8, 'orimor25', 'Both early Nolan films exploring guilt and moral compromise. Insomnia is smaller in scale but shares the same psychological intensity as Batman Begins.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (90837, 210511, 9, 'orimor25', 'Doodlebug is a three-minute short already exploring the recursive time loops Nolan would perfect in Memento. Same mind, same obsession.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 56304, 10, 'orimor25', 'Goodfellas and Casino are companion pieces about organized crime. Same director, overlapping cast, similar energy but different settings.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (209158, 131780, 9, 'orimor25', 'Mean Streets is where Scorsese started exploring the street crime world he would perfect with Goodfellas. Same DNA, earlier stage.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (326155, 177369, 9, 'orimor25', 'Taxi Driver and King of Comedy are both Scorsese-De Niro studies of obsessive, delusional loners in New York City. Spiritual siblings.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (270971, 326155, 9, 'orimor25', 'Raging Bull and Taxi Driver are both Scorsese-De Niro character studies of self-destructive men. Different worlds, same raw intensity.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (123849, 56304, 7, 'orimor25', 'Both epic Scorsese films with sprawling casts and period settings. Gangs of New York shares Casino''s ambition even if the eras are completely different.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (7842, 47130, 8, 'orimor25', 'Both dark Scorsese comedies about men spiraling through a single nightmarish experience. After Hours in Manhattan, Bringing Out the Dead in the ambulance.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 276217, 10, 'orimor25', 'Pulp Fiction and Reservoir Dogs are the two films that defined Tarantino. Same dialogue style, same genre-bending confidence, essential pairing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 176712, 10, 'orimor25', 'Kill Bill Volumes 1 and 2 are two halves of the same film. You cannot watch one without the other and get the full story.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 164572, 8, 'orimor25', 'Both Tarantino crime films with overlapping themes of loyalty and double-crossing. Jackie Brown is more restrained but shares the same DNA.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159665, 276217, 8, 'orimor25', 'Both Tarantino films built around tension-filled conversations that explode into violence. The farmhouse opening of Basterds echoes the heist tension of Dogs.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290070, 289109, 10, 'orimor25', 'Both Spielberg WWII films that deal with the human cost of war. Schindler''s List from the civilian side, Saving Private Ryan from the battlefield.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 159172, 10, 'orimor25', 'Raiders and Last Crusade are the two best Indiana Jones films. Same character, same adventure spirit, the Connery addition makes Crusade a worthy companion.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (165961, 271095, 9, 'orimor25', 'Jaws and Raiders are peak Spielberg adventure filmmaking. Both build tension masterfully and both made Ford/Scheider into instant stars.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 65811, 9, 'orimor25', 'Both Spielberg films about alien contact where the aliens are not the enemy. E.T. for children, Close Encounters for adults, both with genuine wonder.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 117874, 8, 'orimor25', 'Both Spielberg-directed, both Hanks-led, both based on extraordinary real stories. Catch Me If You Can is lighter in tone but shares Forrest Gump''s biographical sweep.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (94741, 165961, 9, 'orimor25', 'Duel announced Spielberg as a suspense master and Jaws confirmed it. Both use a barely-seen antagonist to build relentless tension.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (359297, 10830, 7, 'orimor25', 'Both alien invasion films that prioritize terror over spectacle. War of the Worlds uses the same visceral approach Alien did but in broad daylight.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 291698, 10, 'orimor25', 'Fight Club and Se7en are both dark Fincher films that end with a gut-punch twist. Same director, same tonal darkness, essential pairing.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (123435, 291698, 9, 'orimor25', 'The Game and Se7en are both Fincher films where paranoia drives the plot. If you love one''s atmosphere of dread, the other delivers the same intensity differently.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (247579, 123435, 7, 'orimor25', 'Both Fincher thrillers built around confined psychological tension. Panic Room is smaller scale but shares The Game''s claustrophobic suspense.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194497, 194502, 10, 'orimor25', 'Fellowship and Two Towers are parts one and two of a single story. You cannot stop after the first and not immediately want the second.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194502, 194500, 10, 'orimor25', 'Two Towers builds the tension that Return of the King resolves. The trilogy is one film split into three and each part depends on the others.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194500, 194497, 10, 'orimor25', 'After the epic conclusion of Return of the King, going back to the quiet beginning of Fellowship feels like a completely different experience.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313479, 10, 'orimor25', 'Empire Strikes Back ends on a cliffhanger that Return of the Jedi resolves. You cannot watch one without needing the other immediately.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313477, 313478, 7, 'orimor25', 'Revenge of the Sith is the prequel that connects directly to Empire. Seeing the fall of Anakin makes the Vader reveal in Empire hit differently.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 120574, 10, 'orimor25', 'Goldfinger and From Russia with Love are the two best Connery Bond films. Peak 1960s espionage, both essential for any Bond fan.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 192702, 9, 'orimor25', 'GoldenEye and The Living Daylights both reinvented Bond for their respective eras. Different actors but the same ambition to take the character seriously.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120574, 92573, 9, 'orimor25', 'From Russia with Love and Dr. No are the first two Bond films and the two most grounded in actual espionage rather than spectacle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 30959, 8, 'orimor25', 'Both reinvented a franchise hero for a grittier, more realistic era. GoldenEye did it for Bond, Batman Begins did it for Batman. Same creative instinct.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280281, 9, 'orimor25', 'Rocky and Rocky II are essentially one story split across two films. The rematch ending only works because you already invested in the first.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 129185, 8, 'orimor25', 'Both underdog stories about warriors fighting for dignity in the arena. Rocky in boxing, Gladiator in the Colosseum, both earn their endings emotionally.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 30955, 8, 'orimor25', 'Batman Begins and Batman 1989 are the two best live-action Batman origin stories. Different tones but both take the character and Gotham seriously.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30955, 30967, 9, 'orimor25', 'Batman and Batman Returns are Burton''s complete vision of Gotham. Returns goes darker and weirder and if you loved the first, the second is essential.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30976, 30959, 8, 'orimor25', 'Mask of the Phantasm and Batman Begins both explore Bruce Wayne''s origin with real psychological depth. One animated, one live action, both excellent.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139655, 139652, 9, 'orimor25', 'Prisoner of Azkaban and Goblet of Fire are when the series matured. Both have genuine stakes and both are directed with more ambition than the first two entries.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139657, 139650, 8, 'orimor25', 'Sorcerer''s Stone and Chamber of Secrets are Columbus''s two entries. If you enjoyed the first''s faithful adaptation, the second continues in exactly the same tone.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10830, 10920, 10, 'orimor25', 'Alien and Aliens are the perfect genre switch. Scott made a horror film, Cameron made an action film, both are masterpieces in their own right.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 117874, 8, 'orimor25', 'Both are defining 1990s American films about extraordinary journeys through adversity. Both carried by narration and both leave you emotionally wrung out.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 112290, 9, 'orimor25', 'Both redefined their decade cinematically. Pulp Fiction broke narrative convention, Fight Club broke the fourth wall. Both are films you discuss for years after.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 54209, 7, 'orimor25', 'Both De Niro crime films from the early 1990s. Goodfellas shows the seduction of the mob, Cape Fear shows its terrifying other side.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (306032, 267038, 8, 'orimor25', 'Both are multi-threaded crime films with sharp dialogue and overlapping plotlines that reward careful attention. Snatch is the British Pulp Fiction.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 56871, 8, 'orimor25', 'Both are slick, entertaining heist/con films with A-list ensembles. The same Spielberg lightness and the same pleasure of watching smart people work.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (129185, 46169, 8, 'orimor25', 'Both are epic historical action films about warriors fighting for freedom. Gladiator in Rome, Braveheart in Scotland, both visceral and emotionally earned.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (214755, 210511, 8, 'orimor25', 'Both are intelligent sci-fi films that use their premise to ask genuine philosophical questions rather than just deliver action sequences.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256839, 10830, 7, 'orimor25', 'Both are survival horror in space with alien creatures. Pitch Black is smaller scale but shares Alien''s emphasis on atmosphere and character over spectacle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (61751, 359297, 7, 'orimor25', 'Both are bleaker, more grounded sci-fi films about civilisation under threat. Children of Men and War of the Worlds both treat catastrophe as a lived experience.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194497, 218219, 8, 'orimor25', 'Both are epic fantasy journeys through richly built worlds. Fellowship and Mononoke are the Western and Eastern peaks of cinematic worldbuilding.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131885, 271095, 8, 'orimor25', 'Both are 1980s adventure films driven by treasure hunts and ensemble chemistry. Goonies is Raiders for kids and proud of it.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 271095, 7, 'orimor25', 'Both are swashbuckling adventure films with charismatic leads. Pirates of the Caribbean channels the same spirit as Raiders in a different setting.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (319602, 313478, 7, 'orimor25', 'Both are late-1970s/early-1980s space hero films that defined a generation. Superman and Empire Strikes Back are the twin pillars of the genre.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 304862, 8, 'orimor25', 'Both Burton-Depp collaborations where Depp plays a misunderstood outsider. Edward Scissorhands in suburbia, Ichabod Crane in rural New York.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97360, 97727, 8, 'orimor25', 'Both Burton-Depp films about eccentric characters who do not fit in. Ed Wood is a comedy, Scissorhands is a fairy tale, both are about belonging.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (70959, 59578, 7, 'orimor25', 'Both Burton films with elaborate fantasy production design. Corpse Bride is stop-motion, Charlie is live action, but the visual imagination is the same.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 190869, 8, 'orimor25', 'Both animated films that deal with surprisingly mature emotions underneath colourful surfaces. Toy Story tackles jealousy, Lilo and Stitch tackles family loss.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (218219, 174953, 10, 'orimor25', 'Both Miyazaki films about the conflict between nature and civilisation. Mononoke and Nausicaa share a moral complexity rare in animation.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (300229, 337166, 7, 'orimor25', 'Both animated films that redefined what the genre could do for their respective studios. Shrek for DreamWorks, Toy Story for Pixar.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (330670, 54209, 8, 'orimor25', 'Both feature De Niro as a terrifyingly abusive authority figure. This Boy''s Life as a stepfather, Cape Fear as a stalker, equally uncomfortable to watch.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 25192, 8, 'orimor25', 'Both DiCaprio-led biographical films directed by major filmmakers. Catch Me If You Can with Spielberg, Aviator with Scorsese. Both portray obsessive real figures.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30686, 330670, 8, 'orimor25', 'Both films starring a young DiCaprio in intense dramatic roles before he became a leading man. Basketball Diaries and This Boy''s Life show his raw early talent.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 113506, 6, 'orimor25', 'Both Johnny Depp performances but in completely different modes. Captain Jack is flamboyant comedy, J.M. Barrie is restrained drama. Depp''s range on display.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (41518, 30686, 7, 'orimor25', 'Both films about young men pulled into drug culture and paying the price. Blow and Basketball Diaries share a rise-and-fall structure and refuse to romanticise the lifestyle.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188507, 188509, 9, 'orimor25', 'Lethal Weapon and Lethal Weapon 2 are the two best entries in the franchise. The addition of Pesci in the sequel adds a comic energy the first film did not need but the second benefits from.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215876, 215880, 8, 'orimor25', 'Mission Impossible and MI3 are the two best entries in the franchise. De Palma started strong and Abrams brought the series back to that level after the Woo detour.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311038, 142491, 7, 'orimor25', 'Both are superhero films from the mid-2000s that prioritize character over spectacle. Spider-Man 2 and Hellboy both have villains with real emotional depth.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (319602, 319613, 9, 'orimor25', 'Superman and Superman II are the definitive superhero film pairing. The first builds the myth, the second tests it with real villainy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (142491, 142492, 9, 'orimor25', 'Hellboy and Hellboy 2 are Del Toro expanding his own creation. The sequel goes further into fantasy and the Golden Army is a stronger visual achievement.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312150, 210739, 7, 'orimor25', 'Both are family-friendly spy comedies with inventive gadgets and creature designs. Spy Kids is MIB for younger audiences, same playful energy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (240327, 259826, 8, 'orimor25', 'Both are 1970s/80s supernatural horror films that build dread through a family under threat. The Omen uses biblical fear, Poltergeist uses suburban fear.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291495, 208245, 7, 'orimor25', 'Both are comedies that rely entirely on the charisma of a single lead. Bill Murray carries Scrooged, Mel Gibson carries Maverick, both are effortless fun.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (644, 66194, 8, 'orimor25', 'Both are 1990s high school comedies based on classic literature. 10 Things from Shakespeare, Clueless from Austen, both smarter than they need to be.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (263360, 151616, 7, 'orimor25', 'Both are light romantic comedies with attractive leads and zero pretensions. Pretty Woman and How to Lose a Guy are comfort viewing in the same category.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (333856, 263360, 7, 'orimor25', 'Both are crowd-pleasing romance blockbusters from the 1990s. Titanic and Pretty Woman are the decade''s two most iconic love stories despite very different stakes.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46169, 185628, 7, 'orimor25', 'Both are epic historical films about warriors fighting with honour against overwhelming odds. Braveheart in Scotland, Last Samurai in Japan.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 280270, 8, 'orimor25', 'Both are films about underdogs who refuse to give up when everything is stacked against them. Shawshank and Rocky are the two greatest underdog stories in cinema.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (67388, 270971, 7, 'orimor25', 'Both Scorsese films about competitive masculinity. Color of Money through pool, Raging Bull through boxing. Same director exploring the same obsessive drive.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (253010, 318388, 7, 'orimor25', 'Both are road/chase films set in Texas with morally complex protagonists. A Perfect World and Sugarland Express share Spielberg/Eastwood''s interest in fugitives with humanity.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (350189, 218219, 7, 'orimor25', 'Both are Japanese animated films with gothic/mythological settings and morally complex characters. Vampire Hunter D and Mononoke are the darker side of anime storytelling.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (33492, 62460, 7, 'orimor25', 'Both are European films centred on food and romance. Bella Martha is a German chef falling in love, Chocolat is a French chocolatier doing the same.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (220276, 333856, 7, 'orimor25', 'Both are visually spectacular love stories that prioritise emotion over realism. Moulin Rouge and Titanic are the two most maximalist romances of their era.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (158999, 359297, 6, 'orimor25', 'Both are alien invasion blockbusters but Independence Day plays it for spectacle while War of the Worlds goes for genuine fear. Same genre, different goals.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313160, 13547, 8, 'orimor25', 'Both are documentary looks at legendary directors in their earliest stages. Kubrick: A Life in Pictures and Amblin'' show genius before the world noticed.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (185704, 181766, 7, 'orimor25', 'Both are Scorsese films about spiritual belief and its costs. Last Temptation explores Christianity, Kundun explores Buddhism. Same reverence, different traditions.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (230947, 7842, 8, 'orimor25', 'Both are Scorsese projects set in New York. New York Stories is an anthology, After Hours is a single night, both capture the city''s chaotic energy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (109421, 370017, 7, 'orimor25', 'Both are early 2000s action films built around fast vehicles and big stunts with no pretensions about what they are. Same target audience, same energy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 30952, 2, 'orimor25', 'Both are Batman films but the comparison ends there. Begins is grounded realism, Batman and Robin is neon camp. Same character, opposite quality.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30955, 30952, 2, 'orimor25', 'Burton''s Batman was dark and operatic. Batman and Robin is garish and embarrassing. The franchise fell off a cliff between these two.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10830, 10945, 3, 'orimor25', 'Both are Alien franchise films but Alien 3 destroyed everything the first two built. Same universe, completely different quality and care.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (10920, 10945, 3, 'orimor25', 'Aliens is one of the best sequels ever made. Alien 3 killed off the surviving characters in the opening credits. Same franchise, devastating quality drop.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311037, 311040, 4, 'orimor25', 'Spider-Man launched a franchise. Spider-Man 3 buried it under too many villains and not enough focus. Same director with diminishing returns.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (311038, 311040, 3, 'orimor25', 'Spider-Man 2 elevated the genre. Spider-Man 3 crammed in Venom, Sandman, and Harry at once and gave none of them the space they needed.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280305, 3, 'orimor25', 'Rocky is a masterpiece about dignity. Rocky V took the same character back to the streets and wasted the opportunity with a weak new rival.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280270, 280306, 2, 'orimor25', 'Rocky is one of the greatest sports films ever made. Rocky VI is a mislabelled entry that should not exist in the same franchise.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313474, 3, 'orimor25', 'Empire is the peak of Star Wars. Phantom Menace is the most disappointing entry. Same universe but the prequel never captures the magic of the original.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313478, 313476, 3, 'orimor25', 'Empire is mythological storytelling at its best. Attack of the Clones is a romance on Naboo that never earns the emotional weight it aims for.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (271095, 159167, 3, 'orimor25', 'Raiders defined adventure cinema. Indiana Jones 4 put him in a fridge and introduced aliens. Same character, completely different quality.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 159167, 3, 'orimor25', 'Last Crusade closed the trilogy perfectly. Indiana Jones 4 reopened it with a premise that does not fit the world the original trilogy built.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130945, 86263, 2, 'orimor25', 'GoldenEye reinvented Bond with intelligence. Die Another Day undid all of it with an invisible car and an ice palace. Same actor, opposite trajectories.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (120574, 218808, 2, 'orimor25', 'From Russia with Love is grounded espionage. Moonraker sends Bond to space. Same franchise, completely different relationship with reality.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (130953, 85871, 4, 'orimor25', 'Goldfinger is peak Connery Bond. Diamonds Are Forever is visibly tired Connery going through the motions. Same actor, same character, different levels of engagement.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188507, 188510, 4, 'orimor25', 'Lethal Weapon established the buddy cop genre. Lethal Weapon 3 settled into formula and replaced edge with toilet humour. The chemistry survives but the writing does not.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (188507, 188511, 3, 'orimor25', 'Lethal Weapon is a sharp action film. Lethal Weapon 4 is an overstuffed franchise entry that wastes Jet Li and has run completely out of ideas.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 238073, 4, 'orimor25', 'Ocean''s Eleven is an elegant heist film. Ocean''s Twelve is convoluted for the sake of it. Same cast, much less clarity in the story.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256632, 256631, 4, 'orimor25', 'Curse of the Black Pearl is a perfectly self-contained adventure. Pirates 2 extends the story but spins its wheels badly in the middle third.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (215876, 215879, 3, 'orimor25', 'Mission Impossible is a smart thriller. MI2 is a John Woo action film with no brain underneath the stunts. Same franchise, completely different ambitions.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312150, 312152, 3, 'orimor25', 'Spy Kids is inventive family filmmaking. Spy Kids 3D abandoned story for a gimmick that overwhelmed everything else. The franchise ran out of ideas fast.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (312150, 312151, 4, 'orimor25', 'Spy Kids 1 had tight charm. Spy Kids 2 went bigger but lost the focus that made the original work. The island creatures are imaginative but the plot is not.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (300229, 300230, 5, 'orimor25', 'Shrek is iconic and original. Shrek 2 is entertaining but slightly less original. If you loved the first you will enjoy the second but not as much.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139655, 139650, 4, 'orimor25', 'Prisoner of Azkaban is the creative peak of the HP series. Chamber of Secrets is the most formulaic entry. Both set in Hogwarts but the directorial vision is worlds apart.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280281, 280284, 5, 'orimor25', 'Rocky II is grounded drama. Rocky IV is Cold War propaganda with a training montage. Same character, completely different tone and ambition.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280284, 280282, 5, 'orimor25', 'Rocky IV and Rocky III are both the more commercial, less serious entries. Both work as entertainment but neither reaches the emotional depth of the first two.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (326155, 47130, 4, 'orimor25', 'Both are films about New York night workers losing their grip on sanity. Taxi Driver is De Niro at his peak, Bringing Out the Dead is Cage in a more uneven film.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 230963, 4, 'orimor25', 'Both Scorsese-De Niro collaborations but Goodfellas is a masterpiece and New York, New York is an uneven musical experiment. Same partnership, different results.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (129185, 340652, 3, 'orimor25', 'Both are ancient world epics with large-scale battles. Gladiator finds its emotional core, Troy loses its characters in spectacle. Same genre, different depth.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56871, 200864, 3, 'orimor25', 'Both are light entertainment with charming leads but Catch Me If You Can has Spielberg''s craft behind it. Maid in Manhattan is a thin template in comparison.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 292671, 3, 'orimor25', 'Both feature protagonists dealing with alternate versions of themselves. Fight Club executes the concept brilliantly, Secret Window compresses it too aggressively.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 59578, 5, 'orimor25', 'Both Burton-Depp films about eccentric outsiders. Scissorhands found the perfect emotional balance, Chocolate Factory has the style but not quite the heart.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 118367, 4, 'orimor25', 'Both are Tarantino-connected anthology films. Pulp Fiction perfected the format, Four Rooms is uneven with only the Tarantino and Rodriguez segments working.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (263360, 283410, 3, 'orimor25', 'Roberts and Gere reunited but Runaway Bride never recaptures Pretty Woman''s chemistry. Same stars, same genre, much less magic the second time.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (14132, 14157, 3, 'orimor25', 'Both American Pie sequels reuniting the original cast. Pie 2 was formulaic, American Reunion was nostalgia without substance. Diminishing returns with each entry.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46878, 283410, 4, 'orimor25', 'Both are romantic comedy sequels that fail to recapture the original''s charm. Bridget Jones 2 and Runaway Bride both settle into predictable formula.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (290070, 100130, 4, 'orimor25', 'Both are Spielberg WWII films but Schindler''s List is a masterpiece and Empire of the Sun is a more patient, less emotionally direct film. Same era, different impact.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (267038, 350424, 3, 'orimor25', 'Both are 1990s/2000s films that play with reality and identity. Pulp Fiction does it through structure, Vanilla Sky does it through dream logic. One succeeds far more than the other.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (165961, 1390, 2, 'orimor25', 'Both are early Spielberg blockbusters but Jaws is a masterclass in suspense and 1941 is an exhausting comedy that sacrifices story for noise.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 21213, 4, 'orimor25', 'Both are Spielberg sci-fi films about a being trying to find its way home. E.T. achieves it with economy, AI meanders through a bloated second act to get there.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210511, 292671, 3, 'orimor25', 'Both are psychological thrillers with unreliable protagonists. Memento executes the concept brilliantly while Secret Window rushes through it without enough depth.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 233058, 4, 'orimor25', 'Both are dark thrillers about obsession and hidden evil. Se7en is relentlessly intense, Ninth Gate is atmospheric but lacks the same urgency.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (306032, 178994, 3, 'orimor25', 'Both are ensemble crime films with overlapping storylines. Snatch does it with wit and precision, Knockaround Guys has the cast but not the script.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30959, 30965, 3, 'orimor25', 'Both are Batman films but Begins redefined the character while Forever never found its tone between dark and campy. Same Gotham, different levels of commitment.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (289109, 340652, 3, 'orimor25', 'Both are epic war films with massive battle sequences. Saving Private Ryan finds humanity in chaos, Troy gets lost in spectacle without enough characters to anchor it.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (129185, 1121, 3, 'orimor25', 'Both are Ridley Scott historical epics. Gladiator found its emotional core, 1492 is ambitious but slow and never connects on the same human level.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (151616, 200864, 4, 'orimor25', 'Both are early 2000s romantic comedies with charming leads. How to Lose a Guy has a clever premise, Maid in Manhattan has a thinner one in the same template.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (644, 1038, 4, 'orimor25', 'Both are fun, light films aimed at a similar audience. 10 Things has genuine wit from its Shakespeare source, 13 Going on 30 is harmless but less sharp.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (66194, 264157, 3, 'orimor25', 'Both are coming-of-age comedies but Clueless is a sharp satire of high school culture. Princess Diaries 2 falls back on the same fish-out-of-water formula without adding anything.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (350424, 69812, 4, 'orimor25', 'Both are conspiracy-tinged thrillers starring major leads. Vanilla Sky has ambition but uneven execution, Conspiracy Theory has Gibson and Roberts in a premise that deflates at the end.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (256839, 370017, 4, 'orimor25', 'Both are Vin Diesel action vehicles. Pitch Black uses him in a smart sci-fi setting, XXX uses him in a disposable action template. Same star, different ambition.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56304, 8183, 4, 'orimor25', 'Both Scorsese period films but Casino is propulsive and electric while Age of Innocence is restrained and meditative. Fans of one may find the other too different in pace.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (297838, 270628, 2, 'orimor25', 'Both are films about hope under terrible circumstances. Shawshank earns its emotion honestly, Radio Flyer handles a painful premise with too much sentimentality.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (192702, 189403, 5, 'orimor25', 'Both are Timothy Dalton Bond entries. Living Daylights reinvented the character, Licence to Kill pushed him into generic 1980s action territory. Same actor, different success.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335336, 368418, 5, 'orimor25', 'Both are middle-era Brosnan Bond films. Tomorrow Never Dies is slick but hollow, World Is Not Enough wastes Marceau. Both are watchable and forgettable.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (192514, 354178, 4, 'orimor25', 'Both are Roger Moore Bond films. Live and Let Die has Caribbean charm, View to a Kill wastes Walken on thin material. Same era, declining quality.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (332065, 372233, 5, 'orimor25', 'Both are mid-1960s Connery Bond spectacles. Thunderball drags underwater, You Only Live Twice prioritises sets over story. Neither reaches the level of Goldfinger.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (117314, 203649, 5, 'orimor25', 'Both are Roger Moore Bond entries with scenic locations and competent but unmemorable villains. Neither rises above the middle tier of the franchise.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (218808, 86263, 5, 'orimor25', 'Both are Bond films that abandoned reality entirely. Moonraker went to space, Die Another Day went invisible. Neither works as a thriller because neither is grounded.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (164572, 120506, 4, 'orimor25', 'Both are crime thrillers set in gritty period atmospheres. Jackie Brown is Tarantino at his most character driven, From Hell substitutes atmosphere for depth.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (113506, 34077, 4, 'orimor25', 'Both are biographical dramas with Depp/Blanchett about creative figures. Finding Neverland earns its sentiment, Benjamin Button feels more like a technical exercise than a story.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (190869, 271344, 3, 'orimor25', 'Both are films about unexpected family guardianship. Lilo and Stitch treats it with real emotional honesty, Raising Helen turns it into a formulaic comedy.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (304862, 120506, 5, 'orimor25', 'Both are dark, fog-drenched period horror films. Sleepy Hollow has Burton''s visual magic, From Hell has atmosphere but lacks the same creative personality.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30951, 30962, 5, 'orimor25', 'Both are animated Batman spinoff films. SubZero gives Fries nuanced writing, Batman Beyond is a different setting entirely. Related but serving different audiences.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (149287, 259826, 4, 'orimor25', 'Both are Spielberg-produced family films with supernatural elements. Hook aims for childhood wonder, Poltergeist aims for childhood terror. Same producer, opposite intentions.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (74259, 105851, 2, 'orimor25', 'Both are campy comedies that lean into genre pastiche. Cry-Baby does it with John Waters'' precision, Exit to Eden squanders every opportunity its premise creates.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (34104, 245699, 4, 'orimor25', 'Both are romantic comedies about unconventional relationships. Benny and Joon treats its characters with genuine care, Overboard relies on a premise with dated ethics.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (200521, 21213, 4, 'orimor25', 'Both are ambitious three-hour films with sprawling emotional scope. Magnolia earns its bold choices, AI loses focus in its bloated second act.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (231917, 308057, 5, 'orimor25', 'Both are early Spielberg TV projects. Night Gallery shows his instinct for dread, Something Evil has atmosphere but less directorial personality.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (41518, 258948, 3, 'orimor25', 'Both are early 1990s films about characters drawn into dangerous lifestyles. Blow has period detail and Depp''s restraint, Poison Ivy has a thin script held together by casting alone.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (257744, 31715, 4, 'orimor25', 'Both are ensemble dramas about relationships with emotional depth. Playing by Heart has genuine warmth across its ensemble, Beaches is aimed narrower and more sentimental.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (308025, 69812, 4, 'orimor25', 'Both are thrillers involving unlikely romantic tensions under dangerous circumstances. Someone to Watch Over Me commits to its premise, Conspiracy Theory deflates at the resolution.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (20253, 350424, 4, 'orimor25', 'Both are surrealist films about characters drifting between dreams and reality. Arizona Dream does it with Kusturica''s warmth, Vanilla Sky does it with more polish but less soul.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (235615, 114955, 5, 'orimor25', 'Both are 1980s dramas about young men navigating complicated relationships with older mentors. Nothing in Common has more emotional honesty, Flamingo Kid is lighter and more conventional.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176712, 164572, 7, 'orimor25', 'Kill Bill Vol 2 and Jackie Brown are both Tarantino films that slow down and let the characters breathe. His most patient work in both cases.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159175, 271095, 8, 'orimor25', 'Temple of Doom and Raiders are both Indiana Jones adventures with completely different settings. Temple goes darker and weirder but the adventure energy is the same.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (328272, 117874, 7, 'orimor25', 'Both are Hanks films about isolated men finding warmth in unusual circumstances. The Terminal in an airport, Forrest Gump across American history.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335835, 215876, 7, 'orimor25', 'Both are 1980s/90s action films driven by military spectacle and Tom Cruise''s screen presence. Top Gun in the air, Mission Impossible on the ground.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (25192, 123849, 7, 'orimor25', 'Both Scorsese-DiCaprio period epics about obsessive American figures. The Aviator in Hollywood, Gangs of New York in 19th century Manhattan.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56282, 97727, 7, 'orimor25', 'Both are visually distinctive films about outsiders who experience the world differently. Cashback freezes time, Edward Scissorhands reshapes suburbia. Both use visual metaphor as storytelling.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (117874, 289109, 8, 'orimor25', 'Both Hanks-led Spielberg films that use American history as a backdrop for deeply personal stories. Forrest Gump spans decades, Ryan focuses on a single mission.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159172, 159175, 7, 'orimor25', 'Last Crusade and Temple of Doom are the two sequels to Raiders. Crusade adds Connery, Temple goes darker, both are worth watching for any Indiana Jones fan.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (112290, 326155, 8, 'orimor25', 'Both are films about alienated men driven to extreme action by modern society. Fight Club uses satire, Taxi Driver uses realism, both are uncomfortable and essential.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (210739, 96593, 7, 'orimor25', 'Both are films about humans forming bonds with alien beings in American settings. Men in Black is comedy, E.T. is drama, but both treat the alien with genuine warmth.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (291698, 247579, 6, 'orimor25', 'Both Fincher thrillers with dark atmospheres and contained, claustrophobic tension. Se7en is the masterpiece, Panic Room is the smaller scale companion piece.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (32707, 20253, 6, 'orimor25', 'Both are films about artists and outsiders set against politically charged backdrops. Before Night Falls in Cuba, Arizona Dream in American surrealism. Both star unconventional leads.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (30967, 30965, 3, 'orimor25', 'Batman Returns doubled down on Burton''s gothic vision. Batman Forever tried to lighten the tone and lost the identity in the process. Same franchise, different commitments.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (176711, 350189, 4, 'orimor25', 'Both are action films with strong anime influences and stylized violence. Kill Bill draws from the tradition directly, Vampire Hunter D lives inside it. Same visual DNA, different execution levels.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (185628, 1121, 3, 'orimor25', 'Both are epic historical films about outsiders arriving in foreign cultures. Last Samurai finds emotional depth, 1492 is ambitious but never connects on the same level.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (337166, 300230, 4, 'orimor25', 'Both are animated films from studios that defined the genre. Toy Story launched Pixar with originality, Shrek 2 is entertaining DreamWorks but less inventive than the first.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313477, 313474, 5, 'orimor25', 'Revenge of the Sith and Phantom Menace are the best and worst of the prequels. Both Lucas directed but separated by a huge gap in emotional weight and story focus.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280282, 280305, 4, 'orimor25', 'Rocky III and Rocky V are both lesser entries. III has Mr T and entertainment value, V took Rocky back to the streets and wasted the opportunity. Neither reaches the first two.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (335835, 215879, 3, 'orimor25', 'Both are action spectacles carried by star power and kinetic direction. Top Gun has genuine aerial thrills, MI2 has Woo''s stunts but nothing underneath them.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (46169, 340652, 4, 'orimor25', 'Both are ancient/medieval epics with large-scale battle sequences. Braveheart finds its characters in the chaos, Troy lets spectacle overwhelm everything else.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (151616, 46878, 4, 'orimor25', 'Both are romantic comedy sequels/entries with attractive leads and predictable plots. How to Lose a Guy has a cleverer premise, Bridget Jones 2 has settled into formula.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (123435, 233058, 4, 'orimor25', 'Both are dark thrillers about protagonists drawn into mysterious conspiracies. The Game maintains its tension perfectly, Ninth Gate builds atmosphere but lacks the same payoff.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (100130, 14477, 5, 'orimor25', 'Both are Spielberg historical dramas about injustice. Empire of the Sun follows a child in WWII, Amistad follows a courtroom battle. Same director, different emotional access points.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (159665, 185628, 4, 'orimor25', 'Both are WWII-era films with outsiders embedded in foreign cultures. Inglourious Basterds reinvents history with wit, Last Samurai plays it straight with mixed results.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (280284, 280306, 2, 'orimor25', 'Rocky IV is ridiculous Cold War propaganda but it works emotionally. Rocky VI is a mislabelled entry that no one asked for. The franchise had clearly run its course.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (174953, 70959, 5, 'orimor25', 'Both are animated films with striking visual identities. Nausicaa has environmental depth and urgency, Corpse Bride has beautiful design but a thinner story underneath.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (56304, 181766, 3, 'orimor25', 'Both Scorsese films but Casino is propulsive crime filmmaking, Kundun is deeply meditative and slow. Fans of one may not have the patience for the other at all.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (97727, 74259, 5, 'orimor25', 'Both are quirky films about outsiders in American settings. Edward Scissorhands is a fairy tale, Cry-Baby is a satire. Similar tone but different emotional weight.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (319613, 218808, 3, 'orimor25', 'Both are superhero/Bond sequels from the same era with grand-scale villains. Superman II uses them well, Moonraker takes Bond too far from reality to work.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (194500, 313479, 5, 'orimor25', 'Both are epic trilogy conclusions with massive final battles. Return of the King nails every emotional beat, Return of the Jedi is weakened by the Ewoks but has a strong throne room scene.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (67395, 31715, 4, 'orimor25', 'Both are emotional dramas about female friendships enduring through hardship. Color Purple has depth and literary weight, Beaches is more sentimental and narrower in scope.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (139654, 139653, 5, 'orimor25', 'Both are later HP entries with darker themes. Order of the Phoenix has Umbridge and political weight, Half-Blood Prince has the cave scene but the teen romance is a distraction.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (92573, 332065, 5, 'orimor25', 'Both are early Connery Bond films. Dr No is grounded and tight, Thunderball drags between impressive but overlong underwater sequences.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (96593, 308057, 4, 'orimor25', 'Both Spielberg projects involving suburban supernatural threats. E.T. is a masterpiece of childhood wonder, Something Evil is a minor TV film with atmosphere but limited depth.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (131780, 185704, 3, 'orimor25', 'Both are Scorsese films that provoked strong reactions on release. Goodfellas was universally praised, Last Temptation was controversial and far more divisive. Same director at different risk levels.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (238072, 158999, 4, 'orimor25', 'Both are ensemble blockbusters with star-packed casts. Ocean''s Eleven is cool and effortless, Independence Day is loud and absurd. Same scale, very different intelligence.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (34104, 62460, 5, 'orimor25', 'Both are gentle romantic films about unconventional people finding connection. Benny and Joon has genuine care for its characters, Chocolat has warmth but never fully commits to its direction.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (177369, 270971, 7, 'orimor25', 'Both Scorsese-De Niro character studies of men consumed by obsession. King of Comedy is obsessed with fame, Raging Bull is obsessed with winning. Same volcanic intensity.', null); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) values (313474, 313476, 5, 'orimor25', 'Phantom Menace and Attack of the Clones are the two weakest prequel entries. Both have memorable action sequences dragged down by dialogue and romance that never work.', null); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (1711, 40199, 10, 'orizehavi-tech', 'Both pioneer immersive sci-fi environments, transitioning the terrifying silence of space you loved in 2001 into the dirty, neon future of Blade Runner.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (10830, 10920, 10, 'orizehavi-tech', 'This pair perfectly shifts the ultimate haunted house in space from the original into a high-octane military action masterpiece without losing tension.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (124554, 78787, 9, 'orizehavi-tech', 'If you appreciated the beautifully shot, ambitious dystopia of Gattaca, this bizarre and original sci-fi concept delivers a similarly excellent visual design.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (214755, 40199, 9, 'orizehavi-tech', 'The precrime concepts and interface design pair perfectly with the visually breathtaking dive into what it means to be human in a cyberpunk future.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (201516, 78787, 8, 'orizehavi-tech', 'Before the bullet-time effects of The Matrix rewrote cinema, Dark City utilized a similarly dark, reality-bending aesthetic.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (336458, 10920, 8, 'orizehavi-tech', 'Both rely on heavily stylized, hyper-violent sci-fi settings. If you liked the practical gore of Mars, you will love the chest-bursters.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (1711, 18979, 9, 'orizehavi-tech', 'This connects the pioneering realistic space travel of 2001 with the intense, nail-biting orbital mechanics of Apollo 13.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (10830, 214755, 8, 'orizehavi-tech', 'This match translates the unforgettable claustrophobic dread of the Nostromo into a fascinating, high-stakes futuristic mystery.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (124554, 1711, 9, 'orizehavi-tech', 'Both share a sweeping, ambitious scale that uses stunning visual effects to tell deeply philosophical stories about humanity.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (336458, 40199, 8, 'orizehavi-tech', 'This pairs a deeply weird, action-heavy trip to Mars with the definitive, melancholic exploration of a dirty neon future.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (130128, 131780, 10, 'orizehavi-tech', 'The operatic, sprawling tragedy of The Godfather flows perfectly into the frantic editing and killer soundtrack of Goodfellas.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (131780, 56304, 10, 'orizehavi-tech', 'Both plunge you directly into the mafia lifestyle, moving from street-level hustle to the meticulously organized mechanics of Vegas corruption.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (289558, 56304, 9, 'orizehavi-tech', 'This is an unapologetic, violently explosive look at ambition that aligns perfectly with the sweeping, violent epic of Casino.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (182955, 90771, 9, 'orizehavi-tech', 'Both are masterclasses in tension, swapping the tight neo-noir mystery of police corruption for the severe psychological toll of undercover work.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (279420, 130128, 9, 'orizehavi-tech', 'This explores the exact same beautifully shot, grim mobster themes of fathers, sons, and vengeance on a slightly more intimate scale.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (337404, 182955, 9, 'orizehavi-tech', 'This match expands the interconnected narrative of devastating corruption from the drug trade into a tightly wound 1950s police conspiracy.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (193253, 238072, 9, 'orizehavi-tech', 'Both are breezy, highly stylized crime capers filled with unforgettable characters who ooze cool from every frame.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (90771, 131780, 9, 'orizehavi-tech', 'The deep undercover psychological toll pairs brilliantly with the authentic, fast-paced look into the mob lifestyle.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (289558, 130128, 8, 'orizehavi-tech', 'These represent two different sides of the organized crime coin: one an explosive look at unchecked greed, the other a sprawling classical tragedy.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (56304, 279420, 8, 'orizehavi-tech', 'This takes the violent mechanics of mafia corruption and distills them into a grim, beautifully shot tale of vengeance.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (86274, 310726, 10, 'orizehavi-tech', 'Both take an ordinary cop in an extraordinary situation and execute a brilliant high-concept premise that literally never slows down.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (27132, 188507, 9, 'orizehavi-tech', 'If you loved the stylish, loud buddy-cop formula of Bad Boys, Lethal Weapon is the film that set the absolute standard for the genre.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (107166, 68940, 9, 'orizehavi-tech', 'Both feature completely absurd premises held together by highly entertaining, chaotic set pieces and non-stop action.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (258860, 310726, 9, 'orizehavi-tech', 'This transition swaps the adrenaline-fueled surfing culture and tight bank heist plot for a relentless vehicular thrill ride.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (281334, 105723, 8, 'orizehavi-tech', 'The sharp, precise mercenary car chases map perfectly to the tense hijacking scenario that keeps the suspense tight throughout.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (65627, 139169, 8, 'orizehavi-tech', 'Both utilize incredibly creative practical stunts, moving from dizzying climbing heights to a highly stylized manhunt.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (337814, 188507, 9, 'orizehavi-tech', 'A fascinating contrast between a tense, claustrophobic ride through corrupt policing and a classic, loose-cannon veteran dynamic.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (262645, 10920, 9, 'orizehavi-tech', 'An invisible enemy in the jungle builds the same incredible dread and explosive payoff as the high-octane space marines.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (9023, 86274, 9, 'orizehavi-tech', 'Both use highly claustrophobic settings perfectly to deliver some of the tightest action scripts of their respective decades.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (158999, 9023, 8, 'orizehavi-tech', 'If you enjoy highly patriotic 90s action films with iconic set pieces, these two deliver pure popcorn entertainment.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (9125, 24430, 9, 'orizehavi-tech', 'Both are relentless barrages of visual gags, with one spoofing disaster films and the other perfectly nailing 60s spy movies.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (37178, 16006, 9, 'orizehavi-tech', 'A surreal, weed-fueled mystery driven by bizarre character interactions transitions perfectly into a brilliant satirical take on local news.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (238695, 37178, 9, 'orizehavi-tech', 'A painfully accurate, hilarious takedown of corporate bureaucracy that shares the same laid-back, anti-establishment tone as The Dude.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (644, 209133, 9, 'orizehavi-tech', 'Both offer a surprisingly sharp and clever deconstruction of high school cliques and toxic teenage social dynamics.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (111442, 644, 9, 'orizehavi-tech', 'This captures the pure chaos and fun of high school escapism, matching the sharp adaptation style of 10 Things I Hate About You.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (134672, 340901, 10, 'orizehavi-tech', 'Both brilliantly force you to experience a crushing artificial reality, balancing deep philosophical ideas with touching personal comedy.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (5573, 375827, 8, 'orizehavi-tech', 'This features peak physical comedy that is ridiculous, over-the-top, and endlessly quotable, whether solving pet crimes or breaking down the modeling industry.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (291221, 9125, 9, 'orizehavi-tech', 'A brilliant, self-aware dissection of slasher tropes that shares the same manic parody energy as the ultimate aviation spoof.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (46877, 362808, 9, 'orizehavi-tech', 'Both feature dialogue that truly shines, perfectly capturing the awkwardness and hilarious struggles of modern dating over long periods.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (209133, 111442, 9, 'orizehavi-tech', 'This is the ultimate pairing of razor-sharp teenage social dynamics and iconic high school rebellion.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (32166, 9795, 10, 'orizehavi-tech', 'Both are flawless, magical romances that feature timeless musical numbers and capture the absolute peak of 90s animation.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (9795, 192013, 9, 'orizehavi-tech', 'The manic energy and unforgettable music of Aladdin pairs beautifully with the film that kickstarted that entire era of animation.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (218415, 113504, 9, 'orizehavi-tech', 'This turns childhood fears and corporate satire into the same visually stunning, emotionally touching journey found in Nemo.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (300229, 9795, 9, 'orizehavi-tech', 'A hilarious deconstruction of fairy tales packed with jokes for adults that perfectly mirrors the fast-paced wit of the Genie.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (48950, 18441, 8, 'orizehavi-tech', 'A charming, miniature epic that uses the exact same insect perspective to great comedic and adventurous effect.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (61291, 48950, 8, 'orizehavi-tech', 'Both are brilliantly executed animation homages, whether adapting POW escape films or classic samurai epics for family audiences.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (96590, 190869, 8, 'orizehavi-tech', 'Both are wonderfully weird and sweet stories about finding family and friendship with an alien in the most unlikely of places.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (192013, 32166, 9, 'orizehavi-tech', 'The timeless, perfect musical numbers of the sea transition seamlessly into the perfect, magical romance of the Beast''s castle.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (113504, 218415, 9, 'orizehavi-tech', 'A beautifully nostalgic adventure about overcoming fear that matches the huge amounts of heart found in Monsters, Inc.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (847, 20218, 8, 'orizehavi-tech', 'A fun, fast-paced London rescue mission that shares the cozy, lighthearted animal adventure vibes of the Aristocats.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (161481, 39551, 10, 'orizehavi-tech', 'The harrowing beach landing sequence prepares you perfectly for the visceral, documentary-style descent into modern urban warfare.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (39551, 101055, 9, 'orizehavi-tech', 'This pairs the absolute chaos of urban firefights with a raw, patient depiction of sniper warfare relying on deception and geometry.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (44450, 161481, 9, 'orizehavi-tech', 'A harrowing, powerful look at the aftermath of war that deepens the emotional impact of the intense battlefield sacrifices.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (290070, 44450, 10, 'orizehavi-tech', 'Both are monumental achievements in drama, offering deeply emotional and uncomfortable explorations of tragedy and survival.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (129185, 194497, 10, 'orizehavi-tech', 'The epic scope and tragic betrayal of Rome scales up flawlessly into the massive, emotionally grounded world of Middle-earth.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (194497, 194502, 10, 'orizehavi-tech', 'This perfectly continues the staggering scale of the fantasy epic, escalating directly into the gripping, massive Rohan battles.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (207390, 129185, 9, 'orizehavi-tech', 'A historically meticulous portrayal of naval strategy that perfectly matches the engaging, grand-scale combat of the gladiatorial arena.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (333856, 207390, 8, 'orizehavi-tech', 'If you loved the unmatched production scale and maritime disaster spectacle, this meticulous naval warfare epic is a must-watch.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (101055, 161481, 9, 'orizehavi-tech', 'Both deliver raw, unapologetic depictions of warfare that focus intensely on strategy, sacrifice, and survival.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (290070, 101462, 9, 'orizehavi-tech', 'The devastating black-and-white cinematography of survival pairs well with the fascinating, obsessive world of wartime code-breaking.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (280270, 149388, 9, 'orizehavi-tech', 'A gritty, deeply moving character study that perfectly aligns with the ultimate sports underdog movie focused on teamwork.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (149388, 275453, 9, 'orizehavi-tech', 'Both use the fundamentals of sports to tell incredibly uplifting stories about breaking down barriers and unlocking true potential.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (166917, 280270, 8, 'orizehavi-tech', 'Genuine emotional stakes elevate the sports agency drama just as they ground the iconic boxing underdog narrative.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (297838, 131665, 10, 'orizehavi-tech', 'Both are quiet, powerful testaments to the human spirit, dealing deeply with trauma, defense mechanisms, and ultimate triumph.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (131665, 271192, 9, 'orizehavi-tech', 'A very sensitive and moving exploration of brotherhood and patience that echoes the brilliant character work of Will Hunting.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (104338, 210509, 9, 'orizehavi-tech', 'A visually inventive exploration of memory and heartbreak that pairs beautifully with the genius reverse storytelling of an amnesiac.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (210509, 254943, 9, 'orizehavi-tech', 'This forces the audience into a frantic, paranoid dive into obsession, mathematical patterns, and deeply unreliable narration.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (271192, 313059, 9, 'orizehavi-tech', 'A beautifully nostalgic cross-country journey that perfectly captures the fleeting innocence of friendship and brotherhood.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (313059, 297838, 9, 'orizehavi-tech', 'Both Stephen King adaptations bypass horror to deliver touching, beautifully nostalgic adventures about the triumph of the human spirit.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (358708, 42983, 9, 'orizehavi-tech', 'A definitive, cold-blooded examination of 80s corporate greed that flows perfectly into a high-energy critique of toxic finance bros.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (2000, 262645, 9, 'orizehavi-tech', 'This revitalizes tension by using terrifying, fast-moving threats to build incredible dread before the explosive finale.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (215346, 109608, 9, 'orizehavi-tech', 'A horrifyingly grounded psychological thriller that perfectly complements this intensely uncomfortable look at extreme obsession.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (109608, 91763, 8, 'orizehavi-tech', 'This shifts from the extreme consequence of an affair to a highly satisfying thriller revolving around revenge and legal loopholes.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (91763, 215346, 8, 'orizehavi-tech', 'Both feature smart, desperately gripping scenarios where protagonists must outwit their captors or betrayers.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (155634, 210509, 9, 'orizehavi-tech', 'A highly atmospheric whodunit with a genuinely surprising twist that will appeal directly to fans of non-linear memory puzzles.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (306051, 251979, 8, 'orizehavi-tech', 'An early tech thriller focusing on espionage that keeps the paranoia high, just like this dark dive into political assassinations.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (251979, 312138, 8, 'orizehavi-tech', 'Both unravel massive corporate and political cover-ups through stylish espionage, agency politics, and high-stakes extraction.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (312138, 281334, 8, 'orizehavi-tech', 'A sharp, realistic look at mercenary logistics and agency politics that thrives on tight suspense and precise planning.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (254943, 104338, 9, 'orizehavi-tech', 'A frantic, black-and-white dive into paranoia that shares the same visually inventive, emotionally crushing indie aesthetic.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (194204, 65764, 9, 'orizehavi-tech', 'A masterful psychological horror that slowly builds dread, pairing well with this highly disturbing exploration of dystopia.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (340901, 214755, 9, 'orizehavi-tech', 'Both present deeply unsettling predictions of reality and surveillance, wrapped in a high-concept mystery with huge emotional stakes.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (182955, 337814, 9, 'orizehavi-tech', 'A brilliant, tightly wound neo-noir mystery that matches perfectly with this intense, claustrophobic ride through corrupt policing.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (282452, 73913, 8, 'orizehavi-tech', 'This explores the underground grind of poker bluffs, making it a fantastic companion to this cold, calculating look at a casino dealer.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (73913, 56304, 8, 'orizehavi-tech', 'This transition moves from the detached perspective of the casino floor directly into the sweeping, violent epic of Vegas corruption.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (65764, 13978, 9, 'orizehavi-tech', 'A bizarre, highly disturbing exploration of conditioning that pairs brilliantly with a blistering look at the cycle of racial violence.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (13978, 48792, 9, 'orizehavi-tech', 'Both deliver scathing, visceral attacks on modern masculinity, using incredibly uncomfortable themes and jaw-dropping twists.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (48792, 238695, 9, 'orizehavi-tech', 'This pairs the violent, jaw-dropping twist of Fight Club with a hilarious, painfully accurate takedown of soul-crushing cubicles.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (345690, 311038, 9, 'orizehavi-tech', 'A grounded, melancholic look at the superhero genre that perfectly complements the painful struggle between a personal life and duty.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (311038, 30955, 9, 'orizehavi-tech', 'Both define their respective eras of comic book cinema, anchored by phenomenal dark, gothic architecture and character struggles.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (30955, 97727, 9, 'orizehavi-tech', 'Tim Burton''s dark, gothic architecture of Gotham shines just as brightly in this beautifully tragic gothic fairytale with incredible makeup.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (133725, 313601, 9, 'orizehavi-tech', 'The benchmark for adventure cinema packed with traps pairs wonderfully with this fun mix of Egyptian mythology and sci-fi.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (313601, 102108, 8, 'orizehavi-tech', 'Both successfully launched massive franchises by blending grand mythology with a perfect swashbuckling comedy adventure.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (102108, 170522, 8, 'orizehavi-tech', 'The brilliant mix of pirate lore and comedy matches the wildly entertaining, chaotic board game adventure with fantastic practical effects.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (170522, 133725, 9, 'orizehavi-tech', 'This takes the chaotic, jungle-themed practical effects of Jumanji and grounds them in the non-stop pacing of the ultimate treasure hunt.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (139657, 139655, 9, 'orizehavi-tech', 'This captures the childish wonder of discovering magic, preparing you for the fantastic shift to a darker, more mature tone in the sequel.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (139655, 100447, 9, 'orizehavi-tech', 'A brilliant fantasy that uses practical effects and amazing costume design, echoing the darker, brilliant time travel mechanics of Azkaban.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (100447, 169393, 8, 'orizehavi-tech', 'A highly unique fantasy with stunning costumes that shares the laid-back, magical journey vibe of traversing a magical forest.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (335245, 208245, 8, 'orizehavi-tech', 'Both are highly stylized westerns, blending iconic shootouts and infinitely quotable dialogue with poker bluffs and charm.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (208245, 297382, 8, 'orizehavi-tech', 'A highly entertaining western comedy that seamlessly flows into this very fun blending of classic tropes and martial arts choreography.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (297382, 335245, 8, 'orizehavi-tech', 'While one leans on martial arts comedy, both successfully execute classic western tropes with incredibly entertaining set pieces.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (27132, 27171, 2, 'orizehavi-tech', 'While you enjoyed the stylish buddy-cop formula of the first, the sequel is bloated and prioritizes explosions over character.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (30955, 30952, 1, 'orizehavi-tech', 'The dark gothic architecture of 89 is entirely replaced by a neon-soaked disaster with painful dialogue and bizarre costumes.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (210739, 210741, 2, 'orizehavi-tech', 'The crisp, fast-paced extraterrestrial wit of the original is abandoned for a loud, flashy, and ultimately hollow spectacle.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (100138, 313474, 2, 'orizehavi-tech', 'This misguided pairing swaps the bleak, character-driven masterpiece featuring the most shocking reveal for sleep-inducing political trade disputes.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (201516, 207989, 3, 'orizehavi-tech', 'The bullet-time effects that rewrote action cinema are still here, but the exhausting philosophical dialogue drags the sequel down.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (291221, 289666, 2, 'orizehavi-tech', 'Scream is a brilliant, self-aware dissection of slasher tropes, while Scary Movie relies entirely on crude humor that loses appeal quickly.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (310726, 7048, 1, 'orizehavi-tech', 'Speed is a brilliant high-concept action thriller; Mary-Kate & Ashley''s volcano mystery is a cheesy, scientifically ridiculous kids film.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (161481, 19054, 1, 'orizehavi-tech', 'The harrowing beach landings and sheer cinematic achievement of Saving Private Ryan have absolutely nothing in common with this vocal-driven curiosity.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (113504, 81954, 2, 'orizehavi-tech', 'Both feature heavy water themes, but Nemo is a stunning emotional road-trip while Waterworld is a wildly ambitious but struggling epic.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (188507, 188511, 3, 'orizehavi-tech', 'The chemistry that set the standard for the genre in the original starts to show serious age and fatigue by the fourth installment.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (32166, 30952, 1, 'orizehavi-tech', 'Both feature sweeping castle/gothic aesthetics, but a magical flawless romance is ruined by unbearable ice puns and neon suits.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (166917, 214755, 3, 'orizehavi-tech', 'Both star Tom Cruise, but the genuine emotional stakes of a sports agency clash horribly with a dark, precrime futuristic mystery.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (131665, 238072, 3, 'orizehavi-tech', 'Matt Damon stars in both, but the deeply moving script exploring trauma does not fit the breezy, cool heist tone of Ocean''s.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (313059, 194204, 2, 'orizehavi-tech', 'You enjoyed the beautifully nostalgic childhood friendships of Stand By Me; pivoting to a masterful but horrifying demonic pregnancy is a bad idea.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (130128, 37178, 2, 'orizehavi-tech', 'Both are classics, but the operatic tragedy of the organized crime genre doesn''t mix with a surreal, weed-fueled bowling comedy.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (289558, 170522, 1, 'orizehavi-tech', 'Recommending a chaotic kids board game adventure to someone who just enjoyed an unapologetic, violently explosive mob film is absurd.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (134672, 262645, 1, 'orizehavi-tech', 'A brilliant time loop comedy philosophically exploring reality is the complete opposite of an invisible enemy hunting commandos in the jungle.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (9125, 18979, 2, 'orizehavi-tech', 'Aviation themes don''t equal similarity. A relentless barrage of visual gags is totally at odds with the intense engineering crises of Apollo 13.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (13789, 158999, 2, 'orizehavi-tech', 'The melancholic masterpiece highlighting the quiet desperation of suburban life is utterly destroyed by iconic global destruction sequences.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (48792, 195300, 1, 'orizehavi-tech', 'A scathing, visceral attack on consumerism and masculinity cannot be followed by a warm, genuinely funny holiday rom-com.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (1711, 310184, 2, 'orizehavi-tech', 'Just because both are in space doesn''t make them a match. You praised 2001 for realistic terror, which Spaceballs lovingly spoofs into silliness.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (2000, 300229, 1, 'orizehavi-tech', 'Both feature isolation and survival, but terrifying, fast-moving infected zombies do not pair with a hilarious deconstruction of fairy tales.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (129185, 24430, 1, 'orizehavi-tech', 'The epic scope and tragic betrayal of Rome has absolutely zero crossover with a colorful, ridiculous spoof of 60s spy movies.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (333856, 81954, 2, 'orizehavi-tech', 'Epic water disasters are here, but Titanic''s unmatched production scale and romance overshadows the bloated, struggling post-apocalyptic setting.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (290070, 245008, 1, 'orizehavi-tech', 'An absolute tonal disaster to pair a monumental achievement in historical Holocaust drama with a surprisingly sweet snowboarding teen comedy.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (44450, 335834, 3, 'orizehavi-tech', 'Both are military films, but the harrowing emotional aftermath of war heavily clashes with the high-energy, unapologetic love letter to fighter pilots.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (56304, 208245, 3, 'orizehavi-tech', 'Gambling is the link, but the meticulously organized violent mechanics of Vegas don''t gel with a highly entertaining western poker comedy.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (42983, 280478, 3, 'orizehavi-tech', 'Both tackle toxic finance bro culture, but Boiler Room is a crisp, high-energy critique while Rogue Trader is a dark, fascinating but flawed exploration.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (111442, 13978, 1, 'orizehavi-tech', 'The pure chaos and fun of cutting class in high school is the tonal antithesis of a blistering, uncomfortable look at the cycle of racism.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (104338, 107166, 2, 'orizehavi-tech', 'Identity is the theme, but a visually inventive exploration of heartbreak cannot be paired with a bizarre concept driven by non-stop ridiculous action.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (97727, 40187, 2, 'orizehavi-tech', 'Blades and gothic tones are shared, but a beautifully tragic fairytale with incredible makeup clashes with a slick, stylized vampire hunter.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (847, 281334, 1, 'orizehavi-tech', 'A fun, fast-paced London dog rescue mission has nothing to do with a sharp, realistic thriller focusing on precise mercenary car chases.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (18441, 10830, 2, 'orizehavi-tech', 'Bugs and hives link them, but a cynical animated take on conformity is a terrible match for the ultimate haunted house movie set in space.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (61291, 39551, 1, 'orizehavi-tech', 'A brilliantly executed claymation homage to POW escapes does not prepare you for a visceral, documentary-style descent into urban warfare.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (96590, 262645, 2, 'orizehavi-tech', 'Alien visitors are in both, but the brilliant suburban sci-fi magic of the bicycle scene does not map to an invisible enemy ripping spines in the jungle.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (32166, 215346, 1, 'orizehavi-tech', 'Captivity is the core, but a flawless, magical romance is the polar opposite of a horrifyingly grounded psychological thriller about fandom.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (258860, 113504, 2, 'orizehavi-tech', 'Ocean environments don''t make them similar. Adrenaline-fueled surfing heist action clashes with a visually stunning animated road-trip.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (209133, 124554, 2, 'orizehavi-tech', 'Social stratification links them, but a razor-sharp teen clique comedy is completely different from a sweeping, ambitious genetic sci-fi epic.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (375827, 101462, 1, 'orizehavi-tech', 'A meta-comedy breaking down the absurdity of the modeling industry shares zero DNA with a fascinating historical look at code-breaking.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (345690, 30952, 2, 'orizehavi-tech', 'The grounded, melancholic look at the superhero genre is ruined by transitioning to a campy, neon-soaked disaster with unbearable ice puns.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (210509, 274589, 1, 'orizehavi-tech', 'The genius reverse storytelling of an amnesiac requires patience, which is totally lost in an escalated, banter-heavy comedy action sequel.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (78787, 115106, 1, 'orizehavi-tech', 'A bizarre, highly original sci-fi concept with dark humor has nothing in common with a highly energetic dance movie reliant on musical sequences.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (254943, 169393, 1, 'orizehavi-tech', 'A frantic, black-and-white dive into paranoia is the worst possible follow-up to a laid-back, jazzy journey through the forest.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (129369, 300229, 1, 'orizehavi-tech', 'The dark, foul-mouthed masterclass exposing the desperation of salesmen shares no audience with a hilarious deconstruction of fairy tales.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (271192, 41409, 1, 'orizehavi-tech', 'A sensitive, moving cross-country journey about brotherhood is completely incompatible with the ultimate tournament fighting movie choreography.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (337404, 310184, 1, 'orizehavi-tech', 'A sprawling narrative exploring the devastating impact of the drug trade cannot be paired with a lovingly silly spoof of space operas.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (182955, 274594, 1, 'orizehavi-tech', 'A tightly wound neo-noir mystery exploring 1950s police corruption does not match the boundary-pushing gross-out humor of a sweet comedy.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (90771, 644, 2, 'orizehavi-tech', 'The severe psychological toll of deep undercover mafia work is a jarring shift to a sharp and clever high school Shakespeare adaptation.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (131780, 32166, 1, 'orizehavi-tech', 'The frantic editing and violent reality of the mafia lifestyle is the polar opposite of a flawless, magical animated romance.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (297838, 48950, 2, 'orizehavi-tech', 'A quiet, powerful testament to the triumph of the human spirit in prison does not translate to a charming, miniature epic about an insect colony.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (101055, 313474, 2, 'orizehavi-tech', 'Both feature large-scale wars, but raw sniper deception and patience is a far cry from the visual effects and boring trade disputes of Naboo.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (161481, 24430, 1, 'orizehavi-tech', 'The harrowing beach landing sequence and sheer cinematic trauma has zero overlap with a colorful, ridiculous spoof of 60s spy movies.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (335245, 289666, 1, 'orizehavi-tech', 'A highly stylized western with infinitely quotable dialogue shouldn''t be paired with a parody that relies entirely on crude shock value.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (208245, 65764, 1, 'orizehavi-tech', 'A highly entertaining western comedy built on poker bluffs clashes violently with a bizarre, highly disturbing exploration of free will.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (133725, 27171, 2, 'orizehavi-tech', 'The benchmark for adventure cinema packed with traps is vastly superior to an overly long, bloated sequel that prioritizes explosions over character.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (207390, 176711, 2, 'orizehavi-tech', 'The meticulous historical naval warfare strategy is completely at odds with a visually stunning, hyper-violent technical achievement in revenge.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (313601, 13978, 1, 'orizehavi-tech', 'A fun mix of Egyptian mythology and sci-fi is a terrible segue into a blistering, uncomfortable look at the roots of racism.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (336458, 362808, 1, 'orizehavi-tech', 'A hyper-violent, deeply weird trip to Mars relying on practical gore has absolutely nothing in common with the iconic dialogue of a romantic comedy.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (158999, 279420, 1, 'orizehavi-tech', 'The global destruction sequences and popcorn entertainment of aliens clash horribly with a beautifully shot, grim mobster tale of fathers and sons.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (73436, 218415, 1, 'orizehavi-tech', 'A masterclass in terrifying nuclear launch protocol tension should never be paired with a corporate satire about monsters collecting screams.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (194497, 7048, 1, 'orizehavi-tech', 'Both involve journeys to volcanoes, but an emotionally exhausting fantasy epic is insulted by being paired with a cheesy, scientifically ridiculous kids mystery.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (340799, 312138, 3, 'orizehavi-tech', 'Both are spy films, but the brilliant, explosive domestic comedy is completely tonally different from the slow-burn extraction politics of Spy Game.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (86274, 72430, 3, 'orizehavi-tech', 'You praised the tightest action script ever written in Die Hard; the battleship knockoff is decent, but lacks the same masterful pacing.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (111813, 94958, 1, 'orizehavi-tech', 'The explosive courtroom scenes and razor-sharp dialogue of a military trial have zero connection to literal explosions in a video game adaptation.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (238695, 358708, 3, 'orizehavi-tech', 'Both dissect the workplace, but a hilarious takedown of soul-crushing cubicles doesn''t fit the cold-blooded examination of 80s insider trading.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (149388, 140783, 3, 'orizehavi-tech', 'Basketball connects them, but the pure teamwork of an underdog story clashes with a powerful exploration of the intense exploitation of prodigies.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (280270, 41739, 3, 'orizehavi-tech', 'Sports films, yes, but a deeply moving character study about an underdog boxer feels entirely different from a gritty look at corrupt college recruitment.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (73913, 282452, 3, 'orizehavi-tech', 'Both center on casinos and cards, but the underground passion of Texas Hold em is completely contrary to the detached, calculating look of a dealer.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (68940, 105723, 3, 'orizehavi-tech', 'Plane hijackings unify them, but absurd practical fun and chaotic set pieces are very different from a tense, slow-burn bureaucratic thriller.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (310726, 131223, 3, 'orizehavi-tech', 'Vehicular action is the draw, but a brilliant high-concept premise that never slows down is superior to a fun but slightly mindless fast car chase.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (313059, 90772, 2, 'orizehavi-tech', 'Coming of age stories, but the touching, nostalgic innocence of childhood friendships is ruined by a moody, complex dive into time-travel angst.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (333393, 104338, 2, 'orizehavi-tech', 'Memory and time manipulation link them, but fun sci-fi action fight scenes are completely detached from a visually inventive exploration of heartbreak.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (155634, 210741, 1, 'orizehavi-tech', 'A highly atmospheric whodunit with a genuinely surprising psychological twist shares nothing with a loud, flashy, and ultimately hollow spectacle.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (118393, 109608, 1, 'orizehavi-tech', 'Romance is central, but a sharp episodic comedy that nails social gatherings is the opposite of an intensely uncomfortable look at obsession.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (87280, 48792, 1, 'orizehavi-tech', 'The choreography of classic romance and dancing doesn''t align with a visceral, violent attack on consumerism and modern masculinity.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (210739, 10830, 2, 'orizehavi-tech', 'Aliens exist in both, but the crisp extraterrestrial bureaucracy of one is entirely incompatible with the terrifying chest-bursters of the other.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (102108, 333856, 3, 'orizehavi-tech', 'Boats are involved, but a perfect swashbuckling comedy adventure clashes with a sweeping historical drama balancing epic romance and disaster.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (194502, 100447, 3, 'orizehavi-tech', 'Fantasy epics, but the sheer massive scale of the Rohan battles makes a highly unique but much smaller-scale practical effects fantasy feel out of place.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (122658, 10920, 3, 'orizehavi-tech', 'Military women in focus, but a gritty exploration of extreme psychological abuse in training doesn''t match a high-octane sci-fi action masterpiece.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (91763, 65501, 3, 'orizehavi-tech', 'Both are thrillers, but a highly satisfying revenge story revolving around legal loopholes is very different from slow-burn bureaucratic backstabbing.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (195300, 65764, 1, 'orizehavi-tech', 'Weaving together storylines into a warm holiday classic is the exact opposite of a bizarre, highly disturbing exploration of behavioral conditioning.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (192013, 289558, 1, 'orizehavi-tech', 'Timeless, perfect animated musical numbers of a mermaid share zero demographic overlap with an unapologetic, violently explosive look at the drug trade.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (300229, 131780, 1, 'orizehavi-tech', 'A hilarious deconstruction of fairy tales packed with jokes has absolutely nothing to do with the frantic editing and terrifying reality of the mafia.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (173930, 254943, 1, 'orizehavi-tech', 'The ultimate underdog martial arts story with a fantastic mentor dynamic clashes entirely with a frantic, black-and-white dive into obsessive paranoia.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (9795, 215346, 1, 'orizehavi-tech', 'The manic, magical energy of the Genie elevates animation, which makes for a terrible pairing with a horrifyingly grounded psychological thriller.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (218415, 129369, 1, 'orizehavi-tech', 'Turning childhood fears into a brilliant corporate satire with huge heart doesn''t map to a foul-mouthed masterclass exposing desperate salesmen.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (113504, 337404, 1, 'orizehavi-tech', 'A visually stunning underwater road-trip about letting go of fear is horribly mismatched with a sprawling narrative exploring the devastating drug trade.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (32166, 340799, 1, 'orizehavi-tech', 'A flawless, magical romance that truly earns its classic status has nothing in common with a brilliant, explosive blend of domestic comedy and espionage.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (190869, 182955, 1, 'orizehavi-tech', 'A wonderfully weird animated film about finding family completely clashes with a tightly wound neo-noir mystery exploring 1950s police corruption.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (847, 210509, 1, 'orizehavi-tech', 'The sketchy art style of a fun, fast-paced London rescue mission is totally at odds with forcing the audience into the shoes of an amnesiac.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (340901, 358708, 2, 'orizehavi-tech', 'Both deal with systems manipulating people, but the touching personal drama of Truman completely clashes with the cold-blooded corporate greed of Wall Street.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (362808, 2000, 1, 'orizehavi-tech', 'The slow-burn iconic romantic comedy spanning a decade has absolutely nothing in common with terrifying fast-moving infected zombies.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (345690, 847, 1, 'orizehavi-tech', 'A grounded melancholic superhero origin story is a terrible follow-up to a fun, fast-paced animated dog rescue mission.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (1711, 1029, 1, 'orizehavi-tech', 'A cinematic masterpiece of realistic space exploration should never be paired with a bizarre supernatural ghosts romance.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (2000, 644, 1, 'orizehavi-tech', 'You praised the clever high school Shakespeare adaptation, which shares zero demographic overlap with a terrifying infection thriller.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (340799, 362808, 2, 'orizehavi-tech', 'Romance and comedy are the only links, but explosive high-stakes espionage drastically clashes with a slow-burn dialogue-driven romantic comedy.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (358708, 847, 1, 'orizehavi-tech', 'A cold-blooded examination of 80s insider trading is completely inappropriate for someone looking for a fun London animal rescue adventure.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (345690, 1029, 2, 'orizehavi-tech', 'Melancholic comic book themes of duty and family do not mix well at all with a supernatural romance atmosphere.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (1711, 644, 1, 'orizehavi-tech', 'The pioneering realism and terrifying silence of space travel has zero crossover with sharp and clever teen high school dynamics.'); + +INSERT IGNORE INTO movies_recommendations (Base_movie_id, recommended_movie_id, Recommendation, Suggested_by, Justification) VALUES (340901, 2000, 2, 'orizehavi-tech', 'The unsettling prediction of reality TV culture is a deeply touching personal drama, completely at odds with the sheer adrenaline and terror of a zombie apocalypse.'); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 310726, + 9023, + 9, + 'roni88882-ctrl', + 'Both are 90s action films built around a single high-stakes location under threat, a bus in Speed, a plane in Air Force One, where the hero must outthink the villain to save hostages. The contained-space formula works the same way in both.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 310726, + 107166, + 7, + 'roni88882-ctrl', + 'Speed and Face/Off share the same relentless forward momentum and the sense that stopping for a breath means someone dies. Both were landmark action films of the decade that pushed practical stunt work to its limits.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 310726, + 215876, + 9, + 'roni88882-ctrl', + 'Speed made Keanu Reeves a star by putting a capable everyman in an impossible situation; Mission: Impossible did the same for Tom Cruise. Both films rely on ingenious trap-and-escape mechanics rather than pure brute force.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 310726, + 68940, + 7, + 'roni88882-ctrl', + 'Con Air lifts the Speed formula almost directly, a vehicle full of dangerous people, a hero trying to keep control, and a ticking clock. Fans of Speed''s confined tension will recognize the structure immediately.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 303564, + 281937, + 9, + 'roni88882-ctrl', + 'Rosemary''s Baby builds its horror entirely from paranoia and domestic dread rather than visual shock, the same mechanism that makes The Sixth Sense so effective. Both films make the viewer question what is real until the very end.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 303564, + 273585, + 10, + 'roni88882-ctrl', + 'Rebecca surrounds its protagonist with a haunting presence that may or may not be real, creating the same anxious uncertainty that defines The Sixth Sense. Both films depend entirely on mood and restraint rather than explicit horror.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 303564, + 235676, + 9, + 'roni88882-ctrl', + 'Notorious builds its suspense through secrets held just out of reach, with a protagonist who knows something is wrong but cannot prove it, the exact emotional position The Sixth Sense puts its audience in throughout.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 303564, + 316323, + 10, + 'roni88882-ctrl', + 'Strangers on a Train traps its hero in a situation where the truth is invisible to everyone around him, which mirrors The Sixth Sense''s central dramatic irony almost perfectly. Both films create unbearable tension from a single withheld secret.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 282696, + 283739, + 9, + 'roni88882-ctrl', + 'Rushmore is the clearest preview of what Wes Anderson would achieve in The Royal Tenenbaums, the same deadpan visual grammar, the same melancholy underneath absurd humor, and a protagonist whose ambition far exceeds his self-awareness.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 282696, + 190046, + 7, + 'roni88882-ctrl', + 'The Life Aquatic is The Royal Tenenbaums transplanted to the ocean, the same ensemble of eccentric characters orbiting a flawed patriarch, the same careful production design, and the same bittersweet payoff about family.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 283739, + 190046, + 7, + 'roni88882-ctrl', + 'Both films center on a man whose grand self-image constantly collides with his actual limitations, played for comedy that slowly reveals genuine sadness. Anderson''s style is fully formed in Rushmore and reaches new visual heights in The Life Aquatic.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 362808, + 17760, + 10, + 'roni88882-ctrl', + 'When Harry Met Sally is essentially Nora Ephron''s answer to Annie Hall, a New York romance structured around the difficulty of friendship between men and women, with the same blend of sharp comedy and honest emotional pain.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 362808, + 304829, + 7, + 'roni88882-ctrl', + 'Sleepless in Seattle reunited Ephron with Meg Ryan to deliver another witty, warm romantic comedy built on the idea that the right connection is worth waiting for. Fans of When Harry Met Sally will find the same tone and chemistry.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 362808, + 218848, + 9, + 'roni88882-ctrl', + 'Moonstruck captures the same irrational, disruptive nature of falling in love that When Harry Met Sally explores more analytically. Both films treat adult romance with intelligence and warmth rather than easy sentimentality.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 362808, + 264146, + 10, + 'roni88882-ctrl', + 'The Princess Bride and When Harry Met Sally both understand that the best romantic comedies work because the audience roots for the couple long before the couple figures it out. Both have quotable scripts that reward repeat viewing.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 369458, + 30967, + 8, + 'roni88882-ctrl', + 'Batman Returns gave superhero cinema its dark, character-driven edge, which X-Men inherited and expanded. Both treat their costumed characters as outsiders wrestling with identity rather than simply as vehicles for action.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 369458, + 311038, + 10, + 'roni88882-ctrl', + 'Spider-Man 2 perfected what X-Men started, a superhero film where the protagonist''s internal conflict is as compelling as the external threat. Both films are peak examples of the early 2000s wave that proved the genre could be emotionally serious.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 369458, + 142491, + 9, + 'roni88882-ctrl', + 'Hellboy takes the X-Men premise of a misfit hero who doesn''t fit in the human world and pushes it into darker fantasy territory. Both films are driven by a hero whose power is inseparable from his sense of alienation.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 369458, + 319613, + 7, + 'roni88882-ctrl', + 'Superman II was the first superhero film to take seriously the idea of a hero torn between his powers and a normal life, the same conflict that anchors X-Men two decades later. Both films are better than expected because they trust their characters.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 334212, + 15936, + 9, + 'roni88882-ctrl', + 'Anatomy of a Murder is the more morally ambiguous companion to To Kill a Mockingbird, both are courtroom dramas where the defense attorney is the moral center, but Anatomy refuses the cleaner resolution and lets the audience sit with uncertainty.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 334212, + 366987, + 10, + 'roni88882-ctrl', + 'Witness for the Prosecution delivers one of cinema''s great courtroom twists and shares with To Kill a Mockingbird a deep faith in the drama that language, testimony, and conscience can generate without needing action.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 334212, + 159706, + 9, + 'roni88882-ctrl', + 'Inherit the Wind is To Kill a Mockingbird''s intellectual sibling, both use a trial to examine how communities resist inconvenient truths, and both derive their power from a principled lawyer standing against a hostile crowd.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 334212, + 169942, + 9, + 'roni88882-ctrl', + 'Judgment at Nuremberg scales To Kill a Mockingbird''s moral stakes to a global level, asking the same question about whether individuals can be held responsible for the systems they enable. Both films take their courtroom settings with complete seriousness.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 273585, + 235676, + 10, + 'roni88882-ctrl', + 'Both are Hitchcock films where the heroine is trapped in a domestic situation with a man she cannot fully trust, and both use the home as a space of psychological danger rather than safety. The emotional architecture is nearly identical.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 273585, + 281546, + 9, + 'roni88882-ctrl', + 'Rope shares Rebecca''s sense of a secret hidden in plain sight within a confined, elegant space. Both films create their tension not from action but from the fear that the wrong person will say the wrong thing at the wrong moment.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 273585, + 316323, + 9, + 'roni88882-ctrl', + 'Strangers on a Train and Rebecca both trap their protagonists in a web of someone else''s making, with the villain always one step ahead. Both are Hitchcock at his most elegantly cruel.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 273585, + 38614, + 10, + 'roni88882-ctrl', + 'The Birds echoes Rebecca in placing a woman in a coastal setting where the environment itself feels hostile and the source of danger is never fully explained. Both films end without complete resolution, which is part of what makes them linger.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 227925, + 299846, + 9, + 'roni88882-ctrl', + 'Short Cuts is Robert Altman''s direct spiritual successor to Nashville, the same overlapping ensemble structure, the same Los Angeles-for-America metaphor, and the same willingness to let stories end without tidy conclusions.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 227925, + 208878, + 9, + 'roni88882-ctrl', + 'McCabe and Mrs. Miller shares Nashville''s anti-myth approach to American iconography, both films strip away the heroic narrative and replace it with the messiness of actual human ambition, failure, and community.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 227925, + 257689, + 10, + 'roni88882-ctrl', + 'The Player is Altman''s most focused satire, but it uses the same technique as Nashville, a protagonist who moves through a social world that the camera observes with detached irony, letting the audience fill in the moral judgment.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 227925, + 207099, + 9, + 'roni88882-ctrl', + 'MASH was Altman''s breakthrough and Nashville his masterpiece, both use overlapping dialogue, ensemble casts, and dark comedy to describe how institutions grind individuals down while the individuals keep performing normalcy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194818, + 41988, + 9, + 'roni88882-ctrl', + 'Blue Velvet is the clearest entry point for Lost Highway, both films peel back a surface of domestic normality to reveal a violently surreal underworld, and both use sexuality and crime as the doorway between those two realities.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194818, + 365169, + 6, + 'roni88882-ctrl', + 'Wild at Heart shares Lost Highway''s commitment to following its own internal dream logic rather than conventional narrative. Both are Lynch road movies where the landscape is as psychologically loaded as the characters.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 194818, + 102344, + 10, + 'roni88882-ctrl', + 'Eraserhead is Lynch''s purest expression of the industrial dread and domestic anxiety that resurfaces in Lost Highway. Both films are best understood as nightmares with their own consistent internal rules.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 41988, + 365169, + 7, + 'roni88882-ctrl', + 'Wild at Heart takes the violent underbelly Lynch exposed in Blue Velvet and throws it into a road movie framework, amplifying the chaos while keeping the same dark romantic core. Both films are in direct conversation with each other.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 41308, + 152222, + 8, + 'roni88882-ctrl', + 'The Hudsucker Proxy shows the Coens at their most playful, but the same precise plotting and delight in watching plans unravel that defines Blood Simple is fully present. Both reward viewers who pay attention to small details early on.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 41308, + 271339, + 6, + 'roni88882-ctrl', + 'Raising Arizona was the Coens'' second film and their first full expression of their comic voice, but it shares with Blood Simple the fundamental premise that simple plans become catastrophically complicated when human nature is involved.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 152222, + 271339, + 9, + 'roni88882-ctrl', + 'Both are Coen Brothers comedies built around naive protagonists whose optimism collides with a world that runs on cynicism. The endings of both films are unexpectedly generous, which is unusual for the Coens and makes them especially satisfying.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 303399, + 298691, + 10, + 'roni88882-ctrl', + 'House of Flying Daggers takes the wuxia visual language of Shaolin Soccer''s action sequences and applies it to a tragic romance, creating the same sense of bodies in impossible motion but with a far heavier emotional weight.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 303399, + 371615, + 9, + 'roni88882-ctrl', + 'Hero is the most visually ambitious wuxia film of its era and shares Shaolin Soccer''s commitment to treating physical movement as a form of emotional expression. Both films understand that how a body moves tells a story beyond the plot.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 303399, + 239851, + 6, + 'roni88882-ctrl', + 'Oldboy shares Shaolin Soccer''s intensity and its willingness to push physical and emotional content to an extreme, though it replaces the comic energy with pure dread. Both films stay in the memory long after they end.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 298691, + 371615, + 8, + 'roni88882-ctrl', + 'Hero and House of Flying Daggers are companion pieces from Zhang Yimou, both use color, landscape, and choreography as storytelling tools, and both explore loyalty and sacrifice in a world where personal feelings cannot survive political forces.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 47132, + 145961, + 9, + 'roni88882-ctrl', + 'His Girl Friday was made just two years after Bringing Up Baby and features Cary Grant in another screwball role built around a fast-talking woman who refuses to let him think clearly. Both films peak at the speed of their own dialogue.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 47132, + 254654, + 9, + 'roni88882-ctrl', + 'The Philadelphia Story matches Bringing Up Baby''s comic sophistication and adds a more emotionally complex romantic triangle. Both films are anchored by women who are smarter and more interesting than any single man in the room.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 145961, + 254654, + 10, + 'roni88882-ctrl', + 'Both are defining screwball comedies of 1940 featuring Cary Grant opposite a witty, independent woman, and both use the premise of a romantic reunion to question what people actually want from each other.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 349550, + 63134, + 10, + 'roni88882-ctrl', + 'Christmas Vacation is the best entry in the Griswold series precisely because it concentrates all the family chaos into one house rather than spreading it across a road trip. Fans of the original find it funnier because the stakes feel more personal.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 349550, + 351187, + 6, + 'roni88882-ctrl', + 'Vegas Vacation returns the Griswolds to the road-trip format of the original and uses Las Vegas as a setting that naturally escalates every bad decision Clark can make. It is the weakest of the three but recognizable in spirit.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 63134, + 351187, + 8, + 'roni88882-ctrl', + 'Vegas Vacation follows Christmas Vacation with another contained, high-stakes Griswold disaster, the casino setting creates the same pressure-cooker atmosphere as the family home, just with gambling debts instead of broken decorations.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256630, + 256631, + 9, + 'roni88882-ctrl', + 'Dead Man''s Chest expands the mythology of the first film considerably and delivers more of what made Curse of the Black Pearl work. Jack Sparrow''s chaos, elaborate set pieces, and a plot that moves too fast to question.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256630, + 228313, + 6, + 'roni88882-ctrl', + 'National Treasure launched in the wake of Pirates'' success and offers a similar fantasy of hidden history, eccentric heroes, and adventure built around following clues. Both are family blockbusters that take their own mythology seriously.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 256631, + 228313, + 6, + 'roni88882-ctrl', + 'National Treasure shares Dead Man''s Chest''s scale and its pleasure in elaborate setups that pay off with maximum spectacle. Both films are primarily interested in keeping the audience moving forward with no time to pause.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 340119, + 340120, + 9, + 'roni88882-ctrl', + 'Red is the crowning film of Kieslowski''s trilogy and the most direct companion to Blue, both use a single character''s private grief to ask whether connection with other people is still possible after loss.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 340119, + 91912, + 8, + 'roni88882-ctrl', + 'The Double Life of Veronique is the clearest predecessor to Blue. Kieslowski uses the same tools of music, light, and a woman''s interiority to explore identity and feeling without resolving them into a conventional plot.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 340120, + 91912, + 10, + 'roni88882-ctrl', + 'Veronique and Red both hinge on the idea that two people''s lives can be invisibly connected across distance, and both use that premise to ask questions about fate and coincidence that the films deliberately leave open.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 335380, + 150507, + 9, + 'roni88882-ctrl', + 'My Neighbor Totoro and Grave of the Fireflies were released as a double feature in Japan in 1988, and the pairing is intentional, one is about childhood wonder surviving hardship, the other about childhood destroyed by it. They are each other''s mirror.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 335380, + 140221, + 6, + 'roni88882-ctrl', + 'Howl''s Moving Castle is Miyazaki''s most technically elaborate work but shares Totoro''s warmth and its faith that kindness and imagination can survive even in a world at war. Both films center on a young person learning to trust the world.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 335380, + 174953, + 10, + 'roni88882-ctrl', + 'Nausicaa of the Valley of the Wind established the template Miyazaki would refine in Totoro, a child protagonist with a deep connection to nature, a threatened environment, and a resolution that comes from empathy rather than violence.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 335380, + 184805, + 9, + 'roni88882-ctrl', + 'Castle in the Sky was made the year before Totoro and shares its sense of children navigating a world too large and too dangerous for them, finding safety in friendship and wonder rather than in adults.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 230151, + 132525, + 8, + 'roni88882-ctrl', + 'The Graduate used Benjamin''s aimless rebellion to satirize postwar American comfort; Network used Howard Beale''s breakdown to satirize the television that had absorbed that comfort. Both films are angry comedies disguised as dramas.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 230151, + 270008, + 10, + 'roni88882-ctrl', + 'Quiz Show examines the same relationship between television, truth, and public appetite that Network satirizes, both films argue that audiences prefer the performance over the reality, and that the industry knows it.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 230151, + 335799, + 9, + 'roni88882-ctrl', + 'Tootsie uses the absurdity of soap opera production to deliver the same critique of television that Network makes through rage, both films suggest the medium rewards performance over truth and that the audience is complicit.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 230151, + 33190, + 9, + 'roni88882-ctrl', + 'Being There is Network''s quieter, more devastating companion, where Network screams about media manipulation, Being There shows it operating without anyone noticing, through a protagonist who has no opinions at all and is loved for it.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 66194, + 644, + 7, + 'roni88882-ctrl', + '10 Things I Hate About You follows Clueless in adapting classic literature into a 90s high school setting, this time drawing on The Taming of the Shrew. Both films give their source material genuine respect while making it feel entirely contemporary.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 66194, + 80050, + 8, + 'roni88882-ctrl', + 'Dazed and Confused preceded Clueless by two years and shares its approach to high school as a complete social ecosystem worthy of serious observation. Both films treat teenage experience as inherently meaningful rather than as preparation for adulthood.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 66194, + 13963, + 8, + 'roni88882-ctrl', + 'American Graffiti is the original high school ensemble portrait, capturing a single night before everything changes. Clueless updates the same nostalgia for youth in motion to the 90s, with the same affection for its characters'' particular moment.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 644, + 80050, + 10, + 'roni88882-ctrl', + 'Both films understand that the social hierarchies of high school are simultaneously absurd and intensely real to the people inside them. Dazed and Confused strips away the romantic plot and observes the ecosystem directly; 10 Things uses it as backdrop.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 27486, + 80015, + 8, + 'roni88882-ctrl', + 'Days of Heaven is Malick''s direct follow-up to Badlands and shares its use of a young woman''s voiceover to narrate events she only partially understands, set against American landscapes so beautiful they make the violence seem almost natural.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 27486, + 139543, + 6, + 'roni88882-ctrl', + 'Harold and Maude and Badlands both center on a young person drawn to transgression as a form of self-definition, though one treats this with dark comedy and the other with tragic awe. Both films changed what American independent cinema thought it could do.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 27486, + 114618, + 8, + 'roni88882-ctrl', + 'Five Easy Pieces is the emotional predecessor to Badlands, both follow a restless, inarticulate American man moving across the landscape with no destination, driven by something the film refuses to name.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 27486, + 185537, + 9, + 'roni88882-ctrl', + 'The Last Picture Show strips the American small town down to its loneliness and sexual frustration with the same unflinching honesty that Badlands brings to violence. Both films are elegies for a version of America that produces only damage.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 133574, + 363300, + 6, + 'roni88882-ctrl', + 'Where Eagles Dare delivers the same pleasure as The Great Escape, a small team of professionals executing an audacious plan behind enemy lines, but trades the ensemble weight for pure pulp entertainment with Richard Burton and Clint Eastwood.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 133574, + 87323, + 8, + 'roni88882-ctrl', + 'The Dirty Dozen takes the Great Escape formula, a group of men with different skills preparing for an impossible mission, and gives it a harder, darker edge. Both are ensemble war films where the preparation is as exciting as the execution.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 133574, + 250612, + 9, + 'roni88882-ctrl', + 'Paths of Glory is The Great Escape''s moral inverse, where The Great Escape celebrates soldiers'' ingenuity and solidarity, Paths of Glory shows soldiers being destroyed by their own officers. Together they form a complete picture of war.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 133574, + 312934, + 9, + 'roni88882-ctrl', + 'Stalag 17 is the direct predecessor to The Great Escape, the same POW camp setting, the same mix of humor and danger, and the same focus on a hidden traitor undermining the group. The Great Escape is bigger in scale; Stalag 17 is sharper in plotting.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 167324, + 233307, + 9, + 'roni88882-ctrl', + 'Nixon is Oliver Stone''s companion piece to JFK, both films obsess over the same moment in American political history and use an expressionist visual style to argue that power operates outside what the public is ever allowed to see.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 167324, + 11525, + 9, + 'roni88882-ctrl', + 'All the President''s Men is the great counterpart to JFK, where Stone maximizes paranoia and sensation, Pakula strips everything back to the procedural reality of two reporters following a paper trail. Both make institutional corruption feel immediate.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 167324, + 294855, + 9, + 'roni88882-ctrl', + 'Serpico dramatizes the same argument JFK makes, that institutions protect themselves before they protect the truth, but from the inside, through a single cop who refuses to go along. Both films are about the cost of refusing to look away.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 167324, + 119756, + 8, + 'roni88882-ctrl', + 'The French Connection captures the same paranoid energy that JFK would amplify twenty years later, a city where the criminals and the system are barely distinguishable, and where the hero''s obsession is the only thing keeping the investigation alive.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 17760, + 73303, + 10, + 'roni88882-ctrl', + 'Crimes and Misdemeanors takes the neurotic self-examination of Annie Hall and applies it to a genuinely dark moral question, can a person live comfortably with having done something unforgivable? It is Allen''s most serious and his best film after Annie Hall.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 17760, + 138444, + 9, + 'roni88882-ctrl', + 'Hannah and Her Sisters is Annie Hall''s warmer, more generous cousin, the same New York intellectual world, the same anxious romantic comedy, but built around a family rather than a failed relationship. Both show Allen at the height of his craft.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 17760, + 204163, + 10, + 'roni88882-ctrl', + 'Manhattan is Allen''s direct follow-up to Annie Hall, trading the documentary confession style for widescreen black-and-white romanticism. Both films are about the same man failing at the same things for the same reasons, and both are extraordinary.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 17760, + 204190, + 9, + 'roni88882-ctrl', + 'Manhattan Murder Mystery reunited Allen with Diane Keaton for the first time since Annie Hall and uses their real chemistry to give an otherwise lightweight thriller genuine warmth. It is the most fun Allen made in the 90s.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 215346, + 137655, + 9, + 'roni88882-ctrl', + 'Halloween created the grammar of the modern horror film, the vulnerable protagonist, the inescapable space, the killer who never seems to tire. Misery uses the same grammar in a single room and proves it works just as well without a mask.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 215346, + 291221, + 8, + 'roni88882-ctrl', + 'Scream understood that horror in the 90s needed to acknowledge what Misery had proven, that the scariest scenarios are psychologically grounded. Both films are about being trapped with someone whose instability makes them more dangerous than any monster.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 215346, + 240327, + 9, + 'roni88882-ctrl', + 'The Omen and Misery both build their horror around a threat that looks entirely normal to everyone except the protagonist. The sense of isolation, of being the only person who sees what is really happening, drives both films.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 215346, + 232458, + 9, + 'roni88882-ctrl', + 'A Nightmare on Elm Street and Misery share the premise that a person''s mind can become a prison, in one film through dreams, in the other through physical captivity. Both trap their protagonists in spaces where the usual rules of escape do not apply.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 310184, + 265288, + 10, + 'roni88882-ctrl', + 'The Producers is the foundation of the Mel Brooks method, comedy that works by making the audience complicit in the joke. Spaceballs inherits this directly, using Star Wars fans'' own love of the source material as the target.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 310184, + 372551, + 9, + 'roni88882-ctrl', + 'Young Frankenstein shows what Mel Brooks could do when he matched his comic instincts with a script that had real structural discipline. Spaceballs fans discover in Young Frankenstein that the jokes can be even better when the story is airtight.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 310184, + 40472, + 10, + 'roni88882-ctrl', + 'Blazing Saddles is the Mel Brooks film most similar in spirit to Spaceballs, both take a beloved American genre and deconstruct it from the inside, with the fourth-wall breaks and escalating absurdity that became his signature.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 310184, + 301669, + 7, + 'roni88882-ctrl', + 'Silent Movie is Brooks at his most experimental, an actual silent film made in 1976 as a tribute and a stunt. Fans of Spaceballs who want to understand where Brooks'' genre obsession comes from will find Silent Movie illuminating, if uneven.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 18828, + 162302, + 9, + 'roni88882-ctrl', + 'Irma la Douce reunited Billy Wilder with Jack Lemmon and Shirley MacLaine three years after The Apartment and uses a similar premise, a decent man compromised by proximity to moral ambiguity, played more broadly for laughs.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 18828, + 312934, + 9, + 'roni88882-ctrl', + 'Stalag 17 is a Wilder film that shows his range, the same sharp plotting and cynical observations about human self-interest that make The Apartment work, applied to a POW camp where the stakes are survival rather than career advancement.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 18828, + 195702, + 6, + 'roni88882-ctrl', + 'Love in the Afternoon is an earlier Wilder film with the same romantic comedy architecture as The Apartment, a younger person drawn into the orbit of an older, more powerful one, but set in Paris and played in a lighter key.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 18828, + 5545, + 9, + 'roni88882-ctrl', + 'Ace in the Hole is Wilder''s most uncompromising work and The Apartment''s dark twin, both films are about men who exploit their positions for personal gain, but where The Apartment lets its hero redeem himself, Ace in the Hole does not.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 310726, + 102341, + 9, + 'roni88882-ctrl', + 'Eraser came out two years after Speed and was clearly designed for the same audience, an action film built around a single high-concept threat, a hero who improvises under pressure, and set pieces that push practical effects to their limit.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 303564, + 38614, + 10, + 'roni88882-ctrl', + 'The Birds places its protagonist in a situation where the threat is real but its meaning is never explained, creating the same unresolved dread that The Sixth Sense generates through its withheld revelation. Both films end before they comfort you.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 362808, + 18828, + 8, + 'roni88882-ctrl', + 'The Apartment is When Harry Met Sally''s most direct ancestor, a comedy set in New York about two people circling each other across a professional relationship, written with the kind of precise, humane wit that makes both films feel timeless.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 369458, + 79044, + 9, + 'roni88882-ctrl', + 'Darkman is Sam Raimi''s superhero origin story before he made Spider-Man, and it shares X-Men''s interest in a hero defined by disfigurement and the inability to live normally. Both films treat their hero''s power as a source of grief as much as strength.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 334212, + 254654, + 10, + 'roni88882-ctrl', + 'The Philadelphia Story and To Kill a Mockingbird are both films where the protagonist''s moral quality is tested in a public setting, one a courtroom, one a drawing room, and where the audience''s sympathy is carefully managed by a great script.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 273585, + 206255, + 7, + 'roni88882-ctrl', + 'Marnie is Rebecca''s psychological descendant, both feature a woman with a hidden past drawn into the orbit of a powerful man who wants to possess and solve her. Hitchcock made both films and used them to explore the same questions about memory and control.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 303564, + 345690, + 3, + 'roni88882-ctrl', + 'Though both movies are M. Night Shyamalan films with a supernatural mystery at their core, it is a bad recommendation since Unbreakable replaces the emotional ghost story of The Sixth Sense with a slow-burn superhero origin that has a very different pace and payoff.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 303564, + 301391, + 4, + 'roni88882-ctrl', + 'Though both films are M. Night Shyamalan supernatural thrillers built on dread and a twist, Signs is a bad recommendation since it shifts the threat to alien invasion and loses the intimate psychological core that made The Sixth Sense resonate.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30967, + 30965, + 3, + 'roni88882-ctrl', + 'Though both films are Batman franchise entries with a costumed villain and a Gotham setting, Batman Forever is a bad recommendation since Schumacher replaced Burton''s dark gothic tone with neon camp that alienates fans of the original.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30967, + 30952, + 1, + 'roni88882-ctrl', + 'Though both films are Batman franchise entries set in a gothic Gotham with a costumed hero facing flamboyant villains, Batman & Robin is a bad recommendation since it is widely considered one of the worst superhero films ever made and shares almost nothing of Batman Returns'' dark psychological depth.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30967, + 142491, + 3, + 'roni88882-ctrl', + 'Though both films feature a dark, visually stylized non-human hero in a gothic world, Hellboy is a bad recommendation since it leans into monster-movie humor while Batman Returns is a brooding character study with a very different emotional register.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 30967, + 79044, + 4, + 'roni88882-ctrl', + 'Though both films feature masked, disfigured protagonists in a stylized comic-book world, Darkman is a bad recommendation since it is a low-budget B-movie revenge thriller while Batman Returns is a polished studio production with far greater emotional depth.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 369458, + 30965, + 3, + 'roni88882-ctrl', + 'Though both films are ensemble superhero productions featuring a hero team facing multiple villains in a stylized comic-book world, Batman Forever is a bad recommendation since it traded character depth for flashy neon aesthetics while X-Men brought the grounded emotional seriousness that revived the genre.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 369458, + 30952, + 2, + 'roni88882-ctrl', + 'Though both films are ensemble superhero productions featuring costumed heroes, Batman & Robin is a bad recommendation since it is a campy disaster that nearly killed the genre while X-Men brought the grounded seriousness that saved it.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311038, + 30965, + 3, + 'roni88882-ctrl', + 'Though both films are superhero sequels with a flamboyant villain at their center, Batman Forever is a bad recommendation since it relies on Jim Carrey''s over-the-top camp rather than the emotional depth and character substance that define Spider-Man 2.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311038, + 30952, + 5, + 'roni88882-ctrl', + 'Though both films are superhero sequels featuring a hero in a cape facing multiple villains, Batman & Robin is a bad recommendation since it is widely cited as the lowest point of the genre while Spider-Man 2 is praised as its high point.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311038, + 142491, + 4, + 'roni88882-ctrl', + 'Though both films are 2004 superhero productions in which the hero is tormented by the conflict between his powers and his desire for a normal life, Hellboy is a bad recommendation since it is a niche horror-fantasy cult film while Spider-Man 2 is emotionally accessible mainstream blockbuster filmmaking.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 311038, + 79044, + 3, + 'roni88882-ctrl', + 'Though both films are Sam Raimi superhero productions sharing a directorial vision, Darkman is a bad recommendation since it is a rough, low-budget revenge thriller with horror elements that most Spider-Man fans would find jarring.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 319613, + 30965, + 3, + 'roni88882-ctrl', + 'Though both films are superhero sequels featuring a hero torn between his extraordinary abilities and his desire to live as an ordinary man, Batman Forever is a bad recommendation since its neon camp aesthetic and weak villain work are on an entirely different level from Superman II''s memorable performances and coherent story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 319613, + 30952, + 4, + 'roni88882-ctrl', + 'Though both films are big-studio superhero productions featuring a hero facing three villains, Batman & Robin is a bad recommendation since it lacks the memorable performances and coherent story that give Superman II its cult appeal.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 319613, + 142491, + 5, + 'roni88882-ctrl', + 'Though both films feature a superhero who struggles to live normally among humans, Hellboy is a bad recommendation since it is a cult dark-fantasy horror hybrid aimed at a niche audience very different from the mainstream crowd that enjoys Superman II.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 319613, + 79044, + 4, + 'roni88882-ctrl', + 'Though both films feature a hero defined by physical transformation and the inability to live a normal life, Darkman is a bad recommendation since it is a revenge-driven thriller with horror elements while Superman II is an upbeat blockbuster with a very different emotional tone.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 209133, + 187191, + 4, + 'roni88882-ctrl', + 'Though both films are female-led comedies set in competitive social environments with a sharp protagonist at their center, Legally Blonde is a bad recommendation since it trades Mean Girls'' satirical bite for a breezy feel-good empowerment story that lacks the same wit.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 66194, + 187191, + 4, + 'roni88882-ctrl', + 'Though both films are female-led comedies in which a stylish, underestimated woman proves herself smarter than everyone around her expects, Legally Blonde is a bad recommendation since it plays its premise sincerely for empowerment while Clueless wraps its story in self-aware literary irony borrowed from Jane Austen.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 644, + 187191, + 3, + 'roni88882-ctrl', + 'Though both films are female-led comedies set in a competitive institutional environment where the protagonist must prove herself against skeptical peers, Legally Blonde is a bad recommendation since it is a glossy empowerment fantasy while 10 Things I Hate About You is grounded in genuine romantic tension and Shakespearean dramatic structure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 310726, + 342685, + 5, + 'roni88882-ctrl', + 'Though both films are mid-90s action blockbusters built around a single elemental threat that cannot be stopped, Twister is a bad recommendation since it replaces Speed''s character-driven tension with CGI spectacle, leaving little emotional investment in the outcome.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 310726, + 20371, + 4, + 'roni88882-ctrl', + 'Though both films are high-concept action blockbusters built around a ticking clock in which a small team must prevent a catastrophe through improvised heroism, Armageddon is a bad recommendation since it relies on Michael Bay excess and forced sentimentality while Speed achieves its tension through lean, efficient storytelling.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 9023, + 342685, + 2, + 'roni88882-ctrl', + 'Though both films are mid-90s blockbusters built around an unstoppable force that traps the protagonist in a dangerous environment requiring quick thinking to survive, Twister is a bad recommendation since it is a spectacle film with thin characters while Air Force One earns its tension through a strongly written central performance.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 9023, + 20371, + 3, + 'roni88882-ctrl', + 'Though both films are high-concept action blockbusters with a ticking-clock threat and a heroic lead who refuses to surrender, Armageddon is a bad recommendation since it replaces Air Force One''s disciplined plausibility with Michael Bay excess and sentimentality.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 9023, + 68940, + 4, + 'roni88882-ctrl', + 'Though both films are 1997 action productions set aboard a hijacked aircraft in which a skilled hero must outwit dangerous criminals to protect innocent lives, Con Air is a bad recommendation since it plays the premise as campy absurdist fun while Air Force One treats the same scenario with serious dramatic weight.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 158999, + 342685, + 2, + 'roni88882-ctrl', + 'Though both films are mid-90s disaster blockbusters in which ordinary people must face an overwhelming natural or extraterrestrial force that threatens everything around them, Twister is a bad recommendation since it is a visual effects thrill-ride with little emotional weight while Independence Day builds a satisfying human drama around its spectacle.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 158999, + 20371, + 3, + 'roni88882-ctrl', + 'Though both films are large-scale disaster blockbusters with ensemble casts facing an extinction-level threat, Armageddon is a bad recommendation since it is longer, louder, and less emotionally satisfying than Independence Day despite the obvious surface similarity.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 158999, + 68940, + 4, + 'roni88882-ctrl', + 'Though both films are 90s ensemble action blockbusters with a group of heroes under extreme pressure, Con Air is a bad recommendation since it is a contained single-vehicle thriller while Independence Day is a global spectacle, making the scale and emotional register very different.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 10920, + 328281, + 3, + 'roni88882-ctrl', + 'Though both films are sci-fi action sequels featuring humans fighting an unstoppable mechanical threat, Terminator 3 is a bad recommendation since it is a formulaic retread with a weaker script that fails to justify its existence next to the landmark filmmaking of Aliens.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 10920, + 102341, + 1, + 'roni88882-ctrl', + 'Though both films are relentless action films featuring heavily armed heroes fighting an overwhelming enemy force, Eraser is a bad recommendation since it is a forgettable mid-90s vehicle while Aliens is a career-defining James Cameron masterpiece.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 262645, + 328281, + 3, + 'roni88882-ctrl', + 'Though both films are Schwarzenegger-led sci-fi action films built around an indestructible hunter that cannot be reasoned with, Terminator 3 is a bad recommendation since it recycles the second film''s beats without the inventiveness that makes Predator''s escalating dread so effective.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 262645, + 102341, + 1, + 'roni88882-ctrl', + 'Though both films are Schwarzenegger action vehicles built around a high-stakes rescue mission against dangerous enemies, Eraser is a bad recommendation since it is a routine witness-protection thriller that lacks the creativity and mounting dread that define Predator.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 68309, + 328281, + 2, + 'roni88882-ctrl', + 'Though both films are Schwarzenegger action vehicles built around a father figure battling overwhelming odds to save someone he loves, Terminator 3 is a bad recommendation since it takes itself seriously but fails to deliver, while Commando works precisely because of its self-aware absurdist energy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 68309, + 102341, + 3, + 'roni88882-ctrl', + 'Though both films are Schwarzenegger action vehicles in which a lone hero must rescue someone he loves from heavily armed professional criminals, Eraser is a bad recommendation since its bland corporate thriller aesthetic never achieves the cartoonish confidence and cult charm that make Commando so entertaining.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 283543, + 328281, + 4, + 'roni88882-ctrl', + 'Though both films are Schwarzenegger sci-fi action productions in which he plays a man pursued by an overwhelming system that wants him eliminated, Terminator 3 is a bad recommendation since it is straightforward franchise continuation with no subtext while The Running Man embeds sharp satirical commentary on television spectacle into its action.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 283543, + 102341, + 5, + 'roni88882-ctrl', + 'Though both films are Schwarzenegger action vehicles built around a man fighting a corrupt system that wants him dead, Eraser is a bad recommendation since it offers only chases and shootouts while The Running Man wraps its action in sharp satirical commentary on television spectacle.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 336458, + 328281, + 4, + 'roni88882-ctrl', + 'Though both films are Schwarzenegger sci-fi action productions in which reality itself cannot be trusted and a powerful mechanical force pursues the protagonist relentlessly, Terminator 3 is a bad recommendation since it retreads familiar ground while Total Recall rewards repeat viewing with layered paranoia and surreal world-building.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 336458, + 102341, + 1, + 'roni88882-ctrl', + 'Though both films are Schwarzenegger action vehicles built around a protagonist who cannot trust what he sees and must fight to survive, Eraser is a bad recommendation since it is a disposable thriller while Total Recall rewards repeat viewing with its layered questions about reality.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 349550, + 104681, + 1, + 'roni88882-ctrl', + 'Though both films follow the Griswold family on a disastrous road trip with Clark''s optimism colliding with constant catastrophe, European Vacation is a bad recommendation since it is a tired rehash that transplants the formula to a new location without generating fresh laughs.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 63134, + 104681, + 3, + 'roni88882-ctrl', + 'Though both films follow the Griswold family into escalating domestic chaos driven by Clark''s desperate need for everything to go perfectly, European Vacation is a bad recommendation since it is widely considered the weakest entry and lacks the specific holiday warmth that makes Christmas Vacation so rewatchable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 235676, + 206255, + 5, + 'roni88882-ctrl', + 'Though both films are Hitchcock productions centered on a woman with a hidden past drawn into the orbit of a powerful man who wants to possess her, Marnie is a bad recommendation since its psychoanalytic premise feels forced and tonally uneven compared to the perfectly balanced elegance of Notorious.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 281546, + 206255, + 4, + 'roni88882-ctrl', + 'Though both films are Hitchcock productions built around a hidden secret that threatens to destroy the protagonist if the wrong person discovers it, Marnie is a bad recommendation since its psychoanalytic premise feels forced and unconvincing while Rope is an ingenious formal experiment that generates its tension through pure craft.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 316323, + 206255, + 4, + 'roni88882-ctrl', + 'Though both films are Hitchcock productions in which the protagonist is trapped in a dangerous situation by someone who holds power over them and cannot be easily escaped, Marnie is a bad recommendation since its psychoanalytic backstory feels dated while Strangers on a Train is driven by one of Hitchcock''s most perfectly constructed thriller plots.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 38614, + 206255, + 4, + 'roni88882-ctrl', + 'Though both films are Hitchcock productions starring Tippi Hedren as a woman whose past threatens to destroy her present, Marnie is a bad recommendation since its psychological backstory feels dated and unconvincing while The Birds generates its dread through spectacle and unexplained menace.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 41988, + 102344, + 4, + 'roni88882-ctrl', + 'Though both films are David Lynch productions that use industrial textures and domestic spaces to create a sense of deep psychological dread beneath a calm surface, Eraserhead is a bad recommendation since it is a nearly plotless avant-garde nightmare while Blue Velvet has a recognizable noir structure that provides narrative grounding.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 80583, + 250514, + 5, + 'roni88882-ctrl', + 'Though both films feature Robin Williams as an unconventional figure who inspires others to embrace life more fully against institutional resistance, Patch Adams is a bad recommendation since it deploys Williams for broad sentimentality and easy emotion while Dead Poets Society earns its feeling through restraint.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 80583, + 362188, + 4, + 'roni88882-ctrl', + 'Though both films feature Robin Williams in emotionally ambitious dramatic roles that ask big questions about human experience, What Dreams May Come is a bad recommendation since it overwhelms with afterlife fantasy visuals while Dead Poets Society stays grounded in the specific reality of one school and earns its emotion honestly.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 67395, + 21213, + 3, + 'roni88882-ctrl', + 'Though both films are Spielberg prestige dramas centered on a character denied love and belonging who must fight to survive in a world that refuses to recognize their full humanity, A.I. is a bad recommendation since it is a cold sci-fi fable that alienated many viewers while The Color Purple is a grounded historical story with genuine warmth.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 14477, + 21213, + 4, + 'roni88882-ctrl', + 'Though both films are Spielberg productions centered on a being who is denied freedom and legal personhood and must fight for recognition of their humanity in a courtroom setting, A.I. is a bad recommendation since it is a cold speculative sci-fi meditation while Amistad is a grounded historical drama with urgent moral stakes.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 359297, + 21213, + 4, + 'roni88882-ctrl', + 'Though both films are Spielberg productions that use a fantastical threat to explore what it means to be human, A.I. is a bad recommendation since it is a slow philosophical meditation while War of the Worlds is a visceral survival thriller, and fans of one are likely to be frustrated by the other.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 100130, + 21213, + 5, + 'roni88882-ctrl', + 'Though both films are Spielberg productions following a child protagonist separated from everything familiar who must navigate a hostile world alone in order to find his way back to belonging, A.I. is a bad recommendation since it uses its child to explore abstract philosophical questions while Empire of the Sun tells a grounded wartime survival story with a deeply earned emotional payoff.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 17760, + 313583, + 1, + 'roni88882-ctrl', + 'Though both films are Woody Allen comedies set in New York that use a fragmented structure to explore a creative man''s anxieties and relationships, Stardust Memories is a bad recommendation since it is a self-indulgent meditation on fame that alienates viewers who loved Annie Hall''s emotional honesty.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 17760, + 57654, + 1, + 'roni88882-ctrl', + 'Though both films are Woody Allen comedies set in New York following a neurotic protagonist navigating romance and career through sharp dialogue, Celebrity is a bad recommendation since it replaces Annie Hall''s warmth and emotional honesty with cold cynicism and no character compelling enough to care about.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 17760, + 305390, + 4, + 'roni88882-ctrl', + 'Though both films are Woody Allen comedies following a New York man whose plans spiral beyond his control and whose relationships reveal uncomfortable truths about who he really is, Small Time Crooks is a bad recommendation since it is a lightweight farce while Annie Hall is deeply personal romantic introspection that changed how comedies could be made.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 17760, + 147694, + 3, + 'roni88882-ctrl', + 'Though both films are Woody Allen comedies about a creative man whose personal dysfunction undermines his professional life, Hollywood Ending is a bad recommendation since it is built around a single joke premise that wears thin quickly while Annie Hall resists formula at every turn.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 73303, + 313583, + 5, + 'roni88882-ctrl', + 'Though both films are Woody Allen dramatic productions in which a successful man is forced to confront the gap between the life he presents to the world and the moral emptiness underneath, Stardust Memories is a bad recommendation since it is self-indulgent and alienating while Crimes and Misdemeanors channels the same material into Allen''s most ethically serious and narratively substantial film.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 73303, + 57654, + 4, + 'roni88882-ctrl', + 'Though both films are Woody Allen ensemble dramas set in New York using interlocking storylines to examine how people compromise their values, Celebrity is a bad recommendation since it satirizes shallow ambition without moral weight while Crimes and Misdemeanors confronts genuine guilt and consequence.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 73303, + 305390, + 1, + 'roni88882-ctrl', + 'Though both films are Woody Allen productions in which a man commits a crime and must live with the aftermath, Small Time Crooks is a bad recommendation since it is a breezy farce with no philosophical depth while Crimes and Misdemeanors is Allen''s darkest meditation on guilt and moral responsibility.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 73303, + 147694, + 5, + 'roni88882-ctrl', + 'Though both films are Woody Allen drama-comedy blends featuring a man whose life unravels through his own moral compromises, Hollywood Ending is a bad recommendation since it is a tired late-career misfire while Crimes and Misdemeanors is among Allen''s masterpieces.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 138444, + 313583, + 4, + 'roni88882-ctrl', + 'Though both films are Woody Allen ensemble productions set in New York in which a man reflects on the people in his life and what they reveal about his own limitations, Stardust Memories is a bad recommendation since it is deliberately cold and distancing while Hannah and Her Sisters fills its world with the warmth and generosity that make its characters genuinely lovable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 138444, + 57654, + 5, + 'roni88882-ctrl', + 'Though both films are Woody Allen ensemble comedies set in New York following interconnected characters navigating love and ambition, Celebrity is a bad recommendation since it observes its world with contempt while Hannah and Her Sisters fills the same milieu with genuine warmth and affection.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 138444, + 305390, + 3, + 'roni88882-ctrl', + 'Though both films are Woody Allen ensemble comedies set in New York in which a group of interconnected characters pursue love and money with mixed results, Small Time Crooks is a bad recommendation since it is a single-joke farce while Hannah and Her Sisters weaves multiple serious storylines into a rich and emotionally textured tapestry.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 138444, + 147694, + 1, + 'roni88882-ctrl', + 'Though both films are Woody Allen ensemble comedies centered on creative professionals in New York managing complicated personal relationships, Hollywood Ending is a bad recommendation since it is a late-career misfire built on a single gimmick while Hannah and Her Sisters represents Allen at his peak.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 204163, + 313583, + 4, + 'roni88882-ctrl', + 'Though both films are Woody Allen productions in which a male artist reflects on his relationships and creative life against a New York backdrop, Stardust Memories is a bad recommendation since it is a deliberately alienating self-portrait that frustrated the audience who loved Manhattan''s warmth.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 204163, + 57654, + 4, + 'roni88882-ctrl', + 'Though both films are Woody Allen productions following a man through a series of romantic and professional encounters in a vividly observed New York, Celebrity is a bad recommendation since it views its world with bitter disillusionment while Manhattan romanticizes the same city with genuine beauty.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 204163, + 305390, + 5, + 'roni88882-ctrl', + 'Though both films are Woody Allen productions set in New York following a man whose romantic ambitions consistently exceed his self-awareness, Small Time Crooks is a bad recommendation since it is a low-stakes comic caper while Manhattan is one of Allen''s most formally ambitious and emotionally serious achievements.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 204163, + 147694, + 1, + 'roni88882-ctrl', + 'Though both films are Woody Allen productions following a filmmaker navigating his artistic identity alongside complicated romantic relationships, Hollywood Ending is a bad recommendation since it is a throwaway comedy built on a single gimmick while Manhattan is a formally precise emotional masterpiece.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 204190, + 313583, + 5, + 'roni88882-ctrl', + 'Though both films are Woody Allen productions set in New York following a couple navigating an unsettling situation that tests their relationship, Stardust Memories is a bad recommendation since it is Allen''s most alienating and self-referential work while Manhattan Murder Mystery is his most playful and accessible.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 204190, + 57654, + 3, + 'roni88882-ctrl', + 'Though both films are Woody Allen comedies set in New York following characters whose lives are consumed by ambition and desire in a world of glamour and cultural status, Celebrity is a bad recommendation since it delivers a joyless cold-eyed satire while Manhattan Murder Mystery has the playful energy and genuine warmth of a Hitchcock-inspired romp.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 204190, + 305390, + 4, + 'roni88882-ctrl', + 'Though both films are Woody Allen comedies in which ordinary New Yorkers find themselves drawn into an unexpected criminal situation, Small Time Crooks is a bad recommendation since it runs out of ideas after its first act while Manhattan Murder Mystery sustains its comic energy through a properly engineered mystery plot.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 204190, + 147694, + 5, + 'roni88882-ctrl', + 'Though both films are Woody Allen comedies in which a filmmaker navigates personal and professional chaos in New York with the help of a woman whose energy and judgment balance his own neurotic limitations, Hollywood Ending is a bad recommendation since it relies on a single running gag while Manhattan Murder Mystery generates genuine suspense and chemistry between Allen and Keaton.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 153190, + 313583, + 3, + 'roni88882-ctrl', + 'Though both films are Woody Allen productions that examine the gap between the life a creative man imagines and the one he actually lives, Stardust Memories is a bad recommendation since its abstract self-referential style weakens emotional impact while Husbands and Wives uses raw documentary honesty to make the pain feel real.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 153190, + 57654, + 4, + 'roni88882-ctrl', + 'Though both films are Woody Allen ensemble dramas exploring how relationships collapse under the weight of ambition and desire, Celebrity is a bad recommendation since it treats its characters with detached irony while Husbands and Wives generates genuine pain through uncomfortable emotional proximity.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 153190, + 305390, + 4, + 'roni88882-ctrl', + 'Though both films are Woody Allen productions in which characters make impulsive decisions that upend their established lives, Small Time Crooks is a bad recommendation since it is a formulaic caper while Husbands and Wives is emotionally raw and formally experimental.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 153190, + 147694, + 1, + 'roni88882-ctrl', + 'Though both films are Woody Allen productions centered on a filmmaker whose personal dysfunction threatens to destroy his professional work and the relationships that sustain him, Hollywood Ending is a bad recommendation since it uses psychosomatic blindness as a lazy comic premise while Husbands and Wives uses its raw unstable camera as a genuine formal expression of emotional collapse.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 270622, + 313583, + 5, + 'roni88882-ctrl', + 'Though both films are Woody Allen productions that use an episodic structure and voiceover narration to reflect on a past version of the filmmaker''s life and world, Stardust Memories is a bad recommendation since its cold combative tone is the opposite of the warmth and nostalgia that define Radio Days.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 270622, + 57654, + 4, + 'roni88882-ctrl', + 'Though both films are Woody Allen ensemble productions set in a vividly recreated New York world in which show business shapes the dreams and disappointments of ordinary people, Celebrity is a bad recommendation since it dissects the emptiness of modern fame with cold irony while Radio Days celebrates the warmth and communal magic of a lost era.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 270622, + 305390, + 4, + 'roni88882-ctrl', + 'Though both films are Woody Allen comedies that use a working-class New York setting and ensemble cast to find humor in ordinary people''s ambitions and failures, Small Time Crooks is a bad recommendation since it is a flat farce while Radio Days elevates the same material into something lyrical and genuinely moving.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 270622, + 147694, + 4, + 'roni88882-ctrl', + 'Though both films are Woody Allen productions set in the world of entertainment in which nostalgia and the gap between fantasy and reality are central themes, Hollywood Ending is a bad recommendation since it uses show business as a backdrop for a single thin joke while Radio Days finds genuine human warmth and poignancy in the same material.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 137655, + 40226, + 4, + 'roni88882-ctrl', + 'Though both films are landmark horror productions that redefined how fear could be generated on screen with minimal resources, Blair Witch Project is a bad recommendation since it works through total absence of visibility and found-footage chaos while Halloween relies on Carpenter''s controlled direction and the visible presence of menace.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 137655, + 120116, + 5, + 'roni88882-ctrl', + 'Though both films are slasher horror productions set at an isolated location where a killer stalks young people one by one, Friday the 13th is a bad recommendation since it leans into graphic kills and shock value while Halloween builds its dread through restraint and Carpenter''s precise direction.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 291221, + 40226, + 4, + 'roni88882-ctrl', + 'Though both films are late-90s horror productions that reinvented the genre by breaking the rules audiences had come to expect, Blair Witch Project is a bad recommendation since it achieves fear through raw minimalism and absence while Scream works through wit, self-awareness, and clever genre deconstruction.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 291221, + 120116, + 3, + 'roni88882-ctrl', + 'Though both films are slasher horror productions built around a group of young people being hunted by a killer at an isolated location, Friday the 13th is a bad recommendation since Scream works by dissecting and parodying the very conventions that Friday the 13th established, making the latter feel like the joke without the punchline.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 240327, + 40226, + 4, + 'roni88882-ctrl', + 'Though both films are landmark horror productions in which an ordinary person slowly realizes that an unseen malevolent force has targeted them and cannot be escaped, Blair Witch Project is a bad recommendation since it strips everything away into raw silence and disorientation while The Omen builds its dread through religious mythology and orchestral grandeur.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 240327, + 120116, + 4, + 'roni88882-ctrl', + 'Though both films are horror productions in which an innocent-seeming environment conceals a deadly threat that kills methodically, Friday the 13th is a bad recommendation since it is a low-budget kill-count slasher while The Omen is a polished supernatural thriller with genuine mythological subtext.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 232458, + 40226, + 5, + 'roni88882-ctrl', + 'Though both films are horror productions that trap their protagonists in a space where the normal rules of escape no longer apply, Blair Witch Project is a bad recommendation since it works entirely through suggestion and absence while A Nightmare on Elm Street is built around a vivid theatrical villain and surreal dream logic.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 232458, + 120116, + 4, + 'roni88882-ctrl', + 'Though both films are foundational slasher horror productions featuring a killer who targets teenagers in an isolated setting, Friday the 13th is a bad recommendation since it is a straightforward kill-at-camp formula while A Nightmare on Elm Street is built on the inventive premise that the killer attacks inside your dreams.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 278498, + 40226, + 4, + 'roni88882-ctrl', + 'Though both films are landmark horror productions centered on a countdown in which the protagonist must uncover the truth about a supernatural threat before it kills them, Blair Witch Project is a bad recommendation since it achieves fear through rawness and total absence of visibility while The Ring builds its dread through polished visual language and a defined mythology.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 278498, + 120116, + 4, + 'roni88882-ctrl', + 'Though both films are horror productions that use an escalating countdown to build dread toward an inevitable deadly confrontation, Friday the 13th is a bad recommendation since it is a mechanical kill-count slasher while The Ring is rooted in Japanese ghost mythology and psychological terror.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 259826, + 40226, + 3, + 'roni88882-ctrl', + 'Though both films are horror productions in which a group of people find themselves in an environment that has turned hostile and from which escape seems impossible, Blair Witch Project is a bad recommendation since it is a raw low-budget mockumentary while Poltergeist uses high production values and a loving family as the emotional anchor of its supernatural invasion.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 259826, + 120116, + 5, + 'roni88882-ctrl', + 'Though both films are horror productions in which ordinary people are terrorized by a malevolent force in a place that should be safe, Friday the 13th is a bad recommendation since it uses disposable characters as kill-count fodder while Poltergeist builds its horror around family bonds that give the audience genuine emotional stakes.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 372551, + 301669, + 4, + 'roni88882-ctrl', + 'Though both films are Mel Brooks comedies that pay loving tribute to a classic Hollywood genre while subverting its conventions for laughs, Silent Movie is a bad recommendation since it depends entirely on the gimmick of having no dialogue while Young Frankenstein holds up as a great film entirely on the strength of its script.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 372551, + 144760, + 3, + 'roni88882-ctrl', + 'Though both films are Mel Brooks genre parodies that recreate the visual language of a beloved Hollywood tradition while mining it for comedy, High Anxiety is a bad recommendation since it never fully commits to either comedy or suspense while Young Frankenstein spoofs its source with precision and genuine cinematic love.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 372551, + 279755, + 4, + 'roni88882-ctrl', + 'Though both films are Mel Brooks parodies that use a beloved genre framework as the vehicle for absurdist comedy and fourth-wall-breaking gags, Robin Hood: Men in Tights is a bad recommendation since it is a scattershot product of Brooks'' more indulgent later period while Young Frankenstein is a tightly written masterpiece of comedic timing.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 40472, + 301669, + 4, + 'roni88882-ctrl', + 'Though both films are Mel Brooks comedies that use a classic Hollywood genre as the platform for a broader comedic vision, Silent Movie is a bad recommendation since it is a pleasant but shallow novelty tribute while Blazing Saddles uses its Western parody to deliver genuine satirical commentary on race in America.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 40472, + 144760, + 5, + 'roni88882-ctrl', + 'Though both films are Mel Brooks comedies that use a beloved Hollywood genre as the framework for irreverent gags and self-aware humor aimed at audiences who love the source material, High Anxiety is a bad recommendation since it is a gentle loving tribute where laughs come infrequently while Blazing Saddles lands jokes on multiple levels simultaneously.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 40472, + 279755, + 3, + 'roni88882-ctrl', + 'Though both films are Mel Brooks genre parodies that use anachronism and absurdist humor to deflate the self-seriousness of a beloved Hollywood tradition, Robin Hood: Men in Tights is a bad recommendation since it is a crowd-pleasing product with no satirical edge while Blazing Saddles was a genuine cultural provocation.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 265288, + 301669, + 4, + 'roni88882-ctrl', + 'Though both films are Mel Brooks comedies built around a theatrical scheme that spirals beyond anyone''s control, Silent Movie is a bad recommendation since it relies on the novelty of having no dialogue while The Producers is a perfectly structured farce powered by two legendary performances.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 265288, + 144760, + 4, + 'roni88882-ctrl', + 'Though both films are Mel Brooks comedies in which the protagonist is drawn into an elaborate situation that grows more dangerous and absurd with each step, High Anxiety is a bad recommendation since it is a gentle episodic homage without a compelling dramatic engine while The Producers builds its comedy on a scheme with genuine stakes.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 265288, + 279755, + 4, + 'roni88882-ctrl', + 'Though both films are Mel Brooks comedies that use an established story framework as the vehicle for his brand of irreverent meta-humor and sharp cultural satire, Robin Hood: Men in Tights is a bad recommendation since it is a late-career family parody while The Producers represents Brooks at his sharpest and most original.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +VALUES ( + 310184, + 144760, + 5, + 'roni88882-ctrl', + 'Though both films are Mel Brooks genre parodies that use affectionate deconstruction of a beloved Hollywood tradition to generate comedy through recognition and subversion, High Anxiety is a bad recommendation since it is a slow tribute aimed at classic cinema devotees while Spaceballs targets a much broader audience with faster and more accessible pop-culture gags.', + NULL +); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (267038, 276217, 10, 'talh2000', 'Both are Tarantino crime masterpieces with nonlinear storytelling, iconic soundtracks, and unforgettable dialogue.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (267038, 176711, 10, 'talh2000', 'Both are Tarantino films bursting with stylish violence, sharp writing, and eclectic music choices.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (276217, 176711, 10, 'talh2000', 'Both feature Tarantino''s trademark standoffs and brilliant use of music as a narrative device.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (176711, 176712, 10, 'talh2000', 'Kill Bill Vol. 2 deepens and concludes the revenge story begun in Vol. 1 - essential companion pieces.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (267038, 131780, 10, 'talh2000', 'Both are defining crime epics with razor-sharp scripts and sprawling ensemble casts.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (131780, 130128, 10, 'talh2000', 'Both are mob epics tracing a man''s rise and fall through organized crime with operatic intensity.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (131780, 56304, 10, 'talh2000', 'Both are Scorsese crime films set in the mob world, narrated from the inside with vivid period detail.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (82967, 131780, 10, 'talh2000', 'Both are Scorsese crime masterworks following morally compromised men through brutal criminal worlds.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (56304, 130128, 10, 'talh2000', 'Both are sprawling crime epics about the corrupting pull of the mob world over an entire lifetime.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (82967, 56304, 10, 'talh2000', 'Both are Scorsese crime films featuring all-star ensembles in stories of loyalty, betrayal, and violence.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (289109, 290070, 10, 'talh2000', 'Both are Spielberg WWII epics confronting the horror and moral weight of the conflict with unflinching realism.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (18960, 121538, 10, 'talh2000', 'Both are landmark anti-war Vietnam films depicting the psychological destruction of young soldiers.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (257459, 18960, 10, 'talh2000', 'Both are unsparing Vietnam War films told from a ground-level soldier''s perspective with raw intensity.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (289109, 257459, 10, 'talh2000', 'Both are visceral, realistic combat films honoring soldiers while refusing to glamorize war.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (92616, 1711, 10, 'talh2000', 'Both are Kubrick masterpieces blending dark wit with visionary filmmaking to explore mankind''s capacity for destruction.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (1711, 299073, 10, 'talh2000', 'Both are Kubrick films that weaponize slow dread and classical music to deeply unsettling effect.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (352639, 266574, 10, 'talh2000', 'Both are Hitchcock''s darkest films, built around obsession and identity with unforgettable Bernard Herrmann scores.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (273543, 266574, 10, 'talh2000', 'Both are Hitchcock voyeuristic thrillers that implicate the viewer in the protagonist''s dangerous gaze.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (235062, 273543, 10, 'talh2000', 'Both are Hitchcock chase-and-suspense films that never waste a single scene.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (352639, 235062, 10, 'talh2000', 'Both are peak-era Hitchcock thrillers with mysterious leading women and breathtaking set pieces.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (159172, 271095, 10, 'talh2000', 'Both are Indiana Jones adventures with the same irreverent wit and spectacular action choreography.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (271095, 159175, 10, 'talh2000', 'Consecutive Indiana Jones films sharing the same globe-trotting adventure formula and Harrison Ford charisma.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (96593, 26844, 10, 'talh2000', 'Both are Spielberg films about the magic of childhood wonder and the power of human connection.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (165961, 96593, 10, 'talh2000', 'Both are Spielberg films that defined a generation''s cinematic imagination with warmth and suspense.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (109093, 37178, 10, 'talh2000', 'Both are Coen Brothers films set in America, blending dark crime with absurdist humor and moral irony.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (37178, 271339, 10, 'talh2000', 'Both are Coen Brothers comedies with quirky, lovable characters caught in situations way over their heads.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (222194, 41988, 10, 'talh2000', 'Both are David Lynch films that plunge beneath suburban or Hollywood surfaces into surreal darkness.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (222194, 194818, 10, 'talh2000', 'Both are Lynch neo-noir mysteries where identity dissolves and reality becomes entirely unreliable.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (41988, 194818, 10, 'talh2000', 'Both are Lynch films saturated with dread, strange beauty, and deliberately unresolved mysteries.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (207992, 328277, 10, 'talh2000', 'Both are landmark sci-fi action films featuring revolutionary visual effects and machine-vs-human themes.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (328285, 328277, 10, 'talh2000', 'The Terminator and T2 are direct sequels sharing the same mythology, characters, and relentless chase structure.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (207992, 328285, 10, 'talh2000', 'Both are genre-defining sci-fi thrillers about artificial intelligence threatening humanity''s existence.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (1711, 212097, 10, 'talh2000', 'Both are visionary science fiction films that imagined the future of humanity with awe-inspiring ambition.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (280270, 280281, 10, 'talh2000', 'Rocky and Rocky II follow the same character arc directly, with identical themes of perseverance and heart.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (280281, 280282, 10, 'talh2000', 'Rocky II and III are consecutive sequels sharing the same emotional formula and training-montage energy.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (30959, 30955, 10, 'talh2000', 'Both are definitive Batman films that established the character''s dark tone for their respective generations.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (311038, 311037, 10, 'talh2000', 'Spider-Man 2 is the direct sequel to Spider-Man, deepening the hero''s personal sacrifice and emotional burden.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (130128, 130129, 10, 'talh2000', 'The Godfather and Part II form one of cinema''s greatest two-part narratives about power, family, and corruption.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (313459, 313478, 10, 'talh2000', 'Star Wars and The Empire Strikes Back are consecutive chapters of the original trilogy, sharing characters and mythology.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (313478, 313479, 10, 'talh2000', 'Empire Strikes Back and Return of the Jedi complete the original trilogy''s story arc.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (313459, 406411, 10, 'talh2000', 'Both expand the Star Wars universe through space opera storytelling with iconic music and heroic conflict.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (113504, 218415, 10, 'talh2000', 'Both are Pixar films combining heartfelt family themes with inventive world-building and visual creativity.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (158927, 113504, 10, 'talh2000', 'Both are Pixar films exploring identity and belonging with equal parts humor and emotional depth.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (337166, 218415, 10, 'talh2000', 'Both are Pixar classics centered on friendship, loyalty, and growing up with warm charm.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (158927, 337166, 10, 'talh2000', 'Both are Pixar films featuring ensemble casts of lovable characters navigating extraordinary circumstances.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (302696, 309634, 10, 'talh2000', 'Both are beloved Hollywood musicals with iconic scores that remain endlessly watchable.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (361688, 302696, 10, 'talh2000', 'Both are classic Hollywood musicals with spectacular choreography and emotionally resonant stories.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (301540, 291698, 10, 'talh2000', 'Both are tense psychological thrillers featuring obsessive investigators pursuing dangerous killers.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (291698, 348944, 10, 'talh2000', 'Both are stylish 90s crime thrillers with shocking endings that reframe everything that came before.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (301540, 348944, 10, 'talh2000', 'Both are crime films built around brilliant, unsettling antagonists whose presence dominates the screen.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (130953, 120574, 10, 'talh2000', 'Both are peak-era Connery Bond films with the same suave, cold-war tension and globe-trotting adventure.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (92573, 120574, 10, 'talh2000', 'From Russia with Love is the direct sequel to Dr. No, developing the Bond formula to perfection.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (130953, 92573, 10, 'talh2000', 'Both are early Bond films that established the franchise''s iconic tone of wit, gadgetry, and danger.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (313059, 46322, 10, 'talh2000', 'Both are classic coming-of-age films from the 80s centered on friendship, identity, and the pain of growing up.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (111442, 46322, 10, 'talh2000', 'Both are John Hughes teenage films celebrating youth, rebellion, and finding your place in the world.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (80583, 313059, 10, 'talh2000', 'Both are deeply felt films about the formative bonds between young people and the adults who shape them.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (46322, 80583, 10, 'talh2000', 'Both are emotionally resonant films about teenagers confronting authority and searching for meaning.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (362808, 32712, 10, 'talh2000', 'Both are romantic films built entirely around two people talking, with chemistry carrying every scene.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (32712, 32713, 10, 'talh2000', 'Before Sunrise and Before Sunset are direct sequels, one of cinema''s most intimate two-film romances.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (239851, 14942, 10, 'talh2000', 'Both are electrifying non-English crime films with visceral storytelling and shocking narrative twists.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (306032, 193253, 10, 'talh2000', 'Both are Guy Ritchie British crime films with fast-cut editing, colorful criminals, and sharp wit.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (271915, 371844, 10, 'talh2000', 'Both are Kurosawa samurai masterworks exploring honor, power, and the lone warrior''s moral code.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (49696, 241141, 10, 'talh2000', 'Both are Sergio Leone epics using wide-open spaces and Ennio Morricone music to mythologize violence.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (188507, 188509, 10, 'talh2000', 'Lethal Weapon and its sequel follow the same buddy-cop partnership with the same explosive energy.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (86274, 328277, 10, 'talh2000', 'Both are iconic action films that set the template for the genre with endlessly quotable moments.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (139655, 139650, 10, 'talh2000', 'Both are Harry Potter films in the same series, with Prisoner of Azkaban being the darker, richer evolution.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (139657, 139650, 10, 'talh2000', 'Consecutive Harry Potter entries sharing the same world, characters, and growing darkness.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (56044, 202537, 10, 'talh2000', 'Both are classic Hollywood films from the 40s that define their respective genres with timeless style.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (56044, 64729, 10, 'talh2000', 'Both are cornerstones of the Hollywood golden age, celebrated as among the greatest films ever made.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (191246, 337166, 10, 'talh2000', 'Both are beloved animated films about growing up and the pain of losing the innocence of youth.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (104338, 32712, 10, 'talh2000', 'Both are profoundly romantic films about the way love reshapes memory and identity over time.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (117874, 134672, 10, 'talh2000', 'Both are warm, philosophically light films about a man reliving or reflecting on his life''s journey.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (297838, 117874, 10, 'talh2000', 'Both are deeply humanist films about resilience, hope, and the enduring bonds of friendship.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (270971, 209158, 10, 'talh2000', 'Both are early Scorsese films with De Niro, exploring masculine violence and identity in New York.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (276085, 337830, 10, 'talh2000', 'Both are raw, unflinching portraits of self-destruction told with kinetic, visceral filmmaking energy.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (62076, 348944, 10, 'talh2000', 'Both are masterful mysteries whose twists feel genuinely earned and dramatically devastating.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (241347, 297838, 10, 'talh2000', 'Both are films about individuals fighting a dehumanizing system, with hope as the final weapon.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (186439, 290070, 10, 'talh2000', 'Both are grand historical epics built around moral courage, with sweeping scores and enormous emotional weight.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (306032, 239851, 10, 'talh2000', 'Both are non-linear crime films with stylish ensemble casts and darkly comic sensibilities.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (112290, 276085, 10, 'talh2000', 'Both are intense psychological films that force the viewer to confront uncomfortable truths about identity and desire.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (210511, 303564, 10, 'talh2000', 'Both are puzzle films built around a protagonist''s fractured perception of reality, with devastating payoffs.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (264146, 131885, 10, 'talh2000', 'Both are beloved 80s adventure films full of wit, heart, and characters you want to spend a lifetime with.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (131885, 111442, 10, 'talh2000', 'Both are quintessential 80s adventure films about young people on an unforgettable journey.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (1390, 92616, 10, 'talh2000', 'Both are dark comedies set against the backdrop of war, using absurdist humor to critique military logic.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (33179, 90772, 10, 'talh2000', 'Both are wildly inventive films that blend dark humor with surreal concepts and genuine emotional resonance.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (124554, 207992, 10, 'talh2000', 'Both are cerebral sci-fi films asking deep questions about fate, identity, and what it means to be human.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (253440, 222194, 10, 'talh2000', 'Both are art-house films that dissolve identity and blur the boundary between two people with hypnotic precision.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (312963, 1711, 10, 'talh2000', 'Both are slow, meditative sci-fi masterpieces that demand patience and reward it with profound philosophical depth.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (194874, 300945, 10, 'talh2000', 'Both are quiet, introspective films about loneliness and unexpected connection between people adrift in their lives.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (198435, 202537, 10, 'talh2000', 'Both are landmark crime thrillers from cinema''s early decades that set the template for every detective story after.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (13978, 297838, 10, 'talh2000', 'Both are powerful films about men overcoming a dehumanizing past to reclaim dignity and hope.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (7842, 337830, 10, 'talh2000', 'Both are kinetic night-city films where a protagonist is pulled through a chaotic world beyond their control.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (106790, 194874, 10, 'talh2000', 'Both are melancholy, beautifully shot films about longing and missed connection told with visual restraint.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (220276, 302696, 10, 'talh2000', 'Both are vibrant, music-driven films where performance and spectacle fuse into pure cinematic joy.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (77701, 276085, 10, 'talh2000', 'Both are devastating films about addiction and self-destruction, told with fearless emotional honesty.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (13978, 270971, 10, 'talh2000', 'Both are powerful films about men defined by violence, with performances that demand the viewer''s full attention.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (82967, 141544, 10, 'talh2000', 'Both are gripping crime films built around a legendary face-off between two iconic actors at the peak of their powers.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (311040, 311037, 3, 'talh2000', 'Though both are Spider-Man films sharing the same hero, Spider-Man 3''s overcrowded villain roster undermines the emotional clarity of the original.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (311040, 311038, 3, 'talh2000', 'Though a sequel to Spider-Man 2, Spider-Man 3 abandons the tight character focus that made its predecessor great.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (311040, 30959, 3, 'talh2000', 'Though both are superhero films about a conflicted hero, Batman Begins'' psychological seriousness dwarfs Spider-Man 3''s overcrowded chaos.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (30952, 30955, 3, 'talh2000', 'Though both are Batman films, Batman & Robin replaces gothic atmosphere with camp that simply doesn''t work.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (30952, 30959, 3, 'talh2000', 'Though both are Batman films, Batman & Robin''s cartoonish excess is miles from Batman Begins'' grounded realism.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (30952, 319602, 3, 'talh2000', 'Though both are superhero films featuring iconic heroes, Batman & Robin''s campiness makes Superman look masterfully restrained.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (280305, 280270, 3, 'talh2000', 'Though both are Rocky films with the same underdog formula, Rocky V strips away the triumphant spirit that made the original soar.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (280305, 280281, 3, 'talh2000', 'Though Rocky V continues the same character as Rocky II, its street-fight finale feels like a cheap imitation.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (280305, 280282, 3, 'talh2000', 'Though both are Rocky sequels, Rocky V lacks the Eye of the Tiger energy that made Rocky III so exhilarating.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (238073, 348944, 3, 'talh2000', 'Though both rely on heist misdirection, Ocean''s Twelve''s tricks feel self-indulgent rather than satisfying like The Usual Suspects.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (238073, 267038, 3, 'talh2000', 'Though both rely on style and cool ensemble chemistry, Ocean''s Twelve prioritizes in-jokes over genuine storytelling like Pulp Fiction does.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (238073, 215876, 3, 'talh2000', 'Though both are slick ensemble films built on cool, Ocean''s Twelve lacks the genuine suspense of Mission: Impossible.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (220805, 86274, 3, 'talh2000', 'Though both are action films, Mr. & Mrs. Smith''s glossy star-power covers a thin plot compared to Die Hard''s tight construction.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (220805, 188507, 3, 'talh2000', 'Though both are action-comedy hybrids, Lethal Weapon has far more genuine chemistry and stakes than Mr. & Mrs. Smith.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (220805, 328277, 3, 'talh2000', 'Though both feature spectacular action, Mr. & Mrs. Smith lacks the mythic weight of Terminator 2.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (220805, 306032, 3, 'talh2000', 'Though both feature stylish, witty crime-adjacent scenarios, Snatch has far more invention and energy.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (220805, 335835, 3, 'talh2000', 'Though both are action films about attractive people in fast-paced danger, Top Gun has far more cinematic charisma.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (188511, 188507, 3, 'talh2000', 'Though both are Lethal Weapon films, LW4 relies on franchise goodwill rather than the sharp writing of the original.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (188511, 188509, 3, 'talh2000', 'Though LW4 continues the same partnership as LW2, the franchise fatigue is palpable by the fourth installment.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (188511, 86274, 3, 'talh2000', 'Though both are action films with a charismatic hero under fire, LW4''s franchise fatigue is glaring next to Die Hard''s lean invention.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (188511, 207992, 3, 'talh2000', 'Though both are late-90s action films, Lethal Weapon 4 is pure comfort food compared to The Matrix''s genre revolution.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (149287, 96593, 3, 'talh2000', 'Though both are Spielberg childhood-wonder films, Hook''s bloated sentimentality undermines the magic of E.T.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (149287, 26844, 3, 'talh2000', 'Though both are adventure films about recapturing youth, Hook never achieves the effortless charm of Back to the Future.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (149287, 165961, 3, 'talh2000', 'Though both are Spielberg films, Hook''s excessive runtime and uneven tone pale beside Jaws'' lean perfection.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (149287, 113506, 3, 'talh2000', 'Though both are films about the magic of storytelling and childhood, Hook is far less emotionally precise than Finding Neverland.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (149287, 159172, 3, 'talh2000', 'Though both are adventure films with grand quests, Hook''s bloated runtime makes Indiana Jones and the Last Crusade look effortlessly tight.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (149287, 256632, 3, 'talh2000', 'Though both are adventure films built on spectacle and fun, Hook''s pacing is far more indulgent than Pirates of the Caribbean.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (350424, 210511, 3, 'talh2000', 'Though both are psychological puzzle films about identity and memory, Vanilla Sky''s glossy remake lacks Memento''s innovation.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (350424, 222194, 3, 'talh2000', 'Though both blur reality and fantasy in disturbing ways, Vanilla Sky feels surface-level beside Mulholland Dr.''s depth.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (350424, 104338, 3, 'talh2000', 'Though both are films about love, loss, and the fallibility of memory, Eternal Sunshine is emotionally devastating where Vanilla Sky is merely pretty.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (350424, 303564, 3, 'talh2000', 'Though both are twist films about perception and reality, The Sixth Sense''s emotional payoff is far more carefully constructed.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (69812, 291698, 3, 'talh2000', 'Though both feature paranoid protagonists in danger, Conspiracy Theory''s comedic tone undercuts its tension versus Se7en.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (69812, 301540, 3, 'talh2000', 'Though both involve obsessive protagonists in danger, Conspiracy Theory''s rom-com packaging weakens its thriller instincts.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (69812, 123435, 3, 'talh2000', 'Though both are paranoid thrillers where the hero can''t trust anyone, The Game executes the premise with far greater elegance.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (66194, 46322, 3, 'talh2000', 'Though both are high school films about social identity, Clueless''s satire is lighter than The Breakfast Club''s emotional depth.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (66194, 313059, 3, 'talh2000', 'Though both are films about teenage friendship groups, Clueless trades Stand By Me''s raw sincerity for Beverly Hills comedy.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (66194, 111442, 3, 'talh2000', 'Though both are teen comedies celebrating rule-bending, Ferris Bueller''s wit is sharper and more timeless than Clueless.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (644, 362808, 3, 'talh2000', 'Though both are romantic comedies built on witty dialogue, 10 Things can''t match When Harry Met Sally''s emotional resonance.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (644, 32712, 3, 'talh2000', 'Though both are romantic films about two people sparring before falling in love, Before Sunrise has far greater emotional depth.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (59578, 304862, 3, 'talh2000', 'Though both are Tim Burton films starring Johnny Depp, Sleepy Hollow''s gothic tone far outclasses the candy factory''s quirks.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (59578, 97727, 3, 'talh2000', 'Though both are Tim Burton fairy tales with Depp in a strange, isolated role, Edward Scissorhands has genuine emotional power.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (59578, 70959, 3, 'talh2000', 'Though both are Tim Burton fantasy films, Charlie and the Chocolate Factory lacks Corpse Bride''s macabre charm and heart.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (59578, 300230, 3, 'talh2000', 'Though both are family films featuring imaginative fantasy worlds, Shrek 2''s irreverent humor outshines the candy factory''s quirks.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (370017, 86274, 3, 'talh2000', 'Though both are action films about an unconventional hero, XXX''s extreme sports excess pales beside Die Hard''s wit and tension.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (370017, 207992, 3, 'talh2000', 'Though both feature a protagonist discovering a secret world of action, XXX can''t touch The Matrix''s revolutionary vision.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (370017, 215876, 3, 'talh2000', 'Though both are high-octane spy-action films, XXX trades Mission: Impossible''s clever plotting for pure adrenaline spectacle.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (1390, 289109, 3, 'talh2000', 'Though both are Spielberg WWII films, 1941''s comedic chaos is the polar opposite of Saving Private Ryan''s devastating realism.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (40199, 207992, 3, 'talh2000', 'Though both are sci-fi films in dystopian futures, Blade Runner''s deliberate pacing may alienate fans of The Matrix''s urgency.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (326155, 131780, 3, 'talh2000', 'Though both are Scorsese films about men consumed by their environment, Taxi Driver''s lone-wolf alienation is far from Goodfellas'' operatic sweep.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (326155, 209158, 3, 'talh2000', 'Though both are early Scorsese New York portraits, Taxi Driver''s bleak nihilism makes Mean Streets look positively sociable.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (120506, 62076, 3, 'talh2000', 'Though both are period mystery films with dogged detectives, From Hell''s gothic excess lacks Chinatown''s devastating precision.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (120506, 301540, 3, 'talh2000', 'Though both involve investigators pursuing a serial killer, From Hell substitutes atmosphere for the psychological depth of Silence of the Lambs.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (247579, 291698, 3, 'talh2000', 'Though both are Fincher thrillers with relentless tension, Panic Room''s single-location premise can''t match Se7en''s moral complexity.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (247579, 301540, 3, 'talh2000', 'Though both are taut thrillers about someone in danger, Panic Room''s stakes never reach Silence of the Lambs'' terrifying intensity.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (158999, 207992, 3, 'talh2000', 'Though both are sci-fi films about an alien threat, Independence Day''s spectacle comes at the expense of ideas.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (158999, 96593, 3, 'talh2000', 'Though both involve humanity encountering beings from beyond Earth, ID4''s jingoistic blockbuster tone is miles from E.T.''s warmth.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (158999, 65811, 3, 'talh2000', 'Though both are about humanity''s encounter with alien life, Independence Day replaces Close Encounters'' wonder with destruction.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (70959, 191246, 3, 'talh2000', 'Though both are animated films with death as a central theme, The Lion King''s emotional devastation dwarfs Corpse Bride''s gentle charm.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (70959, 337166, 3, 'talh2000', 'Though both are animated family films, Corpse Bride''s slight runtime leaves little room for character depth compared to Toy Story.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (74259, 302696, 3, 'talh2000', 'Though both are musical films celebrating a particular era''s style, Cry-Baby''s cult irony can''t match Singin'' in the Rain''s genuine joy.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (74259, 361688, 3, 'talh2000', 'Though both are musicals with heightened romantic drama, Cry-Baby''s parody approach falls short of West Side Story''s emotional power.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (67395, 290070, 3, 'talh2000', 'Though both are Spielberg films about human suffering and survival, they''re radically different in setting and emotional register.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (67395, 297838, 3, 'talh2000', 'Though both are films about resilience and survival against terrible odds, The Shawshank Redemption''s uplift is far more universal.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (300945, 32712, 3, 'talh2000', 'Though both are films about two people on a journey of self-discovery, they operate in very different emotional registers.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (300945, 362808, 3, 'talh2000', 'Though both explore love and longing, Sideways'' midlife melancholy is a sharp tonal departure from rom-com warmth.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (330388, 18960, 3, 'talh2000', 'Though both are meditative war films, audiences expecting Apocalypse Now''s hallucinatory excess may find The Thin Red Line too measured.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (139657, 264146, 3, 'talh2000', 'Though both are beloved fantasy films with fairy-tale worlds, Harry Potter and the Sorcerer''s Stone has less wit than The Princess Bride.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (139657, 191246, 3, 'talh2000', 'Though both feature a young person discovering a magical world, Lion King''s emotional stakes hit far harder.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (188511, 158999, 3, 'talh2000', 'Though both are blockbuster action films from the late 90s, Independence Day at least has genuine large-scale spectacle.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (220805, 69812, 3, 'talh2000', 'Though both are action films about hidden identities and romantic intrigue, Mr. & Mrs. Smith is pure style over substance.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (350424, 33179, 3, 'talh2000', 'Though both are surreal comedies that blur reality, Being John Malkovich has far more genuine invention than Vanilla Sky''s glossy remake.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (238073, 123435, 3, 'talh2000', 'Though both are films about elaborate plans that twist unexpectedly, The Game executes its concept with far more discipline.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (40199, 1711, 3, 'talh2000', 'Though both are slow, cerebral sci-fi meditations, Blade Runner''s ambiguity lacks the cosmic grandeur of 2001.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (40199, 212097, 3, 'talh2000', 'Though both imagine future cities with incredible visual detail, their tones and tempos create radically different experiences.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (149287, 359297, 3, 'talh2000', 'Though both are Spielberg spectacle films, Hook''s fantasy indulgence clashes with War of the Worlds'' lean, terrifying tension.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (69812, 210511, 3, 'talh2000', 'Though both center on a protagonist questioning their own perception, Memento''s structural innovation makes Conspiracy Theory look conventional.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (280305, 129185, 3, 'talh2000', 'Though both feature a protagonist fighting back against impossible odds, Gladiator''s epic scope dwarfs Rocky V''s street-level sequel.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (220805, 372233, 3, 'talh2000', 'Though both are spy-adjacent action films with glamour and danger, You Only Live Twice has far more classic genre craft.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (59578, 367073, 3, 'talh2000', 'Though both are fantasy films about a child in a magical world, The Wizard of Oz has irreplaceable emotional depth.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (149287, 264146, 3, 'talh2000', 'Though both are fairy-tale adventure films, Hook''s bloated sentiment can''t match The Princess Bride''s perfect balance of wit and heart.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (311036, 311037, 3, 'talh2000', 'Though both are Spider-Man productions, the animated series lacks the cinematic depth and emotional stakes of the 2002 film.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (311036, 311038, 3, 'talh2000', 'Though both feature the same hero, the animated Spider-Man series is far lighter fare than Spider-Man 2''s rich character drama.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (300229, 300230, 3, 'talh2000', 'Though both are Shrek films, the original is a rougher, less confident film compared to the sharper, funnier sequel.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (300229, 191246, 3, 'talh2000', 'Though both are animated films about a lonely outsider finding love, The Lion King''s emotional power far exceeds Shrek''s fairy-tale parody.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (350424, 90772, 3, 'talh2000', 'Though both are surreal films about a young man questioning reality, Donnie Darko has far more genuine emotional and thematic depth.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (69812, 303564, 3, 'talh2000', 'Though both are thriller films with surprising reveals, The Sixth Sense''s emotional gut-punch is leagues beyond Conspiracy Theory''s genre fun.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (247579, 210511, 3, 'talh2000', 'Though both are tense films where a protagonist pieces together events, Memento''s structural innovation is far more ambitious than Panic Room''s thriller mechanics.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (220805, 256632, 3, 'talh2000', 'Though both are adventure-action films with charismatic leads, Pirates of the Caribbean has genuine wit that Mr. & Mrs. Smith lacks.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (280305, 297838, 3, 'talh2000', 'Though both are films about hope and resilience against the odds, The Shawshank Redemption''s emotional depth makes Rocky V look like a rough sketch.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (30952, 129185, 3, 'talh2000', 'Though both are big-budget spectacle films with iconic heroes, Gladiator''s gravitas makes Batman & Robin look painfully frivolous.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (220805, 123435, 3, 'talh2000', 'Though both are thriller films built on twists, The Game''s elaborate scheme is executed with far more intelligence than Mr. & Mrs. Smith.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (59578, 191246, 3, 'talh2000', 'Though both are films about a child in a magical world, The Lion King''s emotional devastation dwarfs Charlie and the Chocolate Factory''s quirky fantasy.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (311040, 113504, 3, 'talh2000', 'Though both feature characters who struggle with identity and dual lives, Finding Nemo''s emotional weight is incomparably greater.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (238073, 291698, 3, 'talh2000', 'Though both rely on misdirection and elaborate schemes, Se7en''s moral seriousness makes Ocean''s Twelve feel like a frivolous parlor game.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (280305, 46169, 3, 'talh2000', 'Though both are underdog films about men who refuse to quit against impossible odds, Braveheart has epic scope that Rocky V entirely lacks.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (42056, 302696, 10, 'talh2000', 'Both are music-driven films where the soundtrack is inseparable from the joy and energy of the story.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (254986, 290070, 10, 'talh2000', 'Both are devastating WWII films centered on the survival of a Jewish person against unimaginable odds.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (313059, 131885, 10, 'talh2000', 'Both are beloved 80s films about childhood adventure and the bonds of friendship that last a lifetime.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (300229, 337166, 3, 'talh2000', 'Though both are animated films about an unlikely hero on a journey, Toy Story''s emotional craft far exceeds Shrek''s genre parody.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (69812, 112290, 3, 'talh2000', 'Though both center on a protagonist with a fractured sense of self, Fight Club''s psychological depth dwarfs Conspiracy Theory''s thriller premise.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (350424, 306032, 3, 'talh2000', 'Though both are stylish films with surprise revelations, Snatch''s sharp wit and energy outclass Vanilla Sky''s dreamy self-indulgence.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (238073, 176711, 3, 'talh2000', 'Though both are cool, stylish films with ensemble casts, Kill Bill Vol. 1''s kinetic vision makes Ocean''s Twelve feel lazy.', NULL); + +INSERT IGNORE INTO movies_recommendations(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) VALUES (188511, 370017, 3, 'talh2000', 'Though both are loud 2000s action films, they sacrifice plot depth for spectacle in very different and equally unsatisfying ways.', NULL); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, + 66194, + 10, + 'talroup', + 'A fan of 10 Things I Hate About You is very likely to enjoy Clueless, because it keeps the same sharp teen-comedy attitude, style, romantic payoff, and playful comfort.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, + 151616, + 10, + 'talroup', + 'This is a strong match because romantic conflict becomes comedy instead of cruelty, with confident leads and chemistry that makes the bickering fun.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, + 1038, + 9, + 'talroup', + '13 Going On 30 fits the same comfort space: charm, transformation, and a romantic lead who makes the fantasy feel sweet.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, + 263360, + 9, + 'talroup', + 'Different ages and settings, but both use big romantic gestures and charismatic leads to create a very rewatchable rom-com mood.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, + 46878, + 8, + 'talroup', + 'Bridget Jones works here because it keeps awkward romance funny and warm, so the embarrassment feels charming rather than mean.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 66194, + 1038, + 10, + 'talroup', + 'The match works because both films are colorful, girly, and self-aware stories about becoming a better version of yourself while still having fun.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 66194, + 264157, + 9, + 'talroup', + 'This is a natural pairing: each follows a lovable young woman learning social rules in a glossy, feel-good world full of fashion and romance.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 66194, + 283410, + 8, + 'talroup', + 'Runaway Bride keeps the same light mainstream-comedy comfort, using romance for self-discovery without making the lesson feel heavy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, + 283410, + 10, + 'talroup', + 'The Roberts-Gere chemistry makes both films feel like classic romantic comfort, and both depend on charm more than plot logic.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, + 200864, + 10, + 'talroup', + 'Maid in Manhattan is a strong follow-up because it offers another modern Cinderella fantasy where class difference becomes part of the fun rather than painful social drama.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, + 151616, + 9, + 'talroup', + 'This pairing works well because the two films share glossy mainstream romance, confident leads, comic misunderstanding, and a satisfying payoff.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, + 62460, + 8, + 'talroup', + 'Both are romantic fantasies about pleasure and transformation, with a warm setting that makes the story feel inviting.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, + 283410, + 9, + 'talroup', + 'Runaway Bride is a great match for me because commitment panic becomes funny, romantic, and easy to revisit rather than stressful.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, + 46878, + 9, + 'talroup', + 'Both enjoy messy dating behavior, but keep the heroine lovable enough that the chaos feels funny instead of stressful.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, + 220805, + 8, + 'talroup', + 'Mr. and Mrs. Smith works best as a playful couple-driven follow-up, with flirting, competition, and attractive leads making the conflict entertaining.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 1038, + 200864, + 9, + 'talroup', + 'Both offer very accessible romantic fantasy: big-city glamour, likable heroines, and a comforting belief in happy endings.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 1038, + 264157, + 9, + 'talroup', + 'Princess Diaries 2 fits the same youthful, sweet, wish-fulfilling zone, with a heroine learning confidence inside a polished fantasy world.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 200864, + 283410, + 9, + 'talroup', + 'Both are gentle star-driven romances where the premise is familiar, but the warmth and casting make it work.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 200864, + 46878, + 8, + 'talroup', + 'Bridget Jones fits this recommendation because it also follows a woman navigating love, embarrassment, and self-worth without becoming too heavy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46878, + 257744, + 8, + 'talroup', + 'Both treat romance as imperfect and human, with enough ensemble warmth to make the messiness feel comforting.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46878, + 118980, + 8, + 'talroup', + 'Both are grounded romances about imperfect adults trying to be vulnerable, and both keep the emotional tone warm.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 264157, + 190869, + 8, + 'talroup', + 'Lilo & Stitch works after Princess Diaries 2 because both are family-friendly comfort films where identity, loyalty, and chosen family matter more than serious conflict.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 264157, + 300230, + 9, + 'talroup', + 'Both sequels use royal-family pressure as a comedy engine while keeping the romance light, colorful, and easy to enjoy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 62460, + 33492, + 10, + 'talroup', + 'Food, routine, and quiet attraction give both films a cozy romantic texture that works especially well for me.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 62460, + 34104, + 9, + 'talroup', + 'Benny & Joon is a good match because it also turns oddball romance into tenderness, making eccentric characters feel lovable rather than alienating.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 62460, + 311428, + 8, + 'talroup', + 'Both are soft romantic fantasies where the unusual premise is treated with sweetness rather than cynicism.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 33492, + 118980, + 8, + 'talroup', + 'Both are adult romances about guarded people slowly opening up, with a gentle pace and human warmth.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 33492, + 257744, + 8, + 'talroup', + 'Both are relationship-focused films that prefer small emotional details over big dramatic shocks.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 220276, + 333856, + 9, + 'talroup', + 'Both are lush tragic romances, but the spectacle supports the love story instead of replacing it.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 220276, + 31715, + 8, + 'talroup', + 'Both use music and big feelings to make sadness more emotional than bleak, which is exactly the balance I need.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 220276, + 74259, + 8, + 'talroup', + 'Both are stylized musical romances with camp, color, and a playful performance style that makes them memorable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 34104, + 97727, + 9, + 'talroup', + 'Both are gentle outsider romances where innocence and strangeness become touching rather than scary.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 34104, + 113506, + 9, + 'talroup', + 'Both rely on Depp''s soft, eccentric charm and keep sadness balanced with imagination and tenderness.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 34104, + 74259, + 8, + 'talroup', + 'Both use Johnny Depp''s offbeat persona in a playful romantic register rather than a dark thriller one.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 59578, + 300229, + 9, + 'talroup', + 'Shrek fits this Charlie and the Chocolate Factory recommendation because it is another colorful fantasy comedy that stays weird in a fun, heartfelt way.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 59578, + 300230, + 8, + 'talroup', + 'Both are bright, joke-filled fantasies that use strange worlds for fun rather than for heaviness.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 59578, + 149287, + 8, + 'talroup', + 'Both are childlike fantasies about returning to imagination, with production design that makes the world feel magical.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 59578, + 96593, + 8, + 'talroup', + 'Both build wonder around a childlike point of view and keep the fantasy gentle enough for an easy rewatch.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 96593, + 65811, + 8, + 'talroup', + 'Close Encounters is a good match because it shares Spielberg''s alien wonder and keeps the science fiction humane instead of frightening.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 96593, + 149287, + 8, + 'talroup', + 'Both have Spielberg''s soft family feeling and turn fantasy into something emotionally warm instead of threatening.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 96593, + 190869, + 10, + 'talroup', + 'Lilo & Stitch is especially strong here because the alien-friendship story also centers on family, loyalty, and a creature who becomes lovable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, + 56871, + 9, + 'talroup', + 'Both make unusual true-ish situations feel light and human, with a playful rhythm rather than a heavy crime mood.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, + 311428, + 8, + 'talroup', + 'Both let Tom Hanks play kindness and awkwardness in a way that makes an odd premise feel genuinely sweet.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, + 12744, + 6, + 'talroup', + 'Both are gentle, human stories that move slowly but still keep a soft emotional glow.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, + 31715, + 8, + 'talroup', + 'Both are emotional crowd-pleasers where the sadness works because the relationships feel sincere and memorable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, + 12744, + 8, + 'talroup', + 'Both combine romance with loss, but they hold onto tenderness instead of becoming purely depressing.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 149287, + 113506, + 10, + 'talroup', + 'Both are Peter Pan-adjacent stories about imagination, adulthood, and emotional softness, making them very natural companions.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 149287, + 131885, + 9, + 'talroup', + 'Both have messy adventure energy, childlike wonder, and enough humor to make danger feel safe.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 149287, + 139657, + 8, + 'talroup', + 'Both invite the viewer into a magical world with a cozy sense of discovery rather than overwhelming darkness.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131885, + 312150, + 10, + 'talroup', + 'Both are kid-adventure films where gadgets, teamwork, and silliness matter more than polished seriousness.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131885, + 170721, + 6, + 'talroup', + 'Both are simple, upbeat adventures that feel easy and youthful, even if one is louder and one is more musical.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 113506, + 97727, + 8, + 'talroup', + 'Both are bittersweet fantasies about fragile outsiders, but each keeps enough tenderness to avoid feeling cold.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 113506, + 12744, + 8, + 'talroup', + 'Both use grief and imagination gently, creating sentiment without becoming too harsh for me.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, + 139650, + 10, + 'talroup', + 'The first two Harry Potter films share the same cozy Hogwarts foundation, childlike discovery, and accessible mystery tone.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139650, + 139655, + 9, + 'talroup', + 'The third film gets moodier, but it still grows naturally from the magical comfort and friendship of the second.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139655, + 139652, + 9, + 'talroup', + 'Both keep the school-year structure while adding higher stakes, so the darker turn still feels connected and watchable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139652, + 139653, + 8, + 'talroup', + 'Both mix danger with awkward teen romance, which helps the darker plot remain emotionally accessible.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, + 194497, + 8, + 'talroup', + 'Both are gateway fantasy adventures that introduce a beloved world, friendships, and a clear sense of wonder.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139655, + 194497, + 8, + 'talroup', + 'Both have fantasy darkness balanced by friendship and visual magic, making the epic tone still approachable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, + 256631, + 10, + 'talroup', + 'The sequel keeps Jack Sparrow, Will and Elizabeth, and the playful pirate energy that made the first film fun.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, + 300229, + 8, + 'talroup', + 'Shrek fits after Pirates because both turn familiar fantasy-adventure worlds into something funny, romantic, and less serious than expected.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, + 159172, + 8, + 'talroup', + 'Both are adventure films that balance danger with jokes, charm, and a hero who never feels too grim.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, + 271095, + 8, + 'talroup', + 'Both are classic crowd-pleasing adventures with iconic heroes, set pieces, and a light sense of fun.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256631, + 300230, + 8, + 'talroup', + 'Both are bigger sequels that keep the comic romance alive while expanding the fantasy world around it.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, + 238073, + 8, + 'talroup', + 'The sequel is more smug, but it still keeps the stylish ensemble and movie-star ease that make the first enjoyable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, + 56871, + 9, + 'talroup', + 'Both make crime feel playful and stylish instead of brutal, with charm doing more work than violence.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, + 208245, + 8, + 'talroup', + 'Both are relaxed con-game entertainments where charm, tricks, and banter matter more than real danger.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, + 220805, + 8, + 'talroup', + 'Both use glamour, banter, and stars to make crime/action feel sleek and fun rather than emotionally heavy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, + 312150, + 8, + 'talroup', + 'Both turn secret organizations, gadgets, and action into bright mainstream comedy rather than hard sci-fi.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, + 158999, + 6, + 'talroup', + 'Both are accessible 1990s alien blockbusters, and both keep the tone broad, funny, and crowd-friendly.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, + 398232, + 6, + 'talroup', + 'Both use aliens mainly as a comedy setup, so the weirdness stays playful rather than frightening.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 312150, + 312151, + 9, + 'talroup', + 'The sequel keeps the child-led spy fantasy, bright gadgets, and harmless silliness that make the first one work.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 312151, + 312152, + 8, + 'talroup', + 'Both are goofy family spy sequels that embrace ridiculousness instead of trying to become serious action films.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, + 300230, + 10, + 'talroup', + 'The second film keeps the fairy-tale jokes and Fiona-Shrek romance while adding even more family comedy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, + 300233, + 8, + 'talroup', + 'Both use the same fairy-tale parody world and the same quick comic comfort, even if one is much smaller.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300230, + 300233, + 8, + 'talroup', + 'Both continue the Shrek universe as light comic extensions rather than dramatic reinventions.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337166, + 190869, + 10, + 'talroup', + 'Lilo & Stitch is a natural match for Toy Story because both are animated comfort films about loyalty, friendship, and imperfect little families finding each other.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337166, + 300229, + 9, + 'talroup', + 'Both are animated films with jokes for adults and a surprisingly sincere emotional center.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337166, + 131885, + 8, + 'talroup', + 'Both focus on group adventure, friendship, and childlike loyalty, with danger kept safely fun.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337166, + 170721, + 6, + 'talroup', + 'Both are simple, warm family adventures where the emotional stakes stay light and easy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 170721, + 190869, + 8, + 'talroup', + 'Both are bright, family-friendly stories with music, movement, and a forgiving emotional tone.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 291495, + 398232, + 6, + 'talroup', + 'Both rely on comic weirdness and a big central personality, with enough heart to soften the harsher jokes.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311428, + 257744, + 8, + 'talroup', + 'Both treat romance warmly and let charm carry the story more than plot complexity.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311428, + 96593, + 8, + 'talroup', + 'Both place a gentle non-human visitor inside ordinary life and make the fantasy feel sweet rather than scary.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 31715, + 257744, + 8, + 'talroup', + 'Both are relationship-centered dramas that give emotional moments a warm, human texture.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 74259, + 97727, + 8, + 'talroup', + 'Both are stylized outsider romances with Johnny Depp, campy surfaces, and a sincere lonely heart underneath.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 74259, + 59578, + 7, + 'talroup', + 'Both are colorful Depp vehicles where exaggeration and weirdness are part of the fun.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 97727, + 59578, + 7, + 'talroup', + 'Both are Depp-led fantasies where odd visual worlds still leave room for sweetness and childlike wonder.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 12744, + 65811, + 7, + 'talroup', + 'Both are Spielberg stories with awe, longing, and a sincere old-fashioned emotional tone.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 10702, + 118980, + 8, + 'talroup', + 'Both are grounded adult stories about starting over, loneliness, and finding warmth in ordinary life.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 208245, + 379327, + 7, + 'talroup', + 'Both are old-fashioned adventures where charm and playfulness matter more than grit.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280270, + 280281, + 8, + 'talroup', + 'The first two Rocky films work as one emotional underdog arc, with character warmth balancing the boxing.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280281, + 280282, + 7, + 'talroup', + 'The third film is broader, but it keeps Rocky''s familiar underdog heart and easy sports-movie structure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 319602, + 319613, + 8, + 'talroup', + 'Both keep the superhero story sincere, romantic, and bright rather than cynical or overly grim.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311037, + 311038, + 10, + 'talroup', + 'Spider-Man 2 deepens the same awkward, romantic, heroic tone that makes the first film so accessible.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30976, + 381392, + 7, + 'talroup', + 'Both are animated Batman stories with emotional clarity, stylish action, and less exhausting darkness than the grittier films.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 142491, + 142492, + 8, + 'talroup', + 'Both make a monster hero feel surprisingly human, and the sequel adds more fantasy color to the same world.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 391006, + 395271, + 9, + 'talroup', + 'Both are nostalgic sitcom comforts with warm characters, simple humor, and a relaxed old-TV feeling.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 390691, + 400853, + 8, + 'talroup', + 'Both are family-centered comfort stories where messiness is treated with humor and affection.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 391006, + 398232, + 8, + 'talroup', + 'Both have classic sitcom warmth, big personalities, and a harmless kind of silliness that I genuinely enjoy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, + 30686, + 2, + 'talroup', + 'While both are 1990s teen-centered films, it is a bad recommendation since Basketball Diaries turns youth into a bleak addiction spiral instead of playful romance.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, + 112290, + 1, + 'talroup', + 'Despite the shared rebellious 1990s attitude, it is a bad recommendation since Fight Club is cynical and aggressive rather than warm or romantic.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 644, + 32707, + 3, + 'talroup', + 'Though both value strong outsiders, it is a bad recommendation since Before Night Falls is an emotionally painful biographical drama rather than a comfort watch.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, + 8183, + 5, + 'talroup', + 'Though both are class-conscious romances, this is not a good recommendation since Age of Innocence is restrained and emotionally muted instead of sparkling and wish-fulfilling.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, + 69812, + 3, + 'talroup', + 'Though Julia Roberts is part of the appeal in both, it is a bad recommendation since the paranoia-thriller mood overwhelms any romantic comfort.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 263360, + 350424, + 2, + 'talroup', + 'At first glance, the attractive stars and romance make this pair look reasonable, but it is a bad recommendation since Vanilla Sky turns desire into confusion and unease rather than fantasy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, + 350424, + 2, + 'talroup', + 'Though both use romance as a central hook, it is a bad recommendation since Vanilla Sky becomes mind-bending and cold instead of funny and flirtatious.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 151616, + 41518, + 2, + 'talroup', + 'While both have glossy early-2000s star power, it is a bad recommendation since Blow is a draining crime rise-and-fall story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 66194, + 30686, + 2, + 'talroup', + 'Though both are 1990s youth films, it is a bad recommendation since Basketball Diaries replaces style and comedy with addiction and despair.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 66194, + 209158, + 2, + 'talroup', + 'Though both are urban character films with strong personalities, it is a bad recommendation since Mean Streets is rough crime drama with none of the cozy teen energy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, + 194497, + 5, + 'talroup', + 'Though both are fantasy journeys with creatures and kingdoms, this is not a good recommendation since Fellowship is earnest and epic rather than comic and cozy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, + 304862, + 2, + 'talroup', + 'Despite the fairy-tale-like visuals, it is a bad recommendation since Sleepy Hollow is a gothic murder mystery rather than playful fantasy romance.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300229, + 142491, + 4, + 'talroup', + 'While both feature an unconventional creature hero, it is a bad recommendation since Hellboy leans into darker monster action instead of fairy-tale comedy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337166, + 21213, + 2, + 'talroup', + 'The pairing makes sense on paper because both involve non-human figures longing for love, but it is a bad recommendation since A.I. is melancholy and unsettling rather than warm and funny.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 337166, + 40199, + 2, + 'talroup', + 'Although both can be read as stories about artificial beings, it is a bad recommendation since Blade Runner is lonely, cold, and philosophically heavy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 1038, + 7842, + 3, + 'talroup', + 'Though both follow adults through strange urban situations, it is a bad recommendation since After Hours turns the night into anxiety instead of feel-good transformation.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 1038, + 247579, + 2, + 'talroup', + 'Despite the shared confined-pressure setup, it is a bad recommendation since Panic Room is pure stress rather than charm.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 200864, + 8183, + 5, + 'talroup', + 'Though both deal with status and forbidden attraction, this is not a good recommendation since Age of Innocence is too distant and subdued for what I look for in a romantic comedy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 283410, + 69812, + 3, + 'talroup', + 'Though both use Julia Roberts in a romantic orbit, it is a bad recommendation since Conspiracy Theory is suspicious and tense rather than breezy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 46878, + 8183, + 4, + 'talroup', + 'Though both include social rules around love, it is a bad recommendation since Age of Innocence removes the humor and self-aware messiness that make Bridget work.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 264157, + 340652, + 3, + 'talroup', + 'While both include royalty, public duty, and romance, it is a bad recommendation since Troy is a solemn war epic rather than a girly comfort fantasy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 190869, + 10830, + 1, + 'talroup', + 'Though the alien premise connects them, it is a bad recommendation since Alien turns the visitor idea into horror and confinement.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 190869, + 359297, + 2, + 'talroup', + 'At first glance, family and alien contact connect them, but it is a bad recommendation since War of the Worlds is panic-driven instead of affectionate.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 300230, + 30952, + 3, + 'talroup', + 'Though both are colorful franchise sequels with broad jokes, it is a bad recommendation since Batman & Robin feels loud and hollow rather than sweet.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 62460, + 120506, + 2, + 'talroup', + 'Despite Johnny Depp and period European settings, it is a bad recommendation since From Hell is murder-focused and grim instead of cozy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 62460, + 233058, + 2, + 'talroup', + 'Though both use Depp in an old-world atmosphere, it is a bad recommendation since Ninth Gate is occult, cold, and joyless.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 220276, + 123849, + 3, + 'talroup', + 'While both are stylized period spectacles, it is a bad recommendation since Gangs of New York is brutal and hostile rather than romantic and musical.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 220276, + 185628, + 5, + 'talroup', + 'Though both are large-scale period films with romance and sacrifice, this is not a good recommendation since Last Samurai is too solemn and battle-driven.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 34104, + 41518, + 2, + 'talroup', + 'Despite Johnny Depp''s charisma in both, it is a bad recommendation since Blow uses that charisma inside a draining drug-crime story.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 34104, + 292671, + 2, + 'talroup', + 'Though both feature Depp as an isolated eccentric, it is a bad recommendation since Secret Window turns eccentricity sour and threatening.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 59578, + 240327, + 1, + 'talroup', + 'While both center on a strange childlike world, it is a bad recommendation since The Omen is supernatural horror with no playful comfort.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 59578, + 259826, + 2, + 'talroup', + 'Though both involve children and supernatural spectacle, it is a bad recommendation since Poltergeist is a haunted-house scare experience.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 96593, + 10830, + 1, + 'talroup', + 'The shared alien label makes this look plausible, but it is a bad recommendation since Alien replaces wonder and friendship with survival horror.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 96593, + 359297, + 2, + 'talroup', + 'Despite Spielberg and alien contact, it is a bad recommendation since War of the Worlds is fear and disaster rather than gentle connection.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, + 247579, + 2, + 'talroup', + 'Though both trap characters inside one main location, it is a bad recommendation since Panic Room turns confinement into constant threat.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 328272, + 123435, + 3, + 'talroup', + 'Though both follow a man trapped in an absurd situation, it is a bad recommendation since The Game feels manipulative and unpleasant rather than kind.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, + 289109, + 1, + 'talroup', + 'Though both are acclaimed 1990s historical epics, it is a bad recommendation since Saving Private Ryan is dominated by combat realism rather than romance.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, + 290070, + 1, + 'talroup', + 'Though both are acclaimed historical dramas, it is a bad recommendation since Schindler''s List is important but far too devastating for me to enjoy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 333856, + 46169, + 3, + 'talroup', + 'Though both mix epic scale, romance, and tragedy, it is a bad recommendation since Braveheart lets battle and brutality overpower the romantic pull.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 149287, + 165961, + 3, + 'talroup', + 'Despite the Spielberg adventure connection, it is a bad recommendation since Jaws is built on dread rather than nostalgic softness.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 149287, + 94741, + 2, + 'talroup', + 'Though both are early Spielberg tension machines, it is a bad recommendation since Duel is all menace and none of Hook''s childlike comfort.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131885, + 159175, + 4, + 'talroup', + 'Though both are adventure films with kids and set pieces, this remains a weak recommendation since Temple of Doom is harsher and less safe-feeling.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 131885, + 73574, + 2, + 'talroup', + 'Though both involve young people facing creature chaos, it is a bad recommendation since Critters 3 leans into goofy horror instead of warm adventure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 113506, + 30686, + 2, + 'talroup', + 'Though both are sensitive dramas with young emotional pain, it is a bad recommendation since Basketball Diaries becomes far too bleak and punishing.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, + 240327, + 1, + 'talroup', + 'At first glance, children and supernatural destiny connect them, but it is a bad recommendation since The Omen is demonic horror rather than magical comfort.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139657, + 313474, + 5, + 'talroup', + 'Though both launch large fantasy franchises with young heroes, this is not a good recommendation since Phantom Menace feels colder and less emotionally cozy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139650, + 304862, + 2, + 'talroup', + 'Though both contain dark mysteries and gothic visuals, it is a bad recommendation since Sleepy Hollow is murder-driven rather than school-adventure comfort.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139652, + 30959, + 4, + 'talroup', + 'Though both show a hero entering a darker chapter, it is a bad recommendation since Batman Begins is grittier and less magical-feeling.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 139654, + 61751, + 2, + 'talroup', + 'Though both involve resistance against a bleak system, it is a bad recommendation since Children of Men is much more hopeless and emotionally exhausting.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, + 39551, + 1, + 'talroup', + 'While both include action and large-scale danger, it is a bad recommendation since Black Hawk Down is combat intensity with none of the playful pirate charm.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, + 129185, + 5, + 'talroup', + 'Though both are large-scale adventure films with heroic set pieces, this is not a good recommendation since Gladiator is far more solemn and battle-centered.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 256632, + 189403, + 3, + 'talroup', + 'Though both are stylish action adventures, it is a bad recommendation since Licence to Kill is revenge-driven and harsher than the playful pirate tone.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, + 56304, + 2, + 'talroup', + 'Despite the money, glamour, and crime connection, it is a bad recommendation since Casino is exhausting and brutal rather than breezy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, + 131780, + 2, + 'talroup', + 'Though both are crime films with style, it is a bad recommendation since Goodfellas is violent gangster immersion rather than sunny ensemble fun.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 238072, + 210511, + 2, + 'talroup', + 'Although both are clever crime puzzles, it is a bad recommendation since Memento is tense, fragmented, and not emotionally relaxing.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 56871, + 25192, + 4, + 'talroup', + 'Though both feature DiCaprio in biographical rise-and-fall territory, it is a bad recommendation since The Aviator feels long and dutiful rather than playful.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 56871, + 30686, + 2, + 'talroup', + 'Though both center on DiCaprio as a young man in trouble, it is a bad recommendation since Basketball Diaries is bleak instead of charming.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, + 40199, + 2, + 'talroup', + 'While both are science fiction with non-human beings, it is a bad recommendation since Blade Runner is cold, lonely, and philosophical rather than quick and funny.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 210739, + 256839, + 2, + 'talroup', + 'Though both include aliens and action, it is a bad recommendation since Pitch Black is survival tension instead of mainstream comic adventure.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 312150, + 215879, + 4, + 'talroup', + 'Despite the spies-and-gadgets link, it is a bad recommendation since Mission: Impossible II cares more about glossy action than playful personality.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 312150, + 130945, + 4, + 'talroup', + 'Though both are spy adventures with gadgets, it is a bad recommendation since GoldenEye is more adult, colder, and less silly.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 291495, + 54209, + 1, + 'talroup', + 'Though both feature characters haunted or punished by past behavior, it is a bad recommendation since Cape Fear is threatening rather than redemptive comedy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311428, + 22651, + 2, + 'talroup', + 'Though both involve marriage touched by the otherworldly, it is a bad recommendation since Astronaut''s Wife turns intimacy into alien paranoia.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311428, + 350424, + 2, + 'talroup', + 'Though both involve impossible romance and fantasy elements, it is a bad recommendation since Vanilla Sky feels cold, confusing, and emotionally unsafe.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 31715, + 67395, + 4, + 'talroup', + 'Though both are emotional female-centered dramas, this remains a weak recommendation since The Color Purple is much heavier than the comfort level here.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 31715, + 14477, + 2, + 'talroup', + 'Though both ask for a serious emotional response, it is a bad recommendation since Amistad is historical legal trauma rather than friendship melodrama.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 97727, + 304862, + 3, + 'talroup', + 'Even though both are Burton-Depp gothic stories, it is a bad recommendation since Sleepy Hollow moves toward murder mystery instead of tender outsider romance.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 97727, + 120506, + 2, + 'talroup', + 'Though both use Depp in a stylized dark world, it is a bad recommendation since From Hell is grim investigation rather than romantic sadness.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 257744, + 267038, + 2, + 'talroup', + 'Though both are ensemble films with intersecting stories, it is a bad recommendation since Pulp Fiction is cynical crime coolness rather than relationship warmth.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 118980, + 270971, + 2, + 'talroup', + 'Though both are adult stories about difficult men, it is a bad recommendation since Raging Bull is punishing self-destruction rather than healing romance.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 12744, + 289109, + 1, + 'talroup', + 'Despite Spielberg and sacrifice, it is a bad recommendation since Saving Private Ryan replaces soft sentiment with overwhelming battlefield realism.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 10702, + 326155, + 2, + 'talroup', + 'Though both are 1970s Scorsese character studies, it is a bad recommendation since Taxi Driver is oppressive isolation rather than rebuilding life.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 208245, + 67388, + 4, + 'talroup', + 'While both involve gambling, hustling, and competitive charm, it is a bad recommendation since The Color of Money is more serious and less playful.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280270, + 270971, + 2, + 'talroup', + 'Though both are boxing classics, it is a bad recommendation since Raging Bull is angry self-destruction while Rocky''s appeal is underdog warmth.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280270, + 280305, + 3, + 'talroup', + 'Though it is the same franchise, it is a bad recommendation since Rocky V loses much of the inspiring simplicity that made the first work.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 280282, + 280284, + 4, + 'talroup', + 'Though both are broad sports sequels, it is a bad recommendation since Rocky IV becomes more cartoonish and emotionally thinner.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 319602, + 30959, + 4, + 'talroup', + 'Although both are superhero origin touchstones, it is a bad recommendation since Batman Begins is gritty and heavy compared with Superman''s bright sincerity.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 319613, + 30952, + 3, + 'talroup', + 'Though both are colorful superhero sequels, it is a bad recommendation since Batman & Robin is noisy without Superman II''s sincere romance.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311037, + 311040, + 4, + 'talroup', + 'Even though it is the same character and franchise, it is a bad recommendation since Spider-Man 3 loses the clean emotional balance of the first two.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 311038, + 30959, + 4, + 'talroup', + 'Though both are respected superhero films from the same era, it is a bad recommendation since Batman Begins is colder and less romantically accessible.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30965, + 30952, + 3, + 'talroup', + 'Though both are neon Batman films, it is a bad recommendation since Batman & Robin pushes the camp into exhausting shallowness.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 30976, + 30959, + 4, + 'talroup', + 'Though both explore Batman''s emotional origin, it is a bad recommendation since Batman Begins is much grittier and less compactly emotional.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 142491, + 350189, + 2, + 'talroup', + 'Though both are supernatural action stories with monster worlds, it is a bad recommendation since Vampire Hunter D feels colder and more joyless.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 379327, + 46169, + 3, + 'talroup', + 'Though both are historical hero stories, it is a bad recommendation since Braveheart is far more violent and solemn.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 379331, + 291698, + 1, + 'talroup', + 'The investigation link makes sense, but it is a bad recommendation since Se7en turns mystery into oppressive dread and an ending I simply cannot get past.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 372733, + 210511, + 2, + 'talroup', + 'Though both are puzzle-driven mysteries, it is a bad recommendation since Memento is cold, fragmented, and stressful rather than young-adventure fun.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 1121, + 14477, + 4, + 'talroup', + 'Though both are historical films about exploration and injustice, it is a bad recommendation since Amistad is even heavier and less relaxing.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 1390, + 289109, + 1, + 'talroup', + 'Though both are Spielberg films connected to World War II, it is a bad recommendation since Saving Private Ryan is brutal realism rather than chaotic comedy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 7842, + 47130, + 3, + 'talroup', + 'Though both are Scorsese night-in-New-York stories, it is a bad recommendation since Bringing Out the Dead is more draining than comic anxiety.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 20253, + 233058, + 2, + 'talroup', + 'Though both use strange Johnny Depp energy, it is a bad recommendation since Ninth Gate turns oddness into cold occult dread.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 21213, + 290070, + 1, + 'talroup', + 'Although both are serious Spielberg films about humanity and suffering, it is a bad recommendation since Schindler''s List is far beyond my emotional comfort zone.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 25192, + 56304, + 3, + 'talroup', + 'Though both are long Scorsese studies of ambition and glamour, it is a bad recommendation since Casino''s brutality makes it even less personally enjoyable.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 39551, + 289109, + 1, + 'talroup', + 'Though both are intense war films, it is a bad recommendation since it doubles down on the exact combat realism I actively avoid.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 40199, + 214755, + 4, + 'talroup', + 'Though both are intelligent science fiction, it is a bad recommendation since Minority Report still feels more thriller than comfort, and Blade Runner is even colder.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 56304, + 131780, + 2, + 'talroup', + 'Despite being obvious Scorsese crime companions, it is a bad recommendation since both intensify the brutal gangster mood I dislike.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 61751, + 214755, + 4, + 'talroup', + 'Though both are dystopian thrillers, it is a bad recommendation since Children of Men is much bleaker and more emotionally punishing.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 85871, + 189403, + 3, + 'talroup', + 'Though both are Bond films, it is a bad recommendation since Licence to Kill removes the playful spy tone and becomes revenge-heavy.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 130945, + 215876, + 4, + 'talroup', + 'Though both are polished 1990s spy action films, it is a bad recommendation since the Mission: Impossible tension is sleeker than warm.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 312170, + 218808, + 4, + 'talroup', + 'Though both are Roger Moore Bond spectacles, this is a weak recommendation since Moonraker pushes the silliness past charming into empty excess.', + NULL +); + +INSERT IGNORE INTO movies_recommendations +(base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES ( + 215876, + 215879, + 3, + 'talroup', + 'Though it is the same franchise, it is a bad recommendation since the sequel trades the clever vault tension for shallow slow-motion action.', + NULL +); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (969, 349, 10, 'Yoavkeidar9', 'Both are masterclass courtroom dramas anchored by explosive lead performances that expose the structural corruption and moral hypocrisy embedded within legal institutions.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (52, 53, 10, 'Yoavkeidar9', 'The direct sequel maintains the same extraordinary standard of practical stunt choreography — the bicycle chases, clock tower sequences, and physical commitment of the performers are matched across both films with remarkable consistency.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (69, 548, 10, 'Yoavkeidar9', 'Both films dissect military institutional culture with sustained analytical precision, using legal or procedural frameworks to expose how bureaucratic systems dehumanize the individual while insulating authority from accountability.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (955, 1016, 10, 'Yoavkeidar9', 'Both construct their mysteries through layered temporal revelation, deploying structural information management with such precision that the assembled narrative satisfies as a coherent formal achievement rather than mere genre exercise.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (995, 1051, 10, 'Yoavkeidar9', 'Both European comedies exploit the identical dramatic premise of desperate characters hunting for hidden treasure inside antique chairs, and both execute the comedic escalation with a structural elegance that transcends the apparent simplicity of the conceit.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (73, 606, 10, 'Yoavkeidar9', 'Both comedies derive their primary dramatic energy from protagonists whose psychological deterioration is rendered with precise comic calibration, using the midlife crisis and suburban paranoia as vehicles for genuine character observation.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (223, 603, 10, 'Yoavkeidar9', 'Both films function as artistic extensions of their musical subjects rather than mere documentation, constructing a visual and editorial language that reflects the aesthetic values of the music being portrayed with genuine curatorial intelligence.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (249, 165, 10, 'Yoavkeidar9', 'Both retrospective documentaries engage their canonical subjects at a level of analytical depth proportionate to the films'' historical significance, providing scholarly-grade contextual material that meaningfully extends understanding of the primary works.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1019, 1018, 10, 'Yoavkeidar9', 'The feature film engages the temporal loop premise with demonstrably greater formal rigor than most contemporaneous treatments, and viewers who appreciated the short film''s structural precision will find the same logical discipline expanded across a fuller narrative canvas.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (837, 831, 10, 'Yoavkeidar9', 'Both adaptations approach the same folkloric source material with genuine visual investment, allowing comparison of how different animation traditions and production eras interpret the same mythological architecture.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (72, 220, 10, 'Yoavkeidar9', 'Both making-of documentaries illuminate analog filmmaking methodology with technical precision, demonstrating how formal constraints — budgetary, logistical, technological — generated rather than limited the aesthetic achievements of their respective primary films.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (926, 909, 10, 'Yoavkeidar9', 'Both documentaries approach harrowing historical events with formal restraint, assembling primary source testimony and archival material into accounts of sufficient scholarly rigor to transcend the limitations of politically motivated historical reconstruction.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (349, 450, 9, 'Yoavkeidar9', 'Both films engage with institutional resistance to justice — legal and racial respectively — using their protagonist''s psychological investment to sustain dramatic tension across narratives that are fundamentally about the inadequacy of formal systems.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (628, 365, 9, 'Yoavkeidar9', 'Both short films demonstrate that formal compression amplifies rather than diminishes emotional force, achieving thematic resonance through structural economy that would be dispersed across a feature-length treatment.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (38, 480, 9, 'Yoavkeidar9', 'Both German-language productions use the physical environment of their historical periods — the prewar Austrian social fabric, the postwar urban rubble — as expressive material, allowing documentary specificity to amplify rather than merely illustrate the dramatic content.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (921, 676, 9, 'Yoavkeidar9', 'Both films use formal diversity — multiple perspectives, documentary-inflected observation — to approach historical tragedies that resist singular narrative treatment, with the strongest segments demonstrating how personal cinematic perspective can illuminate collective catastrophe.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (639, 195, 9, 'Yoavkeidar9', 'Both films achieve their disturbing psychological effect primarily through performance work of exceptional restraint, in which the deliberate withholding of emotional expression creates a sustained atmospheric dread more effective than conventional dramatic escalation.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (408, 499, 9, 'Yoavkeidar9', 'Both international dramas earn their emotional climaxes through careful preparation, relying on behavioral naturalism and restrained exposition to build character investment that makes the dramatic conclusions register with genuine force rather than manufactured sentiment.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (100, 51, 9, 'Yoavkeidar9', 'Both animated shorts demonstrate that formal economy and visual abstraction can amplify communicative force rather than diminish it, achieving social and thematic arguments through purely visual and rhythmic means that resist any straightforward verbal paraphrase.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (548, 69, 10, 'Yoavkeidar9', 'These films share a deeply cynical analytical perspective on military institutional culture, using opposite structural approaches — training and courtroom — to expose the identical mechanisms by which bureaucratic authority sacrifices individuals to protect itself.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (995, 524, 8, 'Yoavkeidar9', 'Both European comedies deploy a highly specific tonal register — deadpan absurdism in the German, satirical exaggeration in the Soviet — that generates humor through the systematic violation of behavioral and narrative logic rather than through conventional joke construction.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (73, 2, 8, 'Yoavkeidar9', 'Both comedies introduce productive tonal instability — suburban satire shading into thriller, heist comedy shading into something darker — that creates dramatic unpredictability beyond what the nominal genre would suggest.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (644, 1038, 8, 'Yoavkeidar9', 'Both romantic comedies succeed through central performances of exceptional comic energy and screen presence, with lead actresses who demonstrate strong command of physical comedy and behavioral characterization that elevates schematic material into genuinely engaging entertainment.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (926, 352, 8, 'Yoavkeidar9', 'Both films approach their subjects — traumatic historical event, marginalized labor experience — with a formal restraint that honors rather than exploits the human material, avoiding the sentimentalism that typically compromises films addressing social suffering.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (955, 870, 8, 'Yoavkeidar9', 'Both films deploy dark comedy and structural formal invention — multi-perspective temporal assembly, geographic existential isolation — with consistent directorial control, resulting in works whose formal distinctiveness derives from coherent artistic vision rather than mere novelty.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (38, 558, 8, 'Yoavkeidar9', 'Both German-language films engage with the social mechanisms of political oppression — prewar fascism, postwar racial discrimination — with documentary-inflected directness that refuses metaphorical displacement in favor of uncomfortable specificity.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (165, 72, 8, 'Yoavkeidar9', 'Both making-of documentaries provide substantive analytical context for canonical works of American cinema, with interview and archival material that illuminates the production conditions under which formally innovative choices became possible or necessary.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (597, 328, 8, 'Yoavkeidar9', 'Both science fiction films prioritize optimism and practical creative ingenuity over apocalyptic spectacle, using their retro-futurist or tactile mechanical aesthetics to generate warmth rather than anxiety.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1097, 618, 8, 'Yoavkeidar9', 'Both showcase the formal ceiling of classic American comedy production — the Warner Bros. animation unit and the television writing room — in which exceptional timing, character specificity, and structural intelligence combine to produce work whose excellence has not diminished with temporal distance.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (338, 869, 8, 'Yoavkeidar9', 'Both documentaries employ observational restraint as a deliberate ethical commitment, allowing subjects to define their own significance rather than subordinating human material to editorial argument, resulting in films of genuine candor and moral intelligence.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (408, 644, 8, 'Yoavkeidar9', 'Both films earn their emotional climaxes through careful structural preparation, demonstrating that romantic drama and romantic comedy both succeed primarily through the credibility of the central relationship rather than the elegance of narrative mechanics.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (603, 845, 8, 'Yoavkeidar9', 'Both music documentaries function as artistic collaborations with their subjects rather than merely observational records, constructing a visual and editorial identity that reflects the aesthetic commitments of the music being documented.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (249, 220, 8, 'Yoavkeidar9', 'Both retrospective documentaries provide analytical engagement with their canonical subjects at a level of technical and historical depth that distinguishes them from promotional making-of content, generating genuine scholarly value for the serious viewer of classical Hollywood.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (909, 338, 8, 'Yoavkeidar9', 'Both documentaries record Latin American environments — political catastrophe, port-city daily life — with a formal intelligence that elevates location-based observation into coherent cinematic argument rather than mere geographic recording.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (829, 628, 8, 'Yoavkeidar9', 'Both short films demonstrate the expressive potential of compressed narrative form, achieving thematic resonance and emotional completeness within severe runtime constraints through structural economy rather than formal simplification.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (993, 641, 8, 'Yoavkeidar9', 'Both short films demonstrate sophisticated command of tension construction within severe formal and budgetary constraints, generating narrative engagement through controlled information revelation rather than visual spectacle.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (400, 195, 8, 'Yoavkeidar9', 'Both dramas derive their primary value from central performances that sustain psychological credibility under extreme emotional duress — parental advocacy against institutional resistance, existential confrontation in a confined domestic space — with the formal constraints amplifying rather than limiting the dramatic intensity.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (618, 524, 7, 'Yoavkeidar9', 'Both demonstrate exceptional comedic discipline in their respective registers — television sketch precision and deadpan absurdist consistency — maintaining their chosen tonal frameworks without the compromise that typically results from commercial genre pressure.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1048, 450, 7, 'Yoavkeidar9', 'Both mid-century thrillers use semi-documentary procedural aesthetics to generate narrative tension, placing capable protagonists in dangerous institutional environments where the formal authenticity of the procedural detail amplifies rather than diminishes dramatic stakes.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (870, 524, 7, 'Yoavkeidar9', 'Both European comedies deploy a consistent deadpan register to examine social and psychological isolation, maintaining tonal coherence across narratives whose protagonists are defined primarily by their relationship to inaction and absurdist circumstance.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (591, 71, 7, 'Yoavkeidar9', 'Both films subordinate narrative development to the primacy of choreographic performance, demonstrating that the abandonment of dramatic pretext in favor of sustained physical artistry can itself constitute a coherent aesthetic commitment rather than a structural deficiency.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (291, 845, 7, 'Yoavkeidar9', 'Both concert films document live performances of considerable theatrical complexity, capturing the energy and organizational investment of major touring productions with documentary cinematography that conveys scale without sacrificing intimacy.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (672, 910, 7, 'Yoavkeidar9', 'Both heist films distinguish themselves from genre contemporaries by attributing genuine strategic intelligence to their protagonists, constructing multi-layered schemes whose execution rewards attentive viewing.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1016, 572, 7, 'Yoavkeidar9', 'Both European crime films ground their narratives in documentary-inflected urban realism, generating credibility through production design and performance naturalism rather than genre stylization.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (558, 352, 7, 'Yoavkeidar9', 'Both films approach the experience of racial and social marginalization with documentary-inflected formal directness, refusing the metaphorical displacement that would aestheticize rather than confront the material realities of discrimination and exploitation.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1039, 591, 7, 'Yoavkeidar9', 'Both French productions prioritize visual and physical performance over narrative development, using exceptional source material — Olympic athletic spectacle and stage choreography respectively — to justify a formal approach in which image and movement carry the primary expressive burden.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (337, 645, 7, 'Yoavkeidar9', 'Both Italian and American crime films begin within procedural genre conventions before escalating into grittier, more violent territory, with the transition earned through accumulating character investment rather than arbitrary tonal shift.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (606, 428, 7, 'Yoavkeidar9', 'Both comedies use the romantic premise as a vehicle for genuine character observation, generating humor through the gap between protagonist self-perception and behavioral reality in ways that sustain engagement beyond the immediate comedic situation.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (413, 603, 7, 'Yoavkeidar9', 'Both films construct visual languages that reflect the aesthetic values of their subjects — folk performance traditions, industrial music — prioritizing formal consistency over narrative accessibility in ways that demand active interpretive engagement.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1087, 521, 7, 'Yoavkeidar9', 'Both early-1950s black-and-white crime mysteries construct their investigations with sufficient procedural craft to generate genuine engagement, deploying the period genre conventions with competence that rewards the viewer who accepts the stylistic premises of classical studio production.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (196, 1057, 7, 'Yoavkeidar9', 'Both international productions approach historical military subjects with formal ambition and visual investment, using production scale and compositional intelligence to give historical events a material weight that smaller-format treatments cannot achieve.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (634, 72, 7, 'Yoavkeidar9', 'Both documentary texts illuminate the relationship between formal constraints and creative solutions with sufficient technical specificity to function as genuinely pedagogical material for the viewer interested in the practical mechanics of film production.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1054, 393, 7, 'Yoavkeidar9', 'Both urban crime films construct their investigations through controlled information management, generating sustained suspense through procedural engagement rather than action spectacle, with the darkness of their social environments amplifying the psychological dimensions of the narratives.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (563, 291, 7, 'Yoavkeidar9', 'Both music-centric documentaries demonstrate genuine curatorial intelligence in their use of musical material to structure and animate broader cultural observations, functioning as more than performance records through sustained thematic coherence.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (870, 606, 7, 'Yoavkeidar9', 'Both films examine social and psychological stagnation through comedy of existential observation, using geographic and domestic confinement as expressive environments that externalize the protagonists'' psychological immobility with consistent formal intelligence.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1018, 955, 7, 'Yoavkeidar9', 'Both films demonstrate formal sophistication in their management of narrative temporality, using structural fragmentation and gradual revelation to engage the viewer''s attention to causal logic rather than relying on conventional linear momentum.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (2, 672, 7, 'Yoavkeidar9', 'Both bank heist narratives construct their central operations with sufficient strategic intelligence to reward attentive engagement, using the mechanics of the scheme itself as a primary source of dramatic satisfaction independent of conventional character development.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (36, 558, 7, 'Yoavkeidar9', 'Both films deploy kinetic, documentary-inflected visual strategies to portray marginalized urban populations with contextual authenticity, using formal directness as an ethical commitment to their subjects rather than as mere stylistic choice.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (393, 1087, 7, 'Yoavkeidar9', 'Both films exploit the mystery of anonymous threat — criminal conspiracy, malicious letters — as a structural engine for social observation, using the investigation format to reveal systemic dysfunction in the communities being examined.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (153, 603, 7, 'Yoavkeidar9', 'Both films construct their aesthetic identities through deliberate integration of visual experimentation with musical material, generating viewing experiences that resist generic classification through formal consistency rather than arbitrary unconventionality.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (898, 869, 7, 'Yoavkeidar9', 'Both documentaries employ observational minimalism as an ethical strategy, allowing their subjects — courtroom participants, marginalized individuals — to define the terms of their own representation with a candor that interventionist editorial approaches would have precluded.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1057, 676, 7, 'Yoavkeidar9', 'Both international historical dramas engage large-scale atrocity with formal gravity, prioritizing the human dimensions of historical catastrophe over spectacular reconstruction without losing the material scale necessary to convey the scope of the events.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (245, 634, 7, 'Yoavkeidar9', 'Both documentaries provide substantive technical insight into the creative problem-solving that resource-constrained production necessitates, demonstrating how formal limitations generated aesthetic innovations rather than merely compromising creative vision.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (480, 38, 7, 'Yoavkeidar9', 'Both German-language historical dramas construct their atmospheres through environmental specificity — postwar rubble, prewar social tension — using the material conditions of historical periods as primary expressive material rather than as mere backdrop.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (848, 639, 1, 'Yoavkeidar9', 'A numeric title sort failure. Though both films are British productions, recommending a psychologically devastating true-crime serial killer drama to viewers of an animated family film constitutes a categorical audience mismatch with no redemptive logic.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 969, 1, 'Yoavkeidar9', 'A gender-keyword and number overlap trap. The exploitation film''s comprehensive formal deficiencies place it in a different universe of cinematic achievement from the courtroom drama, and the audience that would find the latter compelling would find the former unwatchable.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (72, 823, 1, 'Yoavkeidar9', 'A 1960s production tag mismatch. A masterful documentary detailing the methodology of analog filmmaking addresses an audience of serious cinephiles whose interests are categorically incompatible with the exploitation film, which lacks the formal craft or self-awareness that might elevate it to any level of artistic consideration.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (181, 558, 1, 'Yoavkeidar9', 'A massive algorithmic oversight. An energetic teen pop concert video addresses an audience with no structural affinity for a raw, uncomfortable German film addressing racial discrimination; the demographic, tonal, and ethical registers are mutually exclusive.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (69, 73, 2, 'Yoavkeidar9', 'An apostrophe title connection generates a fundamentally incompatible recommendation. The deep anti-war analytical seriousness of the Australian courtroom drama addresses an audience whose investment in formal and thematic complexity is incompatible with suburban slapstick, however intelligent the latter may be.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (100, 101, 2, 'Yoavkeidar9', 'A letter-title sequence match. The formal intelligence of the animated short — which achieves thematic content through purely visual economy — addresses an audience whose sophistication is incompatible with the structural incoherence and confusing motivation of the German thriller.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (51, 52, 2, 'Yoavkeidar9', 'An alphabetical single-letter tag match. The abstract short animation addresses an audience oriented toward formal experimentation, whose aesthetic values and viewing expectations are categorically incompatible with the kinetic practical-stunt spectacle of the Jackie Chan film.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (548, 749, 2, 'Yoavkeidar9', 'A numerical title overlap. The harsh, formally accomplished critique of military institutional culture addresses a viewer whose expectations for structural seriousness are entirely incompatible with the thin plotting and subpar comedic pacing of the musical comedy.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (195, 610, 2, 'Yoavkeidar9', 'A character-driven drama mismatch. The emotionally devastating stage adaptation demonstrates performance work of exceptional caliber that only throws into relief the wooden acting and absence of romantic chemistry that constitute the indie romantic comedy''s primary deficiencies.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (196, 618, 2, 'Yoavkeidar9', 'An ensemble cast false positive. A visually dense Portuguese military drama requiring historical contextual knowledge addresses an audience entirely different from viewers seeking the comedic precision of a classic American television sketch compilation.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (291, 337, 2, 'Yoavkeidar9', 'A high-energy algorithm trap. The frantic theatrical comedy of a pop parody concert has no audience overlap with the gritty urban realism of a 1970s Italian police procedural, as the demographic, tonal, and genre expectations are mutually exclusive.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (223, 230, 2, 'Yoavkeidar9', 'A time-of-day keyword trap. The jazz documentary addresses viewers invested in musical authenticity and performance history whose aesthetic expectations are incompatible with atmospheric vampire horror, however competently the latter constructs its genre conventions.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (165, 181, 2, 'Yoavkeidar9', 'A broad documentary metadata match. The scholarly retrospective on a canonical American film addresses a viewer whose investment in critical film history has no structural connection to the nostalgic teen pop audience for whom the concert video was produced.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (198, 628, 2, 'Yoavkeidar9', 'A European film metadata trap. The Italian historical comedy, in which localized humor fails to translate, addresses a viewer seeking culturally specific entertainment whose expectations are incompatible with the rigorous formal economy of the war short film.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (33, 38, 2, 'Yoavkeidar9', 'A numeric sequence false positive. A characterless action film that abandons character development entirely for generic combat is categorically incompatible with an atmospheric pre-WWII Austrian drama that builds tension through environmental detail and formal discipline.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (337, 6, 2, 'Yoavkeidar9', 'An algorithmic failure based on chronological sorting. The technically accomplished Italian police procedural addresses an audience whose investment in gritty urban genre filmmaking is entirely incompatible with the Disney live-action slapstick format.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (450, 529, 2, 'Yoavkeidar9', 'A punctuation and numerical title link generates a recommendation of tonal incompatibility. The film addressing racial integration with political seriousness addresses an audience whose expectations for dramatic weight are incompatible with a poorly executed spy spoof.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (350, 352, 2, 'Yoavkeidar9', 'A conjunction keyword trap. The talk-heavy virus thriller''s expository approach to dramatic material addresses a viewer whose expectations are incompatible with the behavioral naturalism and social authenticity of the migrant labor drama.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (41, 44, 2, 'Yoavkeidar9', 'An era-based title number overlap. The 1917 silent Western artifact provides historical value as a document of early genre self-reflexivity; the 1988 film merely deploys period signifiers without engaging the historical substance, making the recommendation a mismatch at every formal and thematic level.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (61, 62, 2, 'Yoavkeidar9', 'A sequential database sorting failure. The educational behind-the-scenes documentary addresses an audience of film historians and cinephiles whose investment in production craft analysis is incompatible with a light Czech sci-fi comedy.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (365, 378, 2, 'Yoavkeidar9', 'A European short film ellipsis-title mismatch. The Oscar-winning short demonstrates structural elegance of the highest order, making the recommendation to a rough 1931 Soviet transitional-era artifact — whose interest is primarily archival — a significant qualitative mismatch.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (31, 36, 2, 'Yoavkeidar9', 'A symbol and number title trap. The self-conscious American indie drama''s intellectual posturing addresses a viewer whose expectations are incompatible with the kinetic, handheld-aesthetic Singaporean street film, which derives its authenticity from precisely the formal directness the former lacks.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (196, 198, 2, 'Yoavkeidar9', 'A European historical film mismatch. The visually dense Portuguese military drama addressing colonial history requires substantial contextual knowledge and rewards a different viewer than the Italian comedy whose localized humor fails to translate cross-culturally.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (329, 349, 2, 'Yoavkeidar9', 'A deep cinematic themes false positive. The experimental digital manipulation film addresses viewers oriented toward process-based formal experimentation whose patience for visual abstraction is incompatible with the explosive dramatic intensity of the courtroom film.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (223, 807, 2, 'Yoavkeidar9', 'A musical and artsy metadata connection. The jazz documentary achieves a documentary-like performance authenticity that represents the ceiling of its subgenre; the recommendation to a low-budget indie with weirdly paced narrative construction constitutes a substantial qualitative and tonal mismatch.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (118, 124, 2, 'Yoavkeidar9', 'A production history false positive via sequential IDs. The horror production documentary addresses a viewer whose interest in genre filmmaking craft is incompatible with the audience for a 1930s Popeye cartoon short.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (6, 2, 2, 'Yoavkeidar9', 'A 1971 release and financial keyword trap. The Disney live-action slapstick addresses an entirely different family entertainment demographic than a tonally uneven bank robbery comedy, making the year-of-production overlap the sole and insufficient basis for the connection.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (130, 551, 2, 'Yoavkeidar9', 'A European/International tag connection. The visually pleasing, plotless French short addresses a viewer oriented toward aesthetic contemplation whose expectations are incompatible with a standard procedural 1960s Spanish police thriller.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (136, 1054, 2, 'Yoavkeidar9', 'An urban tension false positive. The humorous short film about coffee addiction addresses a viewer seeking relatable observational comedy whose expectations are incompatible with the dark psychological engagement of a mid-century urban crime film.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (165, 44, 2, 'Yoavkeidar9', 'A retrospective tag mismatch. The documentary provides analytical depth proportionate to a canonical film''s historical significance; the 1988 feature deploys period signifiers without engaging the psychological textures of the era it represents, making the recommendation a mismatch at the level of formal ambition.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (230, 682, 2, 'Yoavkeidar9', 'An early-2000s release tag match. The atmospheric Stephen King adaptation constructs its generic conventions with sufficient competence to address a viewer seeking sustained dread, whose expectations are categorically incompatible with a simplistic teen comedy.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (249, 417, 2, 'Yoavkeidar9', 'A Hollywood drama metadata trap. The masterful retrospective on a canonical film addresses a viewer invested in cinema history whose expectations of formal achievement are incompatible with the slow, unengaging pacing of the independent thriller.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (184, 52, 2, 'Yoavkeidar9', 'An action-comedy metadata trap. The German film''s failed dialogue-based comedy addresses an entirely different audience than the Jackie Chan film, whose practical stunt choreography represents a formal achievement the former cannot approach and does not attempt.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (713, 184, 3, 'Yoavkeidar9', 'A German comedy metadata link. Though both German-language comedies attempt culturally specific humor through fast dialogue, neither demonstrates sufficient comedic craft to constitute a meaningful recommendation; the association is based on production language rather than any shared aesthetic achievement.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (707, 822, 3, 'Yoavkeidar9', 'A number-based metadata link. The cynical dark comedy addressing marital infidelity through transgressive content appeals to a viewer whose tolerance for provocation is incompatible with the quiet, naturalistic European drama''s contemplative register.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1048, 1075, 3, 'Yoavkeidar9', 'A connection via the number 13 generates a tonal mismatch. The gritty WWII spy thriller''s formal procedural seriousness constitutes an investment in dramatic craft that its viewer would find entirely absent in the generic indie horror film''s reliance on discrete jump scares.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (139, 1018, 3, 'Yoavkeidar9', 'A comedy crossover failure. The culturally specific Czech comedy addresses a viewer seeking familiar social humor whose expectations of dramatic logic are incompatible with the science fiction temporal loop narrative''s systematic engagement with the implications of its speculative premise.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (141, 1019, 3, 'Yoavkeidar9', 'A late-1980s dramatic release match. The Bollywood melodrama''s emotional amplification addresses a viewer oriented toward maximum affective intensity whose expectations are incompatible with the short film''s formal precision and systematic structural logic.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (220, 585, 3, 'Yoavkeidar9', 'An early-2000s thematic release match. The Hitchcock documentary''s formal precision and analytical depth address a viewer whose standards for intellectual engagement are incompatible with the Brazilian satire''s didactic directness.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (328, 345, 3, 'Yoavkeidar9', 'A late-1980s/early-1990s comedy connection. The science fiction film''s emotional warmth and practical effects authenticity address a viewer whose expectations for character coherence are incompatible with a comedy whose humor depends on characters acting against their established psychological interests.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (910, 707, 3, 'Yoavkeidar9', 'A thriller and comedy metadata trap. The heist film rewards a viewer seeking intelligent structural plotting whose expectations are incompatible with a dark comedy that addresses marital transgression through provocative content without meaningful character grounding.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (245, 1097, 3, 'Yoavkeidar9', 'A behind-the-scenes versus animation false positive. The science fiction television documentary addresses adult cinephiles whose investment in production history has no overlap with the audience seeking classic Looney Tunes physical comedy.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (44, 350, 3, 'Yoavkeidar9', 'Both films rely on dialogue-heavy rooms where characters discuss impending societal shifts, but the surface-level period signifiers of the former and the expository thriller mechanics of the latter address viewers seeking different kinds of dramatic engagement.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (101, 393, 3, 'Yoavkeidar9', 'Both international thrillers construct criminal investigations with procedural frameworks, but the German film''s structural incoherence and the Italian film''s controlled information management address viewers with different thresholds for narrative logic.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (139, 487, 3, 'Yoavkeidar9', 'Both are culturally specific international comedies whose humor requires contextual knowledge of local political history, but the Czech and Spanish political contexts are sufficiently distinct that viewers familiar with one have no particular reason to find the other accessible.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (334, 529, 3, 'Yoavkeidar9', 'Fans of highly campy 1960s low-budget cinema will find the cardboard sets and unconvincing effects of both films charming, but the science fiction and spy parody formats address different enough generic expectations that the recommendation lacks strong directional logic.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (413, 329, 3, 'Yoavkeidar9', 'Both are experimental films that prioritize visual distortion over narrative accessibility, but the Estonian film''s folk-inflected formal experimentation addresses a viewer whose aesthetic orientation is different from the digital image-manipulation audience of the Michael Snow film.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (445, 195, 3, 'Yoavkeidar9', 'Both are slow-paced dramas that rely on performance work within confined settings, but the Swedish art film''s formal self-consciousness and the stage adaptation''s performance-driven intensity address viewers with fundamentally different expectations of cinematic engagement.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (418, 359, 3, 'Yoavkeidar9', 'Both are formulaic romance films with soap opera narrative conventions, but the Australian melodrama and the Bollywood musical address different cultural contexts and formal registers that make the recommendation based on shared generic failure rather than shared generic appeal.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (467, 340, 3, 'Yoavkeidar9', 'Both older European dramas deploy deliberate pacing without providing the psychological characterization necessary to justify the contemplative register, but the German moral drama and the Russian naturalistic film address different cultural contexts and viewer expectations.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (94, 345, 3, 'Yoavkeidar9', 'Both are formulaic late-1980s/early-1990s comedies that rely on character decisions lacking psychological credibility, but the Australian action-comedy and the domestic comedy address different comedic subgenres with sufficiently distinct audience expectations to make the recommendation superficial.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (31, 32, 3, 'Yoavkeidar9', 'Both are stylized indie films prioritizing artistic statement over narrative accessibility, but their failure modes — intellectual posturing and generic commercial formula respectively — address viewers with different orientations and provide no meaningful basis for recommendation.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (544, 585, 3, 'Yoavkeidar9', 'Both films experiment with unusual formal constraints, but the Dutch telephone-based thriller''s formal inventiveness and the Brazilian consumerism satire''s didactic directness address viewers with different orientations toward formal experimentation and political content.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (503, 467, 3, 'Yoavkeidar9', 'Both are slow-paced European dramas that deploy rural environments as expressive backdrops, but the French film''s compositional intelligence and the German moral drama''s earnest solemnity address viewers with different expectations of contemplative cinema''s formal rewards.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1051, 11, 3, 'Yoavkeidar9', 'Both are 1930s comedies deploying period physical gags and ensemble energy, but the German treasure-hunt comedy''s structural elegance and the American sports comedy''s repetitive comedic mechanisms address viewers with different expectations of comedic sophistication.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1073, 1036, 3, 'Yoavkeidar9', 'Both are schematic horror films that deploy gimmick-based engagement over sustained atmosphere, but the Australian production and the William Castle exhibition strategy address different production eras and horror subgenre conventions that make the recommendation based on shared generic limitation rather than shared appeal.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (953, 1075, 3, 'Yoavkeidar9', 'Both low-budget indie horror films rely on discrete shock events rather than sustained atmospheric construction, but their respective horror subgenre conventions and production contexts address viewers with sufficiently different expectations that the recommendation is based on shared generic failure rather than shared generic competence.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (378, 11, 3, 'Yoavkeidar9', 'Both are early-era comedies with slapstick mechanics, but the Russian early-sound transitional artifact and the American sports comedy address different cultural contexts and production eras whose comic registers are too distinct to constitute a meaningful recommendation.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (549, 521, 3, 'Yoavkeidar9', 'Both are German postwar productions, but the war trilogy installment''s transitional narrative position and the crime mystery''s genre-based plotting address viewers with sufficiently different dramatic expectations that the shared production context is insufficient basis for recommendation.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (910, 880, 4, 'Yoavkeidar9', 'A numerical title connection. The intricate heist thriller rewards a viewer seeking intelligent structural plotting whose expectations are incompatible with a franchise sequel developed from commercial rather than narrative imperatives.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (550, 476, 4, 'Yoavkeidar9', 'A German-language production link. The war trilogy conclusion''s analytical seriousness addresses a viewer whose investment in historical drama is incompatible with the dated slapstick mechanisms of a 1960s German comedy whose humor has been superseded by more sophisticated comedic approaches.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (549, 550, 10, 'Yoavkeidar9', 'Since these are direct sequential parts of the same German war trilogy, the narrative continuity between them is absolute — the second installment can only be meaningfully experienced by viewers who have already committed to the first.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1039, 845, 8, 'Yoavkeidar9', 'Both sports and music documentaries use exceptional event footage as primary material, with cinematographic choices that convey the kinetic and psychological dimensions of peak physical and performative achievement in ways that static description cannot replicate.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (480, 558, 8, 'Yoavkeidar9', 'Both films use the German urban environment — postwar rubble, postwar racial landscape — as an expressive context for examining how societies negotiate the legacy of violent historical failure, with documentary-inflected visual approaches that ground the thematic material in material specificity.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (450, 572, 8, 'Yoavkeidar9', 'Both films use raw behavioral naturalism and social authenticity to dramatize the institutional resistance to justice — racial integration, urban street power — with a formal directness that refuses to aestheticize the conflicts they represent.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (503, 822, 8, 'Yoavkeidar9', 'Both European dramas deploy rural landscape cinematography with compositional intelligence, using the visual contrast between environment and interiority to externalize character psychology with the restrained naturalistic register that characterizes the best of Continental chamber drama.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1018, 1019, 8, 'Yoavkeidar9', 'The short film whose temporal loop structure the feature directly expands upon — viewers who found the formal precision of the feature exceptional will recognize in the short the original structural logic from which the fuller dramatic canvas was constructed.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (597, 51, 8, 'Yoavkeidar9', 'Both films demonstrate that formal economy and visual invention can operate as expressive strategies in their own right, with the Austrian sci-fi comedy and the animated short each using their respective formal constraints to amplify rather than diminish communicative effectiveness.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (352, 558, 8, 'Yoavkeidar9', 'Both films address systemic racial and social marginalization with documentary-inflected formal directness, using behavioral naturalism rather than melodramatic amplification to convey the material and psychological dimensions of discrimination.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (365, 829, 7, 'Yoavkeidar9', 'Both short films demonstrate the formal ceiling of compressed narrative, achieving thematic completeness and emotional resonance through structural economy in ways that reward viewers who recognize how much has been accomplished within the severe formal constraints.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (524, 870, 7, 'Yoavkeidar9', 'Both Northern European comedies use deadpan absurdism and social stagnation as primary comedic materials, maintaining tonal consistency across narratives defined by the protagonists'' systematic failure to engage with the world on its own terms.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (2, 910, 7, 'Yoavkeidar9', 'Both heist films construct their central operations with sufficient structural intelligence to generate engagement through the mechanics of the scheme itself, rewarding viewers who find procedural complexity as satisfying a source of dramatic tension as conventional character development.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1051, 995, 7, 'Yoavkeidar9', 'The obvious recommendation — both adaptations of the same foundational source material — rewards the viewer interested in how different national traditions and production eras approach identical comedic premises, with the chair-hunt narrative structure providing the basis for distinct but related formal solutions.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (676, 926, 7, 'Yoavkeidar9', 'Both films approach mass historical atrocity with the formal seriousness that the ethical stakes require, using restraint in the depiction of violence and primary-source testimony to honor rather than aestheticize the human material.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (393, 572, 7, 'Yoavkeidar9', 'Both European crime films construct their investigations through procedural frameworks grounded in urban realism, with documentary-inflected visual approaches that convey the sociological dimensions of criminality beyond the narrative mechanics of the investigation itself.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (606, 870, 7, 'Yoavkeidar9', 'Both late-career or independent comedies use geographic confinement and social isolation to examine the gap between protagonist self-perception and behavioral reality, with the midlife crisis American film and the Icelandic existential comedy approaching the same human condition from distinct cultural perspectives.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (36, 572, 7, 'Yoavkeidar9', 'Both 2002 productions use kinetic, handheld documentary aesthetics to portray urban street-level social dynamics with behavioral authenticity, demonstrating that different national cinemas — Singaporean and Polish — can employ similar formal strategies to address comparable sociological environments.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (153, 563, 7, 'Yoavkeidar9', 'Both films integrate musical material and visual experimentation into coherent aesthetic frameworks, generating viewing experiences that prioritize the relationship between sound and image over conventional narrative development with consistent artistic rather than arbitrary formal logic.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (338, 352, 7, 'Yoavkeidar9', 'Both films use location cinematography and observational restraint to document the physical and social experience of labor — port-city topography, agricultural migrant life — with compositional intelligence that elevates documentary observation into formal argument.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (880, 847, 4, 'Yoavkeidar9', 'Though the sequel directly follows from the original live-action film and shares its villain, cast, and visual register, the creative diminishment is sufficient to make the recommendation a qualified failure: the sequel recycles the predecessor''s constructions without providing enough variation to justify a second installment.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (953, 230, 4, 'Yoavkeidar9', 'Both are early-2000s horror productions, but the low-budget indie''s reliance on jump scares addresses an audience whose expectations for atmospheric construction are incompatible with the Stephen King adaptation''s more sustained approach to genre dread.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (476, 713, 4, 'Yoavkeidar9', 'Both German-language comedies fail to generate comedic engagement through either situational construction or character dynamics, but the dated 1960s slapstick and the contemporary flat-dialogue comedy address different failure modes across different production eras.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (101, 713, 4, 'Yoavkeidar9', 'Both German-language films demonstrate structural deficiencies in their respective genres — thriller incoherence and comedic flatness — but the shared production language provides insufficient basis for a recommendation when the dramatic registers and audience expectations are entirely distinct.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (509, 417, 4, 'Yoavkeidar9', 'Both are early-2000s thrillers with structural ambition that their screenplays cannot support — digital credibility failures in one, pacing insufficiency in the other — but their shared genre failure addresses different viewer expectations for the slow-burn and the tech thriller formats.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (969, 69, 10, 'Yoavkeidar9', 'Both films expose institutional failure with exceptional formal precision, using procedural frameworks to demonstrate how bureaucratic systems dehumanize individuals while insulating authority from accountability.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (969, 548, 10, 'Yoavkeidar9', 'Both deploy spatial and temporal compression as primary expressive strategies, achieving psychological intensity through formal confinement that amplifies rather than limits the dramatic material being examined.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (969, 549, 10, 'Yoavkeidar9', 'Both use documentary-inflected visual approaches to ground their thematic material in material specificity, refusing aesthetic displacement that more conventionally produced films in the same territory typically employ.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (72, 223, 10, 'Yoavkeidar9', 'Both documentary texts illuminate their subjects with sufficient analytical depth to function as genuinely pedagogical material, providing contextual intelligence that meaningfully extends understanding beyond what the primary works alone can offer.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (72, 603, 10, 'Yoavkeidar9', 'Both films function as artistic extensions of their subjects rather than mere documentation, constructing visual and editorial languages that reflect the aesthetic commitments of the material being examined.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (72, 845, 10, 'Yoavkeidar9', 'Both demonstrate that documentary form at its best operates as active interpretation rather than passive recording, with editorial and cinematographic choices constituting genuine arguments about their respective subjects.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (921, 969, 9, 'Yoavkeidar9', 'Both films construct their dramatic tension through the credibility of their institutional settings, generating engagement through procedural authenticity rather than conventional character development or genre mechanics.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (921, 349, 9, 'Yoavkeidar9', 'Both achieve sustained emotional impact through performance work of exceptional commitment, demonstrating the ability to convey psychological complexity through behavioral restraint rather than expressive amplification.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (921, 450, 9, 'Yoavkeidar9', 'Both approach historical and institutional failure with formal seriousness proportionate to the ethical stakes, refusing sentimentalism in favor of sustained analytical engagement.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (921, 639, 9, 'Yoavkeidar9', 'Both deploy testimony and investigation as structural engines for social observation, using procedural frameworks to reveal systemic dysfunction in the institutions and communities being examined.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (338, 69, 9, 'Yoavkeidar9', 'Both use location cinematography and behavioral naturalism to document environments marked by conflict or social marginalization with compositional intelligence that elevates observation into coherent cinematic argument.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (338, 548, 9, 'Yoavkeidar9', 'Both approach their subjects with formal restraint proportionate to the ethical stakes, using documentary-inflected visual approaches to honor rather than exploit the human material at the center of their narratives.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (338, 549, 9, 'Yoavkeidar9', 'Both deploy formal austerity as an ethical commitment, resisting aestheticization of suffering or conflict that more commercially oriented productions in the same territory inevitably produce.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (38, 921, 8, 'Yoavkeidar9', 'Both films demonstrate that formal economy and restraint amplify rather than diminish communicative force, with the most effective sequences achieving impact through deliberate withholding rather than conventional dramatic escalation.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (38, 926, 8, 'Yoavkeidar9', 'Both use their respective historical environments as primary expressive material, with production design and location cinematography functioning as analytical tools rather than mere atmospheric backdrop.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (38, 676, 8, 'Yoavkeidar9', 'Both construct their atmospheres through environmental specificity, using the material conditions of historical periods to amplify rather than merely illustrate the dramatic content being examined.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (38, 909, 8, 'Yoavkeidar9', 'Both use the physical environment of their historical periods as expressive material, allowing documentary specificity to ground the thematic content in material reality.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (628, 72, 8, 'Yoavkeidar9', 'Both demonstrate that formal economy operates as an expressive strategy in its own right, achieving thematic completeness within severe constraints through structural intelligence rather than formal simplification.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (628, 220, 8, 'Yoavkeidar9', 'Both films reward attentive viewers who recognize the level of formal achievement compressed into their respective runtimes, demonstrating that brevity and communicative force are not merely compatible but mutually reinforcing.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (628, 249, 8, 'Yoavkeidar9', 'Both construct their formal identities through deliberate limitation, using constraint as a generative condition that produces distinctiveness rather than as a compromise limiting ambition.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (628, 165, 8, 'Yoavkeidar9', 'Both demonstrate that cinematic intelligence manifests most clearly in formal economy, with structural decisions underlying their brevity revealing the same analytical rigor evident in longer-form works of exceptional quality.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (995, 644, 7, 'Yoavkeidar9', 'Both reward attentive viewers who find structural and tonal complexity as satisfying as conventional character-driven drama, with formal competence distinguishing them from genre contemporaries.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (995, 1038, 7, 'Yoavkeidar9', 'Both deploy their respective national cinematic traditions with sufficient intelligence to generate viewing experiences that transcend the generic conventions within which they operate.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (995, 606, 7, 'Yoavkeidar9', 'Both comedies use their nominal genre frameworks as vehicles for genuine character observation, generating engagement through behavioral credibility rather than mechanical execution of conventional comedic setups.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (995, 428, 7, 'Yoavkeidar9', 'Both films demonstrate that generic competence at its best operates as a vehicle for observation rather than mere entertainment, with the most effective sequences achieving impact through character specificity.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (995, 682, 7, 'Yoavkeidar9', 'Both succeed primarily through the credibility of their central character dynamics, demonstrating that comedic and romantic engagement depends ultimately on behavioral authenticity.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 72, 1, 'Yoavkeidar9', 'A categorical audience mismatch of maximal incompatibility. The formal and thematic registers of these two films address viewer demographics with no meaningful overlap, making any recommendation between them a comprehensive algorithmic failure.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 220, 1, 'Yoavkeidar9', 'A metadata sorting artifact generating a recommendation of singular inappropriateness. The shared tag provides zero predictive value for viewing compatibility, as the actual content and target audiences are mutually exclusive.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 249, 1, 'Yoavkeidar9', 'A production tag false positive. The documentary addresses viewers whose investment in formal craft is categorically incompatible with the exploitation film exploiting the same surface-level signals.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 165, 1, 'Yoavkeidar9', 'A numerical or alphabetical proximity trap. The connection has no basis in viewing compatibility, as the films address entirely different audiences with entirely different formal and thematic expectations.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 634, 1, 'Yoavkeidar9', 'An era-based metadata link generating a recommendation of fundamental incompatibility. The shared production period provides the sole basis for connection; actual content and target audience are mutually exclusive.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 245, 1, 'Yoavkeidar9', 'A genre tag mismatch. The documentary formal precision addresses a viewer whose standards for intellectual engagement are incompatible with the genre film sharing only a superficial categorical signal.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (823, 72, 1, 'Yoavkeidar9', 'A comprehensive false positive. The only shared signal is a metadata artifact; actual viewing experience, formal register, and target audience demographics are entirely distinct.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 69, 2, 'Yoavkeidar9', 'A production era or genre tag mismatch. Though both films share superficial metadata signals, the actual viewing experience and audience expectations are sufficiently incompatible to constitute a recommendation failure at every meaningful level.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 548, 2, 'Yoavkeidar9', 'A sequential database sorting artifact. The shared alphabetical proximity generates a connection with no basis in viewing compatibility, as the films address entirely different audiences with different formal expectations.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 549, 2, 'Yoavkeidar9', 'A surface-level thematic false positive. The apparent connection provides no basis for recommendation when actual content, formal ambition, and audience expectations are evaluated on their own terms.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 550, 2, 'Yoavkeidar9', 'A categorical mismatch disguised by shared genre tags. The actual dramatic registers and production values are so different that the recommendation would fail to generate meaningful engagement for the intended audience of either film.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 38, 2, 'Yoavkeidar9', 'A metadata proximity trap. The formal seriousness of one film addresses a viewer whose investment in historical authenticity is incompatible with the generic limitations of the other.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 480, 2, 'Yoavkeidar9', 'An era-based metadata link. The shared production period provides insufficient basis for recommendation when the actual content and audience expectations are evaluated with any specificity.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 196, 2, 'Yoavkeidar9', 'A sorting artifact generating a fundamentally incompatible pairing. The films share only incidental metadata proximity; their actual content, formal registers, and target audiences have no meaningful relationship.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (995, 921, 3, 'Yoavkeidar9', 'Both films share a superficial genre or metadata signal, but the actual dramatic registers and target audiences are sufficiently distinct that the recommendation provides no meaningful directional logic for the viewer.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (995, 926, 3, 'Yoavkeidar9', 'A false positive based on shared production language or release period. The apparent connection provides insufficient basis for recommendation when actual content, formal ambition, and audience expectations are evaluated on their own terms.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (995, 676, 3, 'Yoavkeidar9', 'Both films address entirely different emotional registers, making the recommendation based on shared categorical tags rather than any meaningful compatibility of actual content or audience orientation.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (995, 909, 3, 'Yoavkeidar9', 'A tonal register mismatch. The comedic film addresses a viewer seeking humor whose emotional expectations are fundamentally incompatible with the documentary seriousness and ethical weight of the historical film.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1051, 921, 3, 'Yoavkeidar9', 'A genre metadata connection generating a fundamental tonal mismatch. The comedy audience has no structural affinity for the documentary audience seeking historical understanding through formal restraint.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (1051, 926, 3, 'Yoavkeidar9', 'A categorical false positive. The shared genre tag provides no basis for predicting viewer compatibility, as the actual emotional registers and formal approaches of these films are mutually incompatible.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 644, 4, 'Yoavkeidar9', 'Both films demonstrate deficiencies in their respective genres, but the nature of these deficiencies addresses different viewer expectations, making the recommendation based on shared inadequacy rather than shared appeal.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 1038, 4, 'Yoavkeidar9', 'A genre or period tag link. The formal and narrative approaches address different subgenre conventions with sufficiently distinct audience expectations that the recommendation lacks meaningful directional logic despite surface-level connection.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 606, 4, 'Yoavkeidar9', 'Both films fail to deliver on their respective generic promises, but the failure modes are distinct enough that the audience disappointed by one would have no particular reason to seek the other.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 428, 4, 'Yoavkeidar9', 'A metadata link generating a recommendation of limited value. Both films share a categorical signal, but their actual content and execution address audiences with sufficiently different expectations.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (646, 682, 4, 'Yoavkeidar9', 'Both operate within generic conventions without achieving the formal distinctiveness that would elevate them above contemporaries, but the shared generic limitation does not constitute a meaningful basis for recommendation.', ''); + +INSERT IGNORE INTO movies_recommendations (base_movie_id, recommended_movie_id, recommendation, suggested_by, justification, comment) +VALUES (823, 644, 4, 'Yoavkeidar9', 'A production tag connection. Though both films share a categorical signal, the actual dramatic registers and audience expectations are sufficiently distinct that the recommendation fails to provide meaningful viewing guidance.', ''); + +INSERT IGNORE INTO movies_recommendations VALUES (100130 +, 149287 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (100130 +, 159167 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (100130 +, 159172 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (100130 +, 159175 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (100130 +, 214755 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (100130 +, 359297 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (10830 +, 129185 +, 8 +, 'MeniWeingarten' +, 'Both directed by Ridley Scott. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (10830 +, 39551 +, 8 +, 'MeniWeingarten' +, 'Both directed by Ridley Scott. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (10945 +, 112290 +, 8 +, 'MeniWeingarten' +, 'Both directed by David Fincher. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (1121 +, 129185 +, 3 +, 'MeniWeingarten' +, 'Both directed by Ridley Scott. However the quality differs notably (rated 6 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (1121 +, 40199 +, 3 +, 'MeniWeingarten' +, 'Both directed by Ridley Scott. However the quality differs notably (rated 6 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (118367 +, 176711 +, 3 +, 'MeniWeingarten' +, 'Both directed by Quentin Tarantino. However the quality differs notably (rated 5 vs 8), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (118367 +, 176712 +, 3 +, 'MeniWeingarten' +, 'Both directed by Quentin Tarantino. However the quality differs notably (rated 5 vs 8), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (118980 +, 263360 +, 2 +, 'MeniWeingarten' +, 'Both directed by Garry Marshall. However the quality differs notably (rated 4 vs 8), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (120574 +, 218808 +, 3 +, 'MeniWeingarten' +, 'Share 3 recurring characters across the films. However the quality differs notably (rated 7 vs 4), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (120574 +, 332065 +, 8 +, 'MeniWeingarten' +, 'Share 3 recurring characters and director Terence Young. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (120574 +, 354178 +, 3 +, 'MeniWeingarten' +, 'Share 3 recurring characters across the films. However the quality differs notably (rated 7 vs 4), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (123435 +, 247579 +, 8 +, 'MeniWeingarten' +, 'Both directed by David Fincher. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (123435 +, 291698 +, 8 +, 'MeniWeingarten' +, 'Both directed by David Fincher. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (123849 +, 185704 +, 3 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (123849 +, 270971 +, 8 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (123849 +, 326155 +, 8 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (130953 +, 192514 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters and director Guy (I) Hamilton. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (130953 +, 203649 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters and director Guy (I) Hamilton. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (130953 +, 218808 +, 3 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. However the quality differs notably (rated 7 vs 4), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (130953 +, 240521 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (130953 +, 312170 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (130953 +, 332065 +, 8 +, 'MeniWeingarten' +, 'Share 5 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (130953 +, 354178 +, 3 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. However the quality differs notably (rated 7 vs 4), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (130953 +, 372233 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (131780 +, 185704 +, 2 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. However the quality differs notably (rated 9 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (131885 +, 188511 +, 3 +, 'MeniWeingarten' +, 'Both directed by Richard Donner. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (131885 +, 208245 +, 8 +, 'MeniWeingarten' +, 'Both directed by Richard Donner. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (131885 +, 319602 +, 8 +, 'MeniWeingarten' +, 'Both directed by Richard Donner. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (139650 +, 139652 +, 8 +, 'MeniWeingarten' +, 'Share 18 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (139650 +, 139655 +, 8 +, 'MeniWeingarten' +, 'Share 24 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (139650 +, 139657 +, 8 +, 'MeniWeingarten' +, 'Share 32 recurring characters and director Chris Columbus. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (139652 +, 139655 +, 8 +, 'MeniWeingarten' +, 'Share 19 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (139652 +, 139657 +, 8 +, 'MeniWeingarten' +, 'Share 15 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (139655 +, 139657 +, 8 +, 'MeniWeingarten' +, 'Share 23 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (14477 +, 100130 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (14477 +, 149287 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (14477 +, 159167 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (14477 +, 159172 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (14477 +, 159175 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (14477 +, 214755 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (14477 +, 359297 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (14477 +, 94741 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (149287 +, 159172 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 5 vs 8), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (149287 +, 159175 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 5 vs 8), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (149287 +, 214755 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 5 vs 8), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (149287 +, 271095 +, 2 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 5 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (149287 +, 289109 +, 1 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 5 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (149287 +, 290070 +, 1 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 5 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159167 +, 159172 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 5 vs 8), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159167 +, 159175 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 5 vs 8), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159167 +, 214755 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 5 vs 8), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159167 +, 271095 +, 2 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 5 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159167 +, 289109 +, 1 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 5 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159167 +, 290070 +, 1 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 5 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159172 +, 159175 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159172 +, 214755 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159172 +, 271095 +, 8 +, 'MeniWeingarten' +, 'Share 3 recurring characters and director Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159172 +, 359297 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159175 +, 214755 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159175 +, 359297 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (159665 +, 267038 +, 2 +, 'MeniWeingarten' +, 'Both directed by Quentin Tarantino. However the quality differs notably (rated 7 vs 3), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (164572 +, 176711 +, 3 +, 'MeniWeingarten' +, 'Both directed by Quentin Tarantino. However the quality differs notably (rated 5 vs 8), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (164572 +, 176712 +, 3 +, 'MeniWeingarten' +, 'Both directed by Quentin Tarantino. However the quality differs notably (rated 5 vs 8), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (165961 +, 289109 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 7 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (165961 +, 290070 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 7 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (174953 +, 218219 +, 8 +, 'MeniWeingarten' +, 'Both directed by Hayao Miyazaki. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (176711 +, 176712 +, 8 +, 'MeniWeingarten' +, 'Both directed by Quentin Tarantino. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (176711 +, 267038 +, 1 +, 'MeniWeingarten' +, 'Both directed by Quentin Tarantino. However the quality differs notably (rated 8 vs 3), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (176711 +, 276217 +, 3 +, 'MeniWeingarten' +, 'Both directed by Quentin Tarantino. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (176712 +, 220276 +, 1 +, 'MeniWeingarten' +, 'Share 2 recurring characters across the films. However the quality differs notably (rated 8 vs 3), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (176712 +, 267038 +, 1 +, 'MeniWeingarten' +, 'Both directed by Quentin Tarantino. However the quality differs notably (rated 8 vs 3), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (176712 +, 276217 +, 3 +, 'MeniWeingarten' +, 'Both directed by Quentin Tarantino. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (188507 +, 188509 +, 8 +, 'MeniWeingarten' +, 'Share 6 recurring characters and director Richard Donner. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (188507 +, 188510 +, 3 +, 'MeniWeingarten' +, 'Share 6 recurring characters and director Richard Donner. However the quality differs notably (rated 9 vs 6), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (188507 +, 188511 +, 2 +, 'MeniWeingarten' +, 'Share 4 recurring characters and director Richard Donner. However the quality differs notably (rated 9 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (188509 +, 188510 +, 8 +, 'MeniWeingarten' +, 'Share 10 recurring characters and director Richard Donner. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (192514 +, 203649 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters and director Guy (I) Hamilton. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (192514 +, 332065 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (194497 +, 194500 +, 8 +, 'MeniWeingarten' +, 'Share 14 recurring characters and director Peter (I) Jackson. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (194497 +, 194502 +, 8 +, 'MeniWeingarten' +, 'Share 8 recurring characters and director Peter (I) Jackson. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (194500 +, 194502 +, 8 +, 'MeniWeingarten' +, 'Share 13 recurring characters and director Peter (I) Jackson. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (203649 +, 240521 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (203649 +, 312170 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (203649 +, 332065 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (203649 +, 372233 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (208245 +, 319602 +, 8 +, 'MeniWeingarten' +, 'Both directed by Richard Donner. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (21213 +, 289109 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 7 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (21213 +, 290070 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 7 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (218808 +, 240521 +, 3 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. However the quality differs notably (rated 4 vs 7), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (238072 +, 238073 +, 8 +, 'MeniWeingarten' +, 'Share 15 recurring characters and director Steven Soderbergh. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (240521 +, 312170 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (240521 +, 332065 +, 8 +, 'MeniWeingarten' +, 'Share 5 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (240521 +, 354178 +, 3 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. However the quality differs notably (rated 7 vs 4), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (240521 +, 372233 +, 8 +, 'MeniWeingarten' +, 'Share 5 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (245699 +, 263360 +, 2 +, 'MeniWeingarten' +, 'Both directed by Garry Marshall. However the quality differs notably (rated 4 vs 8), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (247579 +, 291698 +, 8 +, 'MeniWeingarten' +, 'Both directed by David Fincher. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (263360 +, 264157 +, 1 +, 'MeniWeingarten' +, 'Both directed by Garry Marshall. However the quality differs notably (rated 8 vs 3), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (270971 +, 326155 +, 8 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (271095 +, 289109 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (271095 +, 290070 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (271095 +, 359297 +, 2 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 9 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (280270 +, 280281 +, 8 +, 'MeniWeingarten' +, 'Share 5 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (280270 +, 280305 +, 2 +, 'MeniWeingarten' +, 'Share 3 recurring characters and director John G. Avildsen. However the quality differs notably (rated 8 vs 4), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (280281 +, 280282 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters and director Sylvester Stallone. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (280281 +, 280284 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters and director Sylvester Stallone. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (280282 +, 280284 +, 8 +, 'MeniWeingarten' +, 'Share 3 recurring characters and director Sylvester Stallone. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (289109 +, 290070 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (289109 +, 359297 +, 1 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 10 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (290070 +, 359297 +, 1 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 10 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (300229 +, 300230 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters and director Andrew Adamson. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (300229 +, 300233 +, 2 +, 'MeniWeingarten' +, 'Share 3 recurring characters across the films. However the quality differs notably (rated 9 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30952 +, 30955 +, 1 +, 'MeniWeingarten' +, 'Share 3 recurring characters across the films. However the quality differs notably (rated 2 vs 7), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30952 +, 30959 +, 1 +, 'MeniWeingarten' +, 'Share 2 recurring characters across the films. However the quality differs notably (rated 2 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30952 +, 30967 +, 2 +, 'MeniWeingarten' +, 'Share 3 recurring characters across the films. However the quality differs notably (rated 2 vs 6), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30955 +, 30957 +, 3 +, 'MeniWeingarten' +, 'Share 3 recurring characters across the films. However the quality differs notably (rated 7 vs 4), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30955 +, 30967 +, 8 +, 'MeniWeingarten' +, 'Share 2 recurring characters and director Tim (I) Burton. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30959 +, 210511 +, 8 +, 'MeniWeingarten' +, 'Both directed by Christopher Nolan. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30959 +, 30965 +, 1 +, 'MeniWeingarten' +, 'Share 3 recurring characters across the films. However the quality differs notably (rated 9 vs 4), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30959 +, 30970 +, 2 +, 'MeniWeingarten' +, 'Share 2 recurring characters across the films. However the quality differs notably (rated 9 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30959 +, 30977 +, 2 +, 'MeniWeingarten' +, 'Share 2 recurring characters across the films. However the quality differs notably (rated 9 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30961 +, 30962 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters and director Curt Geda. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (30970 +, 319602 +, 3 +, 'MeniWeingarten' +, 'Share 3 recurring characters across the films. However the quality differs notably (rated 5 vs 8), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (311037 +, 311038 +, 8 +, 'MeniWeingarten' +, 'Share 8 recurring characters and director Sam Raimi. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (311037 +, 406158 +, 2 +, 'MeniWeingarten' +, 'Share 3 recurring characters across the films. However the quality differs notably (rated 8 vs 4), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (311038 +, 406158 +, 2 +, 'MeniWeingarten' +, 'Share 3 recurring characters across the films. However the quality differs notably (rated 8 vs 4), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (312150 +, 312152 +, 8 +, 'MeniWeingarten' +, 'Share 8 recurring characters and director Robert (I) Rodriguez. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (312170 +, 332065 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (312170 +, 372233 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters and director Lewis (II) Gilbert. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313474 +, 313478 +, 1 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. However the quality differs notably (rated 5 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313474 +, 313479 +, 2 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. However the quality differs notably (rated 5 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313476 +, 313477 +, 8 +, 'MeniWeingarten' +, 'Share 17 recurring characters and director George Lucas. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313476 +, 313478 +, 2 +, 'MeniWeingarten' +, 'Share 5 recurring characters across the films. However the quality differs notably (rated 6 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313476 +, 313479 +, 3 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. However the quality differs notably (rated 6 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313476 +, 406411 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313477 +, 313478 +, 3 +, 'MeniWeingarten' +, 'Share 5 recurring characters across the films. However the quality differs notably (rated 7 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313477 +, 313479 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (313478 +, 313479 +, 8 +, 'MeniWeingarten' +, 'Share 10 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (319602 +, 319613 +, 8 +, 'MeniWeingarten' +, 'Share 9 recurring characters and director Richard Donner. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (332065 +, 372233 +, 8 +, 'MeniWeingarten' +, 'Share 6 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (34077 +, 123435 +, 3 +, 'MeniWeingarten' +, 'Both directed by David Fincher. However the quality differs notably (rated 6 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (34077 +, 247579 +, 3 +, 'MeniWeingarten' +, 'Both directed by David Fincher. However the quality differs notably (rated 6 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (34077 +, 291698 +, 3 +, 'MeniWeingarten' +, 'Both directed by David Fincher. However the quality differs notably (rated 6 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (39829 +, 129185 +, 3 +, 'MeniWeingarten' +, 'Both directed by Ridley Scott. However the quality differs notably (rated 6 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (39829 +, 40199 +, 3 +, 'MeniWeingarten' +, 'Both directed by Ridley Scott. However the quality differs notably (rated 6 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (40199 +, 129185 +, 8 +, 'MeniWeingarten' +, 'Both directed by Ridley Scott. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (54209 +, 131780 +, 8 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (54209 +, 185704 +, 2 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. However the quality differs notably (rated 9 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56304 +, 123849 +, 8 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56304 +, 185704 +, 3 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56304 +, 270971 +, 8 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56304 +, 326155 +, 8 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56304 +, 67388 +, 8 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56871 +, 149287 +, 2 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 9 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56871 +, 159167 +, 2 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 9 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56871 +, 271095 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56871 +, 289109 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56871 +, 290070 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56871 +, 359297 +, 2 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 9 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56871 +, 67395 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 9 vs 6), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (56871 +, 96593 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (59578 +, 70959 +, 3 +, 'MeniWeingarten' +, 'Both directed by Tim (I) Burton. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (59578 +, 97727 +, 3 +, 'MeniWeingarten' +, 'Both directed by Tim (I) Burton. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (61751 +, 139655 +, 8 +, 'MeniWeingarten' +, 'Both directed by Alfonso Cuarón. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (65811 +, 289109 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 7 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (65811 +, 290070 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 7 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (67388 +, 123849 +, 8 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (67388 +, 185704 +, 3 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (67388 +, 270971 +, 8 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (67388 +, 326155 +, 8 +, 'MeniWeingarten' +, 'Both directed by Martin Scorsese. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (67395 +, 271095 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 6 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (67395 +, 289109 +, 2 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 6 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (67395 +, 290070 +, 2 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 6 vs 10), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (67395 +, 96593 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 6 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (69812 +, 188507 +, 3 +, 'MeniWeingarten' +, 'Both directed by Richard Donner. However the quality differs notably (rated 6 vs 9), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (86263 +, 120574 +, 3 +, 'MeniWeingarten' +, 'Share 3 recurring characters across the films. However the quality differs notably (rated 4 vs 7), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (86263 +, 130953 +, 3 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. However the quality differs notably (rated 4 vs 7), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (86263 +, 240521 +, 3 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. However the quality differs notably (rated 4 vs 7), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (92573 +, 120574 +, 8 +, 'MeniWeingarten' +, 'Share 5 recurring characters and director Terence Young. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (92573 +, 130953 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (92573 +, 192514 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters across the films. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (92573 +, 332065 +, 8 +, 'MeniWeingarten' +, 'Share 4 recurring characters and director Terence Young. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (94741 +, 100130 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (94741 +, 149287 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (94741 +, 159167 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (94741 +, 159172 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (94741 +, 159175 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (94741 +, 214755 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (94741 +, 359297 +, 3 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 8 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (96593 +, 149287 +, 2 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 9 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (96593 +, 159167 +, 2 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 9 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (96593 +, 271095 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (96593 +, 289109 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (96593 +, 290070 +, 8 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. Similar quality, so a fan of one will likely enjoy the other.' +, NULL); + +INSERT IGNORE INTO movies_recommendations VALUES (96593 +, 359297 +, 2 +, 'MeniWeingarten' +, 'Both directed by Steven Spielberg. However the quality differs notably (rated 9 vs 5), so this is a weak recommendation.' +, NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139657, 139650, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Chamber of Secrets continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Sorcerer''s Stone.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139657, 139655, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Prisoner of Azkaban continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Sorcerer''s Stone.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139657, 139652, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Goblet of Fire continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Sorcerer''s Stone.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139657, 139654, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Order of the Phoenix continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Sorcerer''s Stone.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139657, 139653, 9, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Half-Blood Prince continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Sorcerer''s Stone.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139650, 139657, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Sorcerer''s Stone continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Chamber of Secrets.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139650, 139655, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Prisoner of Azkaban continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Chamber of Secrets.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139650, 139652, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Goblet of Fire continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Chamber of Secrets.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139650, 139654, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Order of the Phoenix continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Chamber of Secrets.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139650, 139653, 9, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Half-Blood Prince continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Chamber of Secrets.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139655, 139657, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Sorcerer''s Stone continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Prisoner of Azkaban.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139655, 139650, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Chamber of Secrets continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Prisoner of Azkaban.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139655, 139652, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Goblet of Fire continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Prisoner of Azkaban.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139655, 139654, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Order of the Phoenix continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Prisoner of Azkaban.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139655, 139653, 9, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Half-Blood Prince continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Prisoner of Azkaban.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139652, 139657, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Sorcerer''s Stone continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Goblet of Fire.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139652, 139650, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Chamber of Secrets continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Goblet of Fire.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139652, 139655, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Prisoner of Azkaban continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Goblet of Fire.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139652, 139654, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Order of the Phoenix continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Goblet of Fire.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139652, 139653, 9, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Half-Blood Prince continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Goblet of Fire.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139654, 139657, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Sorcerer''s Stone continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Order of the Phoenix.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139654, 139650, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Chamber of Secrets continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Order of the Phoenix.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139654, 139655, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Prisoner of Azkaban continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Order of the Phoenix.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139654, 139652, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Goblet of Fire continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Order of the Phoenix.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139654, 139653, 9, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Half-Blood Prince continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Order of the Phoenix.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139653, 139657, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Sorcerer''s Stone continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Half-Blood Prince.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139653, 139650, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Chamber of Secrets continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Half-Blood Prince.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139653, 139655, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Prisoner of Azkaban continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Half-Blood Prince.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139653, 139652, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Goblet of Fire continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Half-Blood Prince.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139653, 139654, 10, 'DrorLeibov', 'Both movies belong to the Harry Potter fantasy series; Harry Potter and the Order of the Phoenix continues the same magical world, school setting, and character arcs, so it is a strong follow-up for fans of Harry Potter and the Half-Blood Prince.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130953, 130945, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; GoldenEye offers the same espionage formula, gadgets, villains, and globe-trotting action that make Goldfinger enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130953, 332065, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; Thunderball offers the same espionage formula, gadgets, villains, and globe-trotting action that make Goldfinger enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130953, 335336, 8, 'DrorLeibov', 'Both are official James Bond spy adventures; Tomorrow Never Dies offers the same espionage formula, gadgets, villains, and globe-trotting action that make Goldfinger enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130953, 368418, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; World Is Not Enough, The offers the same espionage formula, gadgets, villains, and globe-trotting action that make Goldfinger enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130953, 372233, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; You Only Live Twice offers the same espionage formula, gadgets, villains, and globe-trotting action that make Goldfinger enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130953, 354178, 8, 'DrorLeibov', 'Both are official James Bond spy adventures; View to a Kill, A offers the same espionage formula, gadgets, villains, and globe-trotting action that make Goldfinger enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130945, 130953, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; Goldfinger offers the same espionage formula, gadgets, villains, and globe-trotting action that make GoldenEye enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130945, 332065, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; Thunderball offers the same espionage formula, gadgets, villains, and globe-trotting action that make GoldenEye enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130945, 335336, 8, 'DrorLeibov', 'Both are official James Bond spy adventures; Tomorrow Never Dies offers the same espionage formula, gadgets, villains, and globe-trotting action that make GoldenEye enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130945, 368418, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; World Is Not Enough, The offers the same espionage formula, gadgets, villains, and globe-trotting action that make GoldenEye enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130945, 372233, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; You Only Live Twice offers the same espionage formula, gadgets, villains, and globe-trotting action that make GoldenEye enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130945, 354178, 8, 'DrorLeibov', 'Both are official James Bond spy adventures; View to a Kill, A offers the same espionage formula, gadgets, villains, and globe-trotting action that make GoldenEye enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (332065, 130953, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; Goldfinger offers the same espionage formula, gadgets, villains, and globe-trotting action that make Thunderball enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (332065, 130945, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; GoldenEye offers the same espionage formula, gadgets, villains, and globe-trotting action that make Thunderball enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (332065, 335336, 8, 'DrorLeibov', 'Both are official James Bond spy adventures; Tomorrow Never Dies offers the same espionage formula, gadgets, villains, and globe-trotting action that make Thunderball enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (332065, 368418, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; World Is Not Enough, The offers the same espionage formula, gadgets, villains, and globe-trotting action that make Thunderball enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (332065, 372233, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; You Only Live Twice offers the same espionage formula, gadgets, villains, and globe-trotting action that make Thunderball enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (332065, 354178, 8, 'DrorLeibov', 'Both are official James Bond spy adventures; View to a Kill, A offers the same espionage formula, gadgets, villains, and globe-trotting action that make Thunderball enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (335336, 130953, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; Goldfinger offers the same espionage formula, gadgets, villains, and globe-trotting action that make Tomorrow Never Dies enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (335336, 130945, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; GoldenEye offers the same espionage formula, gadgets, villains, and globe-trotting action that make Tomorrow Never Dies enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (335336, 332065, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; Thunderball offers the same espionage formula, gadgets, villains, and globe-trotting action that make Tomorrow Never Dies enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (335336, 368418, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; World Is Not Enough, The offers the same espionage formula, gadgets, villains, and globe-trotting action that make Tomorrow Never Dies enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (335336, 372233, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; You Only Live Twice offers the same espionage formula, gadgets, villains, and globe-trotting action that make Tomorrow Never Dies enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (335336, 354178, 8, 'DrorLeibov', 'Both are official James Bond spy adventures; View to a Kill, A offers the same espionage formula, gadgets, villains, and globe-trotting action that make Tomorrow Never Dies enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (368418, 130953, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; Goldfinger offers the same espionage formula, gadgets, villains, and globe-trotting action that make World Is Not Enough, The enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (368418, 130945, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; GoldenEye offers the same espionage formula, gadgets, villains, and globe-trotting action that make World Is Not Enough, The enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (368418, 332065, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; Thunderball offers the same espionage formula, gadgets, villains, and globe-trotting action that make World Is Not Enough, The enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (368418, 335336, 8, 'DrorLeibov', 'Both are official James Bond spy adventures; Tomorrow Never Dies offers the same espionage formula, gadgets, villains, and globe-trotting action that make World Is Not Enough, The enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (368418, 372233, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; You Only Live Twice offers the same espionage formula, gadgets, villains, and globe-trotting action that make World Is Not Enough, The enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (368418, 354178, 8, 'DrorLeibov', 'Both are official James Bond spy adventures; View to a Kill, A offers the same espionage formula, gadgets, villains, and globe-trotting action that make World Is Not Enough, The enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (372233, 130953, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; Goldfinger offers the same espionage formula, gadgets, villains, and globe-trotting action that make You Only Live Twice enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (372233, 130945, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; GoldenEye offers the same espionage formula, gadgets, villains, and globe-trotting action that make You Only Live Twice enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (372233, 332065, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; Thunderball offers the same espionage formula, gadgets, villains, and globe-trotting action that make You Only Live Twice enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (372233, 335336, 8, 'DrorLeibov', 'Both are official James Bond spy adventures; Tomorrow Never Dies offers the same espionage formula, gadgets, villains, and globe-trotting action that make You Only Live Twice enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (372233, 368418, 9, 'DrorLeibov', 'Both are official James Bond spy adventures; World Is Not Enough, The offers the same espionage formula, gadgets, villains, and globe-trotting action that make You Only Live Twice enjoyable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (319602, 319613, 9, 'DrorLeibov', 'Superman II is the direct sequel to Superman, keeping Christopher Reeve, the hopeful tone, and the Kryptonian conflict that a fan of the first film would likely want more of.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (319613, 319602, 9, 'DrorLeibov', 'Superman is the essential setup for Superman II, with the same hero, romantic core, and classic comic-book spirit, so it is a very natural recommendation.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (142491, 142492, 9, 'DrorLeibov', 'Hellboy 2 expands the same supernatural superhero universe from Hellboy with more imaginative creatures and a bigger fantasy-adventure scale.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (142492, 142491, 9, 'DrorLeibov', 'Hellboy introduces the characters and mythology that make Hellboy 2 work, so viewers who like the sequel should also enjoy the original film.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (176711, 176712, 10, 'DrorLeibov', 'Kill Bill Vol. 2 is the direct continuation of Kill Bill Vol. 1 and completes The Bride''s revenge story with the same Tarantino style and characters.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (176712, 176711, 10, 'DrorLeibov', 'Kill Bill Vol. 1 is required viewing for Kill Bill Vol. 2 because it starts the revenge plot, visual style, and character relationships that the second film resolves.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (159175, 159172, 10, 'DrorLeibov', 'Indiana Jones and the Last Crusade keeps the adventure, humor, treasure hunting, and Spielberg energy that make Temple of Doom fun, while adding a stronger emotional father-son story.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (159172, 159175, 9, 'DrorLeibov', 'Temple of Doom is another high-energy Indiana Jones adventure with dangerous set pieces and exotic locations, making it a good match for fans of Last Crusade.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (52, 53, 9, 'DrorLeibov', 'Project A Part II is a direct continuation of Project A, with Jackie Chan''s physical comedy, stunts, and period action style carried forward.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (53, 52, 9, 'DrorLeibov', 'Project A sets up the style and characters continued in Project A Part II, so it is a natural recommendation for someone who enjoyed the sequel.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (337166, 149287, 8, 'DrorLeibov', 'Toy Story and Hook both focus on childhood imagination, nostalgia, and adventure, so Hook is a warm family fantasy recommendation for viewers who enjoy Toy Story''s emotional tone.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (149287, 337166, 9, 'DrorLeibov', 'Toy Story is a stronger family adventure than Hook and shares the same sense of imagination, humor, and childhood wonder.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (131885, 149287, 8, 'DrorLeibov', 'The Goonies and Hook are both playful adventure stories built around kids, treasure-like quests, and a nostalgic sense of childhood fantasy.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (149287, 131885, 8, 'DrorLeibov', 'The Goonies offers the same kind of energetic, kid-centered adventure and family-friendly danger that makes Hook appealing.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (174953, 350189, 8, 'DrorLeibov', 'Nausicaa and Vampire Hunter D are both animated fantasy films with distinctive worlds, so Vampire Hunter D is reasonable for someone open to darker anime adventure.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (350189, 174953, 9, 'DrorLeibov', 'Nausicaa is a richer animated fantasy than Vampire Hunter D, with strong world-building and environmental themes that fit viewers who like serious anime.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (406158, 142491, 8, 'DrorLeibov', 'Spider-Man and Hellboy are both early-2000s comic-book films about unusual heroes balancing identity, humor, and supernatural or superhero action.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (142491, 406158, 8, 'DrorLeibov', 'Spider-Man is a mainstream superhero origin story with the same comic-book appeal and outsider-hero energy that can attract a Hellboy viewer.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (406158, 319602, 9, 'DrorLeibov', 'Spider-Man and Superman are both classic superhero origin stories centered on responsibility, romance, and a heroic figure learning how to use power.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (319602, 406158, 9, 'DrorLeibov', 'Spider-Man updates the classic superhero formula that Superman helped define, making it a strong recommendation for fans of hopeful comic-book stories.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (335835, 185628, 8, 'DrorLeibov', 'Top Gun and The Last Samurai both use Tom Cruise as a charismatic lead in stories about discipline, honor, and proving oneself within a demanding culture.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (185628, 335835, 8, 'DrorLeibov', 'Top Gun is a different genre but still fits a Tom Cruise fan because it emphasizes confidence, training, rivalry, and emotional growth through action.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (350424, 160524, 8, 'DrorLeibov', 'Vanilla Sky and Insomnia are both psychological thrillers driven by guilt, confusion, and an unstable lead character, making Insomnia a good recommendation after Vanilla Sky.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (160524, 350424, 8, 'DrorLeibov', 'Vanilla Sky is another uneasy psychological drama where the viewer has to question memory, identity, and reality, which fits the mood of Insomnia.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (326155, 177369, 9, 'DrorLeibov', 'Taxi Driver and The King of Comedy are both Scorsese-De Niro character studies about alienated men whose obsession with fame or recognition becomes disturbing.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (177369, 326155, 9, 'DrorLeibov', 'Taxi Driver is a darker companion to The King of Comedy, sharing De Niro, Scorsese, urban loneliness, and a portrait of obsessive behavior.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (131780, 164572, 8, 'DrorLeibov', 'Goodfellas and Jackie Brown both appeal to crime-film fans through sharp dialogue, criminal networks, and morally complicated characters.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (164572, 131780, 9, 'DrorLeibov', 'Goodfellas is a stronger crime classic than Jackie Brown and offers the same fascination with criminals, loyalty, betrayal, and style.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (176711, 164572, 8, 'DrorLeibov', 'Jackie Brown is a good recommendation after Kill Bill Vol. 1 because both carry Tarantino''s dialogue, genre love, and strong central female characters.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (164572, 176711, 9, 'DrorLeibov', 'Kill Bill Vol. 1 is a faster and more visually extreme Tarantino film, but it fits Jackie Brown fans who enjoy his characters, crime elements, and style.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (165961, 359297, 8, 'DrorLeibov', 'Jaws and War of the Worlds are both Spielberg thrillers about ordinary people facing a terrifying external threat that suddenly disrupts normal life.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (359297, 165961, 9, 'DrorLeibov', 'Jaws is a stronger Spielberg suspense film than War of the Worlds, but both build fear around a threat that is only partly seen at first.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (159172, 131885, 8, 'DrorLeibov', 'The Goonies and Indiana Jones and the Last Crusade share treasure-hunt adventure, humor, danger, and a fast-moving quest structure.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (131885, 159172, 9, 'DrorLeibov', 'Indiana Jones and the Last Crusade is a more polished adventure film, but it has the same excitement and puzzle-solving appeal that Goonies fans enjoy.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (235062, 326155, 8, 'DrorLeibov', 'North by Northwest and Taxi Driver are very different, but both are iconic American thrillers centered on a man caught in escalating danger and paranoia.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (406158, 383395, 3, 'DrorLeibov', 'Though both movies are superhero titles, it is a bad recommendation since Captain America is an old low-budget serial-style version that lacks Spider-Man''s modern character development and action polish.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (406158, 393012, 2, 'DrorLeibov', 'Though both are Marvel-related superhero entries, it is a weak recommendation since Iron Man 1966 is a dated television-style cartoon rather than a full modern superhero film like Spider-Man.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (381392, 383395, 3, 'DrorLeibov', 'Though both involve comic-book heroes, it is a bad recommendation since Captain America 1966 does not match Batman Beyond''s futuristic tone, stronger storytelling, or darker atmosphere.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (319602, 383395, 3, 'DrorLeibov', 'Though both are classic superhero properties, Captain America 1966 is much flatter and more dated, so it would disappoint someone expecting the sincerity and scale of Superman.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (319613, 393012, 2, 'DrorLeibov', 'Though both use well-known comic-book heroes, Iron Man 1966 is too episodic and simple compared with the cinematic superhero adventure of Superman II.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (142491, 383395, 3, 'DrorLeibov', 'Though both are superhero adaptations, Captain America 1966 lacks Hellboy''s gothic fantasy style, creature design, and modern action rhythm.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (142492, 393012, 2, 'DrorLeibov', 'Though both come from superhero/comic traditions, Iron Man 1966 feels too thin and old-fashioned compared with the imaginative fantasy world of Hellboy 2.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (337166, 170721, 2, 'DrorLeibov', 'Though both are family animation sequels or classics, it is a bad recommendation since The Jungle Book 2 feels routine and does not have Toy Story''s originality or emotional depth.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (149287, 170721, 2, 'DrorLeibov', 'Though both are family-friendly adventure films, The Jungle Book 2 is a weak follow-up recommendation because it is much less imaginative and memorable than Hook.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (131885, 170721, 2, 'DrorLeibov', 'Though both target younger audiences, The Jungle Book 2 is too safe and thin compared with the energy and adventure personality of The Goonies.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (174953, 170721, 3, 'DrorLeibov', 'Though both are animated films, The Jungle Book 2 is a poor recommendation because it lacks Nausicaa''s ambitious world-building, themes, and visual seriousness.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (350189, 170721, 3, 'DrorLeibov', 'Though both are animation, The Jungle Book 2 is a bad fit because its light children-oriented tone is far from Vampire Hunter D''s gothic anime atmosphere.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (391006, 382208, 2, 'DrorLeibov', 'Though Blansky''s Beauties is connected to the Happy Days universe, it is a bad recommendation since it failed to create interesting characters or the charm that made Happy Days popular.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (391006, 395271, 2, 'DrorLeibov', 'Though Laverne & Shirley is a Happy Days spin-off, it is only a moderate-to-bad recommendation because its workplace slapstick tone can feel repetitive for someone focused on Happy Days nostalgia.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (391006, 398232, 2, 'DrorLeibov', 'Though Mork & Mindy comes from the same sitcom era and universe, it is a risky recommendation because its alien-comedy premise is much sillier than Happy Days.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (398232, 382208, 2, 'DrorLeibov', 'Though both are 1970s sitcom-related shows, Blansky''s Beauties is a bad recommendation since it is far weaker and less distinctive than Mork & Mindy.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (395271, 382208, 2, 'DrorLeibov', 'Though both are Happy Days-era spin-offs, Blansky''s Beauties is a bad recommendation because it lacks the strong comic pairing that made Laverne & Shirley work.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130953, 370017, 3, 'DrorLeibov', 'Though both are spy/action movies with gadgets and dangerous missions, XXX is a bad Bond recommendation because it replaces elegance and intrigue with shallow extreme-sports noise.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130945, 370017, 3, 'DrorLeibov', 'Though GoldenEye and XXX both use secret-agent action, XXX is too loud and thin compared with GoldenEye''s classic espionage structure and villain conflict.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (332065, 370017, 3, 'DrorLeibov', 'Though both involve international action and spies, XXX is a bad recommendation for Thunderball fans because it lacks the Bond style, sophistication, and memorable villainy.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (335336, 370017, 2, 'DrorLeibov', 'Though both are late-1990s/early-2000s action-spy titles, XXX is a weaker recommendation because its attitude is more gimmicky than Tomorrow Never Dies.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (368418, 370017, 2, 'DrorLeibov', 'Though both are glossy spy-action films, XXX is a poor match because it has less emotional stakes and less franchise identity than The World Is Not Enough.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (372233, 370017, 3, 'DrorLeibov', 'Though both feature extravagant action plots, XXX is a bad recommendation because it lacks the iconic Bond villain-lair spectacle of You Only Live Twice.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (354178, 370017, 2, 'DrorLeibov', 'Though both are over-the-top action films, XXX is only a weak recommendation because it does not even have the campy Bond formula that makes A View to a Kill watchable.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139657, 139651, 3, 'DrorLeibov', 'Though both are Harry Potter and Chamber-related entries, it is a weak recommendation since the alternate Chamber listing adds almost nothing new for someone who wants a fresh magical story.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139650, 139651, 2, 'DrorLeibov', 'Though both refer to Chamber of Secrets, the alternate database version is a poor recommendation because it feels redundant rather than meaningfully different from the main film.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139655, 139651, 2, 'DrorLeibov', 'Though both are Harry Potter titles, the alternate Chamber version is not a good recommendation after Prisoner of Azkaban because it does not match that film''s stronger mood and direction.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139652, 139651, 2, 'DrorLeibov', 'Though both are in the Harry Potter world, the alternate Chamber version is a weak recommendation after Goblet of Fire because it is less eventful and mostly redundant.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139654, 139651, 2, 'DrorLeibov', 'Though both belong to Harry Potter, the alternate Chamber listing is a poor recommendation after Order of the Phoenix because it offers less dramatic urgency and no new direction.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139653, 139651, 3, 'DrorLeibov', 'Though both are Harry Potter entries, the alternate Chamber version is only a moderate recommendation because it is closer to duplication than a genuinely new viewing choice.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (159172, 159173, 3, 'DrorLeibov', 'Though both entries are titled Indiana Jones and the Last Crusade, it is a bad recommendation because the duplicate/alternate database entry was personally ranked much lower and may not reflect the main theatrical experience.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (159175, 159173, 2, 'DrorLeibov', 'Though both connect to Indiana Jones, the lower-rated Last Crusade entry is a weak recommendation because it appears to be an alternate/less useful database item rather than the preferred adventure film.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (159167, 159173, 2, 'DrorLeibov', 'Though both are Indiana Jones-related, the alternate Last Crusade record is not a strong recommendation because it is confusing and less satisfying than the main franchise films.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (159172, 185306, 3, 'DrorLeibov', 'Though both are adventure-adjacent titles with guns and action, The Last Gun is a bad recommendation because it lacks Indiana Jones''s humor, scale, and memorable set pieces.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (159175, 185306, 3, 'DrorLeibov', 'Though Temple of Doom and The Last Gun both suggest danger and action, The Last Gun is too small and generic for someone expecting Indiana Jones adventure.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (335835, 370017, 2, 'DrorLeibov', 'Though both are masculine action films, XXX is a weak recommendation after Top Gun because it lacks the aviation rivalry, training structure, and emotional payoff.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (335835, 324576, 2, 'DrorLeibov', 'Though both involve machines and vehicles, TankUp.US is a bad recommendation after Top Gun because it is basically promotional documentary material rather than cinematic action.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (185628, 340652, 3, 'DrorLeibov', 'Though both are historical epics with battles and honor codes, Troy is only a moderate recommendation because its mythic spectacle is less emotionally focused than The Last Samurai.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (185628, 175881, 2, 'DrorLeibov', 'Though both involve historical-war subjects, Khadzhi murat is a weak recommendation because it is too obscure and lacks The Last Samurai''s accessible epic storytelling.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (340652, 175881, 2, 'DrorLeibov', 'Though both are historical conflict films, Khadzhi murat is a poor recommendation for Troy fans because it does not provide the same scale, stars, or battle spectacle.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (326155, 134676, 2, 'DrorLeibov', 'Though both touch crime, Grounds for Murder is a weak recommendation because it is more of an early-sound curiosity than a deep psychological character study like Taxi Driver.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (131780, 134676, 2, 'DrorLeibov', 'Though both are crime-related, Grounds for Murder is a bad recommendation after Goodfellas because it lacks the modern pacing, violence, and character complexity.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (131780, 20, 3, 'DrorLeibov', 'Though both involve crime or counterfeiting, The $5,000,000 Counterfeiting Plot is a bad recommendation because it is an old short-form curiosity rather than a rich gangster story.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (164572, 20, 3, 'DrorLeibov', 'Though both include criminal schemes, The $5,000,000 Counterfeiting Plot is too primitive and slight to satisfy someone who likes Jackie Brown''s dialogue and characters.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (326155, 108, 2, 'DrorLeibov', 'Though G Men and Taxi Driver are both crime-era titles, G Men is a weak recommendation because it is more conventional law-enforcement drama than disturbing character study.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (235062, 108, 2, 'DrorLeibov', 'Though both are older thrillers/crime stories, G Men is a poor recommendation after North by Northwest because it lacks Hitchcock''s wit, suspense, and elegant chase structure.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (235062, 397121, 2, 'DrorLeibov', 'Though both suggest suspense or mystery, Matrix 1993 is a weak recommendation because it does not deliver the classic thriller craft and star-driven momentum of North by Northwest.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (342512, 399427, 3, 'DrorLeibov', 'Though both connect to anthology-style fantasy or horror, Night Gallery is only moderate because its television format and unevenness may disappoint after Twilight Zone: The Movie.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (399427, 342512, 3, 'DrorLeibov', 'Though both are anthology horror/fantasy, Twilight Zone: The Movie is a risky recommendation because its segments are uneven and not all match Night Gallery''s mood.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (350424, 397121, 2, 'DrorLeibov', 'Though both suggest reality-bending ideas, Matrix 1993 is a weak recommendation because it does not offer Vanilla Sky''s emotional psychological mystery.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (160524, 397121, 2, 'DrorLeibov', 'Though both may attract thriller viewers, Matrix 1993 is a bad recommendation because it does not match Insomnia''s grounded crime tension and moral pressure.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (176711, 159665, 3, 'DrorLeibov', 'Though both have exploitation-war or revenge energy, Inglorious Bastards 2006 is only a moderate recommendation because it lacks Kill Bill''s polish and Tarantino precision.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (176712, 159665, 3, 'DrorLeibov', 'Though both use revenge and genre violence, Inglorious Bastards 2006 is a weak recommendation because it cannot match Kill Bill Vol. 2''s character payoff.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (164572, 178994, 2, 'DrorLeibov', 'Though both are crime films, Knockaround Guys is a weak recommendation after Jackie Brown because it is less distinctive and has less sharp dialogue.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (131780, 178994, 2, 'DrorLeibov', 'Though both are gangster/crime stories, Knockaround Guys is a bad recommendation after Goodfellas because it feels much smaller and less iconic.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (177369, 397250, 2, 'DrorLeibov', 'Though both are television/comedy-adjacent titles, Me and the Chimp is a bad recommendation because it is notorious for a thin premise and lacks The King of Comedy''s satire.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (391006, 397250, 2, 'DrorLeibov', 'Though both are 1970s sitcom-era shows, Me and the Chimp is a bad recommendation because its concept is too gimmicky compared with Happy Days.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (400853, 397250, 3, 'DrorLeibov', 'Though both are family/sitcom-related television titles, Me and the Chimp is a poor recommendation because it is much thinner and less believable than Parenthood.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (400853, 390691, 3, 'DrorLeibov', 'Though both are family sitcom/dramedy material, Growing Pains is only moderate because it is more formulaic and less layered than Parenthood.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (398571, 400612, 3, 'DrorLeibov', 'Though both are late-20th-century television dramas/comedies with professional settings, Owen Marshall is only a moderate recommendation because its legal-drama style is less sharp than Murphy Brown.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (405119, 372733, 3, 'DrorLeibov', 'Though both involve Sherlock Holmes, Young Sherlock Holmes is only moderate from the 1951 Sherlock Holmes because its teenage adventure tone is very different from traditional detective mystery.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (372733, 405119, 3, 'DrorLeibov', 'Though both use Sherlock Holmes, the 1951 version is only moderate because its older television style may feel stiff after the adventure tone of Young Sherlock Holmes.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (183873, 183837, 3, 'DrorLeibov', 'Though both titles involve ladies or female warriors, Lady Warriors is a bad recommendation after Ladyhawke because it lacks the romantic fantasy charm and stronger production values.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (331529, 183837, 2, 'DrorLeibov', 'Though both involve sword/adventure elements, Lady Warriors is a weak recommendation because it is much less polished than The Three Musketeers.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (331529, 185306, 2, 'DrorLeibov', 'Though both suggest swashbuckling or weapon-based adventure, The Last Gun is a weak recommendation because it lacks the ensemble fun and period style of The Three Musketeers.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (333856, 263, 2, 'DrorLeibov', 'Though both are 1990s romance titles, ''Til There Was You is a poor recommendation after Titanic because it has none of Titanic''s epic scale or tragic emotional weight.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (333856, 151616, 3, 'DrorLeibov', 'Though both are mainstream romances, How to Lose a Guy in 10 Days is only moderate after Titanic because its light comedy tone is far from Titanic''s grand melodrama.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (151616, 263, 2, 'DrorLeibov', 'Though both are romantic comedies from the same broad era, ''Til There Was You is a weak recommendation because it is much less memorable and less sharply comic.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (644, 151616, 3, 'DrorLeibov', 'Though both are teen/romantic comedies, How to Lose a Guy in 10 Days is only moderate because it is more formulaic and less fresh than 10 Things I Hate About You.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (644, 263, 2, 'DrorLeibov', 'Though both are late-1990s romantic films, ''Til There Was You is a bad recommendation because it lacks the teen wit and energy of 10 Things I Hate About You.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (328272, 323509, 2, 'DrorLeibov', 'Though both involve travel or transportation systems, Taken for a Ride is a weak recommendation after The Terminal because it is a dry documentary rather than a warm character comedy-drama.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (328272, 134677, 2, 'DrorLeibov', 'Though both involve movement and travel, Groundspeed is a weak recommendation because its slow documentary-road style does not match The Terminal''s accessible Spielberg warmth.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (318388, 323509, 2, 'DrorLeibov', 'Though both involve American road or transportation themes, Taken for a Ride is a bad recommendation because it lacks Sugarland Express''s character-driven tension.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (318388, 134677, 2, 'DrorLeibov', 'Though both are road-related, Groundspeed is a weak recommendation after The Sugarland Express because it is far less dramatic and emotionally involving.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (179, 182, 3, 'DrorLeibov', 'Though both are ''N Sync concert programs, PopOdyssey Live is only a moderate recommendation because it repeats the concert-fan appeal without adding enough new context.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (182, 179, 3, 'DrorLeibov', 'Though both are ''N Sync live specials, Live From Madison Square Garden is only moderate because the appeal is limited mainly to fans rather than general movie viewers.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (181, 183, 3, 'DrorLeibov', 'Though both are ''N Sync television/music specials, The Atlantis Concert is only moderate because it is more promotional performance material than a strong standalone film.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (178, 180, 3, 'DrorLeibov', 'Though both are ''N Sync specials, Making the Tour is only moderate because backstage content can feel thin for viewers who are not already fans.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (180, 181, 3, 'DrorLeibov', 'Though both are ''N Sync-related, No Strings Attached is only moderate because it is more music-product content than a satisfying narrative film.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (141779, 148614, 3, 'DrorLeibov', 'Though both relate to classical music composers, Hommage a Rossini is only moderate after Hector Berlioz: Te Deum because its appeal is very narrow and specialized.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (148614, 141779, 3, 'DrorLeibov', 'Though both are classical music documentaries or performances, Hector Berlioz: Te Deum is only moderate because it mainly serves viewers already interested in that composer.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (175872, 175873, 3, 'DrorLeibov', 'Though both focus on Khachaturian, the Piano Concerto entry is only a moderate recommendation because it narrows the appeal to a specific performance rather than a fuller documentary portrait.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (175873, 175872, 3, 'DrorLeibov', 'Though both are Khachaturian-related, the documentary is only moderate after the concerto because it changes from music performance to biographical context.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (134675, 134676, 2, 'DrorLeibov', 'Though the titles both start with Grounds for, it is a bad recommendation because a light marriage comedy and an early crime film satisfy completely different interests.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (134676, 134675, 2, 'DrorLeibov', 'Though the titles are similar, Grounds for Marriage is a weak recommendation after Grounds for Murder because it shifts from crime curiosity to light romance.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (134677, 134680, 3, 'DrorLeibov', 'Though both titles begin with Group/Ground, Group is only moderate because the connection is mostly superficial and the drama is modest.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (134680, 134677, 2, 'DrorLeibov', 'Though both are small independent/European-sounding titles, Groundspeed is a weak recommendation because its slow road-film style is much less accessible.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (152856, 154847, 2, 'DrorLeibov', 'Though both are short films from around 2000-2003, I''d Rather Be in Philadelphia is a weak recommendation because the shared short-film format is not enough to guarantee similar appeal.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (154847, 152856, 2, 'DrorLeibov', 'Though both are small short films, Hungry is a poor recommendation because its minimal food/desire premise is too slight for most viewers.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (142881, 163571, 2, 'DrorLeibov', 'Though both are small friendship/coffee-themed shorts, It''s Just Coffee is a weak recommendation because the connection is too narrow and the film is not distinctive enough.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (163571, 142881, 3, 'DrorLeibov', 'Though both are simple relationship shorts, Henry and Marvin is only moderate because its charm is limited and the premise remains thin.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (320303, 157132, 2, 'DrorLeibov', 'Though both are meta or genre-adjacent shorts, An Imperfect Solution is a weak recommendation because its Re-Animator connection is too niche compared with Suspension of Disbelief.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (157132, 320303, 3, 'DrorLeibov', 'Though both are small conceptual shorts, Suspension of Disbelief is only moderate because it has a clever idea but limited execution.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (147936, 322934, 3, 'DrorLeibov', 'Though both are historical documentaries dealing with serious memory, Der Tag der Befreiung is only moderate because its anniversary focus may be less personal than A Holocaust szemei.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (322934, 147936, 3, 'DrorLeibov', 'Though both deal with historical trauma and remembrance, A Holocaust szemei is only moderate because its heavy subject matter makes it a narrow recommendation.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (157702, 147936, 3, 'DrorLeibov', 'Though both are conscience-driven documentaries, A Holocaust szemei is only moderate because the topic and tone are very different from Sister Jeannine Gramick''s journey.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (137709, 517, 2, 'DrorLeibov', 'Though both are game/anime-adjacent titles, .hack//Quarantine is a weak recommendation because it is too dependent on prior franchise knowledge compared with Halo.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (517, 137709, 2, 'DrorLeibov', 'Though both are gaming-related, Halo is a weak recommendation after .hack//Quarantine because the sci-fi action connection is broad and the formats differ.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (161705, 517, 3, 'DrorLeibov', 'Though both are anime/franchise entries, .hack//Quarantine is only moderate because it is less accessible than Inuyasha''s fantasy-adventure formula.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (517, 161705, 3, 'DrorLeibov', 'Though both are anime-related, Inuyasha is only moderate after .hack//Quarantine because it shifts from game-linked cyber fantasy to folklore action.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (139657, 149287, 8, 'DrorLeibov', 'Both are family-friendly adventure stories with a strong sense of wonder — Toy Story and Hook both treat childhood imagination as something real and worth protecting, making Hook a natural follow-up for fans of the magical Hogwarts world.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (149287, 159172, 9, 'DrorLeibov', 'Hook and Indiana Jones and the Last Crusade share a father-son emotional core wrapped inside a high-energy adventure — both films understand that the real treasure is the relationship, not the object being chased.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (235062, 130953, 8, 'DrorLeibov', 'North by Northwest and Goldfinger are both classics of the spy-thriller genre built around a charming hero outrunning dangerous adversaries with wit and confidence — Cary Grant and Sean Connery define the same archetype a decade apart.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (333856, 159172, 8, 'DrorLeibov', 'Titanic and Indiana Jones and the Last Crusade are both epic adventures where the emotional stakes — love and family — matter more than the physical danger, and both films earn their climaxes through genuine feeling rather than spectacle alone.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (337166, 393012, 2, 'DrorLeibov', 'Though both are family-friendly titles, Iron Man 1966 is a poor recommendation after Toy Story because its dated animation and episodic television format cannot match the emotional depth and visual invention Pixar achieved.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (176711, 383395, 2, 'DrorLeibov', 'Though both involve combat and costumed heroes, Captain America 1966 is a bad recommendation after Kill Bill Vol. 1 because it lacks any of the choreographic craft, visual style, or narrative tension that makes Tarantino exciting.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (131780, 397121, 2, 'DrorLeibov', 'Though both involve crime and danger, Matrix 1993 is a poor recommendation after Goodfellas because it has none of the authentic world-building, dark energy, or performance depth that makes Scorsese compelling.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (326155, 170721, 2, 'DrorLeibov', 'Though both were produced within decades of each other, The Jungle Book 2 is a bad recommendation after Taxi Driver because its lightweight animated tone has nothing in common with Scorsese and De Niro exploring urban alienation and violence.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (165961, 96593, 9, 'ofirgelbart74', 'Both build tension so slowly you almost forget you''re scared until the moment hits — Jaws makes you terrified of water, E.T. makes you cry at a bicycle scene. Spielberg in both films is obsessed with ordinary people feeling something enormous, and both...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (96593, 65811, 9, 'ofirgelbart74', 'Close Encounters is the grown-up version of E.T. — same idea of humans connecting with aliens through feeling rather than words, same sense of wonder when the light appears. If E.T. made you feel like a kid, Close Encounters makes you feel like an adul...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (289109, 290070, 10, 'ofirgelbart74', 'Both are about one person trying to save lives inside a system designed to destroy them. Ryan''s Miller keeps his men together, Schindler keeps his workers alive — both films end with the survivors standing at a grave and you understand the full weight ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (290070, 289109, 10, 'ofirgelbart74', 'Saving Private Ryan asks the same question Schindler''s List does: what is one life worth inside a war? The Omaha Beach opening is brutal in the same way the Krakow ghetto liquidation is brutal — Spielberg refuses to let you look away, and both films ar...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (271095, 159172, 10, 'ofirgelbart74', 'Last Crusade adds Sean Connery as Indy''s father and suddenly the adventure means something personal — the motorcycle chase and the tank battle are great but the moment Henry Sr. says ''I''ve lost him so many times'' is what makes the film unforgettable. R...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (159172, 271095, 10, 'ofirgelbart74', 'Raiders is where it all started — the boulder, Marion, the melting face at the end. Indiana Jones is the most fun hero cinema has ever produced, and Raiders is the film where every idea is fresh and every set piece feels like the first of its kind.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (159172, 159175, 8, 'ofirgelbart74', 'Temple of Doom is darker and stranger than the other Indiana Jones films — the mine cart chase is one of the most exciting sequences in the series and the villain pulling out a heart is genuinely disturbing. A different tone from Crusade but just as co...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (271095, 256632, 8, 'ofirgelbart74', 'Jack Sparrow is the closest cinema got to creating another Indiana Jones — a hero who seems incompetent and is actually brilliant, and who makes every scene more fun just by being in it. Both films feel like pure adventure that trusts its audience to k...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (165961, 259826, 8, 'ofirgelbart74', 'Both are Spielberg productions about a normal family destroyed by a threat they can''t fully see — in Jaws it''s a shark, in Poltergeist it''s whatever is in the television. Both films are scariest in the moments before the monster appears, and both under...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (214755, 61751, 9, 'ofirgelbart74', 'Both are sci-fi films set in futures that feel completely plausible — Minority Report asks what happens when the government punishes you for something you haven''t done yet, Children of Men asks what happens when humanity loses the ability to have child...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (131780, 82967, 9, 'ofirgelbart74', 'The Departed is Goodfellas'' spiritual follow-up — same world of men who can''t leave the life they chose, same Scorsese energy of violence arriving without warning. But where Goodfellas is about loving the lifestyle until it destroys you, The Departed i...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (82967, 131780, 9, 'ofirgelbart74', 'Goodfellas invented the way The Departed sees the world — the camera moves like it''s excited to be there, the music choices are perfect, and the violence always arrives as a shock even when you saw it coming. Henry Hill''s rise and fall is still the bes...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (326155, 270971, 10, 'ofirgelbart74', 'Travis Bickle and Jake La Motta are the same person in different bodies — both are men who can''t stop hurting themselves and everyone around them, both are played by De Niro at his most terrifyingly committed. Watching both back to back feels like a co...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (270971, 131780, 9, 'ofirgelbart74', 'Raging Bull is Scorsese at his most intense and personal — the boxing sequences are filmed like nothing else in cinema, and De Niro''s Jake LaMotta is a man who destroys everything he touches including himself. Goodfellas is the more entertaining compan...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (56304, 131780, 9, 'ofirgelbart74', 'Casino is Goodfellas set in Las Vegas — same voice-over narration explaining how the criminal world works, same arc of a man who has everything and loses it all. Sharon Stone''s performance as Ginger is the best thing in the film and one of the most tra...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (141544, 182955, 9, 'ofirgelbart74', 'Both are crime films about Los Angeles where the cops and criminals are barely different from each other. Heat has the most famous coffee scene in movie history — De Niro and Pacino finally sharing a screen — and L.A. Confidential has a mystery that ke...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (182955, 62076, 9, 'ofirgelbart74', 'Chinatown is the film L.A. Confidential was clearly inspired by — both are LA noir stories where the hero discovers that the corruption goes all the way to the top, and both end with the audience feeling sick because the good guys couldn''t win. Chinato...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130128, 130129, 9, 'ofirgelbart74', 'Part II is the rare sequel that equals the original — it tells two stories at once, cutting between young Vito building his empire and Michael destroying his soul, and by the end you understand that becoming powerful cost Michael everything that made h...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130129, 130128, 9, 'ofirgelbart74', 'After watching Part II you need to go back to the original and watch Michael at the wedding — the man who says ''I''m not like my father'' at the beginning and becomes his father by the end. Brando''s Don Vito is even more heartbreaking when you know what ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (291698, 112290, 9, 'ofirgelbart74', 'Both are Fincher films where the twist at the end recontextualizes everything you watched, and both have Brad Pitt playing a character who seems cool until you realize what he actually represents. Se7en ends in despair, Fight Club ends in chaos — both ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (112290, 291698, 9, 'ofirgelbart74', 'Se7en has the same Fincher feeling as Fight Club — a world that looks dirty and wrong before anything bad happens, and a villain who is smarter than the protagonist and planned everything. ''What''s in the box'' is one of the most gut-punch endings in cin...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (123435, 291698, 8, 'ofirgelbart74', 'Both are Fincher films where you never know who to trust and the ground keeps shifting under your feet. The Game is less brutal than Se7en but equally controlled — every scene feels like it was planned by someone smarter than you, and the reveal comple...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (112290, 210511, 8, 'ofirgelbart74', 'Both are films where the main character is lying to himself without knowing it — Fight Club through dissociation, Memento through memory loss. Both make you rewatch the entire film mentally the moment the twist lands, and both use that twist to say som...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (267038, 276217, 9, 'ofirgelbart74', 'Reservoir Dogs is Pulp Fiction''s leaner, meaner sibling — same Tarantino obsession with criminals talking about everything except the crime, same ability to make dialogue feel more tense than any action sequence. The ear scene is more disturbing than a...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (276217, 267038, 9, 'ofirgelbart74', 'Pulp Fiction takes everything Reservoir Dogs figured out and expands it into something bigger and stranger — three stories that connect in unexpected ways, and characters who feel like real people even though they''re clearly movie characters. Jules dec...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (176711, 176712, 9, 'ofirgelbart74', 'Vol 2 is the emotional half of what Vol 1 set up physically — the Crazy 88 fight is spectacular but the real payoff is the final conversation between the Bride and Bill, where David Carradine talks about Superman and you understand the whole film in a ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (176712, 176711, 8, 'ofirgelbart74', 'Vol 1 is pure action filmmaking at its most inventive — the Crazy 88 sequence is choreographed like a dance and filmed like a painting, and the chapter structure means each section has its own visual grammar. If Vol 2 was the feeling, Vol 1 was the fir...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (164572, 267038, 8, 'ofirgelbart74', 'Jackie Brown is Tarantino''s most underrated film — Pam Grier plays a woman who outsmarts everyone around her through patience and intelligence, not violence. It''s slower than Pulp Fiction but the triple-perspective shopping mall sequence is one of the ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (267038, 176711, 9, 'ofirgelbart74', 'Kill Bill has the same Tarantino DNA as Pulp Fiction — every chapter feels like its own film, the music choices are perfect and unexpected, and the lead character is the most compelling person in every scene. Both films prove that Tarantino''s real subj...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (10830, 10920, 9, 'ofirgelbart74', 'Cameron took Ridley Scott''s haunted house in space and turned it into a war movie — Aliens is louder, faster and more action-driven than Alien but just as terrifying when it needs to be. Ripley becomes even more heroic in the sequel because she now has...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (10920, 328277, 9, 'ofirgelbart74', 'Both are Cameron action films where a woman and a child are at the emotional center — Ripley and Newt, Sarah and John — and both have a villain that cannot be stopped by conventional means. The freeway chase in T2 and the final Alien queen fight are tw...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (328285, 328277, 9, 'ofirgelbart74', 'T2 takes everything the original built and makes it bigger in every way — the T-1000 is more threatening than the T-800, the stakes are global instead of personal, and the ending is genuinely emotional in a way you don''t expect from a film about killer...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (328277, 328285, 8, 'ofirgelbart74', 'The original Terminator is a lean, relentless chase film — no budget but total commitment, and Schwarzenegger before anyone knew who he was playing a machine with perfect physical menace. The scene where he repairs his own eye in a mirror while looking...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (40199, 1711, 9, 'ofirgelbart74', 'Both ask whether an artificial being can have a real inner life — HAL asks ''will you disconnect me?'' and Roy Batty delivers the ''tears in rain'' speech, and both are unbearably sad because the answer seems to be yes, they can feel, and it doesn''t matter...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (1711, 207992, 9, 'ofirgelbart74', 'Both are sci-fi films that use their genre to ask genuinely big philosophical questions — 2001 asks whether we are alone in the universe and what comes after humanity, The Matrix asks whether the world we experience is even real. Both are visually unli...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (65764, 121538, 8, 'ofirgelbart74', 'Both are Kubrick films about what happens when a system tries to turn a human being into a machine — Alex is conditioned not to feel, the marines are drilled until they stop thinking. Both films ask whether the cure is worse than the disease and both r...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (121538, 18960, 9, 'ofirgelbart74', 'Both are Vietnam War films that understand the war was a psychological catastrophe more than a military one — Full Metal Jacket shows you how soldiers are made, Apocalypse Now shows you what they become. Together they tell the complete story of what th...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (92616, 65764, 8, 'ofirgelbart74', 'Both are Kubrick dark comedies where the joke is that the systems meant to protect us are the most dangerous things in the world — nuclear deterrence in Strangelove, rehabilitation in Clockwork. Peter Sellers playing three roles and Malcolm McDowell''s ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (299073, 301540, 9, 'ofirgelbart74', 'Both are horror films where the villain is the smartest person in the room — Jack Torrance and Hannibal Lecter are both men who use intelligence as a weapon and both actors (Nicholson and Hopkins) build the dread through quiet moments before the explos...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30959, 210511, 9, 'ofirgelbart74', 'Memento is what Nolan can do when there are no budget constraints on his ideas — the reverse chronology puts you inside Leonard''s amnesia so completely that you feel his frustration and fear. Batman Begins applies the same commitment to psychology to a...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (210511, 30959, 8, 'ofirgelbart74', 'Batman Begins was the first superhero film that asked what fear actually does to a person — Bruce Wayne''s training montage is less about becoming powerful and more about facing the terror that has controlled him since childhood. Same Nolan obsession as...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (160524, 210511, 8, 'ofirgelbart74', 'Insomnia is an underrated Nolan film — Pacino plays a detective who hasn''t slept in days and can''t tell anymore what he actually did versus what he wishes he had done. The midnight sun Alaska setting makes reality feel unstable in the same way that Leo...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130953, 120574, 8, 'ofirgelbart74', 'From Russia with Love is the Bond film that feels most like a real spy thriller — Robert Shaw''s assassin is genuinely menacing and the train compartment fight is brutal in a way the later Bond films avoid. If Goldfinger made you love the formula, From ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (120574, 130953, 9, 'ofirgelbart74', 'Goldfinger is the Bond film where the formula fully clicks into place — a villain whose plan makes a kind of megalomaniacal sense, a henchman (Oddjob) with an unforgettable gimmick, and ''I expect you to die'' as one of cinema''s great villain lines. Ever...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (92573, 120574, 8, 'ofirgelbart74', 'From Russia with Love improved on everything Dr. No established — the villain is smarter, the action is more physical, and the chess-game opening tells you immediately that this is a film about intelligence rather than just gadgets. The train fight bet...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (312170, 130953, 8, 'ofirgelbart74', 'Both are Bond films where the pieces all fit perfectly — a villain with a real plan, a henchman who steals every scene (Jaws in Spy, Oddjob in Goldfinger), and a Bond who is charming and dangerous in equal measure. The Spy Who Loved Me is the best Moor...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (313459, 313478, 10, 'ofirgelbart74', 'Empire Strikes Back is the best Star Wars film because it takes everything the first film set up and makes it darker and more complex — Han and Leia''s relationship becomes real, Luke discovers he''s been wrong about everything, and Vader''s reveal is one...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (313478, 313479, 9, 'ofirgelbart74', 'Return of the Jedi pays off everything Empire set up — the moment Vader throws the Emperor to save Luke is the emotional climax of the entire trilogy, and it works because Empire spent two hours establishing exactly how much Luke''s love for his father ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (313479, 313459, 9, 'ofirgelbart74', 'Going back to Star Wars after finishing Jedi lets you see how perfectly everything was planted — every character introduced in the first film had a specific role to play in the final battle, and Han Solo''s ''I know'' reply to Leia''s ''I love you'' in Empir...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (194497, 194502, 10, 'ofirgelbart74', 'Two Towers is where the stakes become real — Helm''s Deep is the most sustained siege sequence ever filmed, and Gollum''s arrival as a fully realized CGI character who feels like an actual person changes the entire emotional register of the story. The su...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (194502, 194500, 10, 'ofirgelbart74', 'Return of the King earns every single one of its emotional payoffs — the beacons of Gondor lighting up one by one doesn''t need a word of dialogue to make you feel the full weight of the moment because twelve hours of story built toward it. The ''I can''t...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (194500, 194497, 9, 'ofirgelbart74', 'Going back to Fellowship after King changes how you hear Howard Shore''s Shire theme — it sounds like home but now you know what it costs to get back there. The fellowship forming around the campfire is a completely different experience when you know wh...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (280270, 280281, 8, 'ofirgelbart74', 'Rocky II makes the stakes higher by making the victory more personal — Rocky doesn''t just want to prove he can go the distance, he wants to win for Adrian who is in a coma. The cut between her waking up and saying ''win'' and Rocky getting up to fight is...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (280281, 280270, 9, 'ofirgelbart74', 'Rocky''s ending is better than Rocky II''s because Rocky loses — he just wanted to go the distance with the heavyweight champion and he did it, and that''s enough. Stallone''s screenplay understood that the victory Rocky needed was emotional not athletic, ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (280270, 129185, 8, 'ofirgelbart74', 'Both are films about men who fight in arenas to reclaim something that was taken from them — Rocky fights to prove he''s not a nobody, Maximus fights to avenge his family. Both are fundamentally about dignity rather than victory, and both have training ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (337166, 294028, 9, 'ofirgelbart74', 'Both animated films take their child protagonists completely seriously — Woody''s fear of being replaced and Chihiro''s fear of losing her parents are real emotional stakes treated with the same respect a live-action drama would give them. Both films are...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (294028, 218219, 9, 'ofirgelbart74', 'Princess Mononoke is Miyazaki''s more complex and darker companion to Spirited Away — there are no clear villains because Lady Eboshi is right about the humans and the forest god is right about the trees, and the film has the courage to refuse a simple ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (218219, 294028, 9, 'ofirgelbart74', 'Spirited Away is Miyazaki''s most complete film — Chihiro earns her way back home through work and loyalty, not magic, and the film is full of visual ideas so inventive that you pause to look at the backgrounds. The bathhouse is one of cinema''s great in...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (70959, 97727, 8, 'ofirgelbart74', 'Both are Tim Burton films about a gentle outsider who doesn''t fit into the normal world — Edward''s scissor hands make him dangerous despite his kindness, and the Corpse Bride loves a man who can''t love her back. Both films find more warmth in the world...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (297838, 130128, 9, 'ofirgelbart74', 'Both are films about institutions that have their own rules, their own loyalty, and their own justice — the prison and the Corleone family operate by the same internal logic. Morgan Freeman''s Red and Marlon Brando''s Don Vito both lead through earned re...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (297838, 117874, 9, 'ofirgelbart74', 'Both are 1994 films about a person who keeps their humanity and decency despite a world that tries to take it away — Andy Dufresne survives twenty years in prison and still has hope, Forrest moves through Vietnam and tragedy and still has love. Freeman...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (301540, 291698, 9, 'ofirgelbart74', 'Both are about detectives who have to think like the killer to catch him — Clarice studying Lecter and Mills and Somerset piecing together John Doe''s worldview. Both films understand that the real danger isn''t physical but psychological: the killer is ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (109093, 37178, 8, 'ofirgelbart74', 'Both are Coen Brothers films that find comedy and tragedy in the gap between how simple a situation should be and how complicated people make it — Marge investigates a murder that was caused by pure stupidity, and The Dude gets caught in a kidnapping p...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (129185, 46169, 9, 'ofirgelbart74', 'Both are epic films about a warrior whose family is murdered and who fights not for glory but for justice — Maximus and William Wallace are both men who would rather go home but can''t, and both films build to a death that feels like victory. Braveheart...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (46169, 129185, 9, 'ofirgelbart74', 'Gladiator takes Braveheart''s wounded-hero formula and puts it in ancient Rome — both films work because the hero''s motivation is personal before it is political, and both end with the hero''s death feeling like the only ending that could honor everythin...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (18960, 289109, 9, 'ofirgelbart74', 'Both are war films that believe violence is not heroic — Apocalypse Now shows a mission that becomes a journey into madness, Saving Private Ryan shows a beach landing so brutal and chaotic that heroism becomes meaningless. Together they form the two gr...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (39551, 289109, 8, 'ofirgelbart74', 'Both are war films that put you in the middle of a battle and refuse to let you find a safe distance — the chaos of Mogadishu and the chaos of Omaha Beach feel equally unpredictable and equally terrifying. Neither film lets you feel good about what you...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (340901, 112290, 8, 'ofirgelbart74', 'Both are films about men who discover their entire life was manufactured for someone else''s benefit — Truman''s life is a TV show, the narrator''s life is a consumerist fantasy. The Truman Show is the gentler, more hopeful version and Fight Club is the v...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (333856, 280270, 8, 'ofirgelbart74', 'Both are films about someone who doesn''t belong in a situation finding unexpected dignity and love inside it — Jack doesn''t belong in first class and Rocky doesn''t belong in a championship fight, and both films end with the protagonist having given eve...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30955, 30959, 9, 'ofirgelbart74', 'Batman Begins is the definitive version of the character but Burton''s 1989 Batman created the template — Nicholson''s Joker is genuinely dangerous in a way the franchise rarely matched, and the Expressionist Gotham City that Burton and production design...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (311037, 311038, 8, 'ofirgelbart74', 'Spider-Man 2 is one of the best superhero sequels ever made — the train sequence where the passengers see Peter''s face and decide to protect him is the most emotionally resonant moment in Raimi''s trilogy, and Molina''s Doctor Octopus is a villain with r...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (297838, 291698, 9, 'ofirgelbart74', 'Both are Morgan Freeman films about whether hope survives a world designed to destroy it — Shawshank says yes and Se7en says no, and both answers feel earned. Freeman plays the moral center of both films and ''I hope'' from Shawshank and ''Ernest Hemingwa...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (117874, 340901, 8, 'ofirgelbart74', 'Both films put an innocent man inside a world he doesn''t fully understand and the audience watches knowing more than he does — Forrest doesn''t understand the history happening around him, Truman doesn''t know his life is a TV show. Both Hanks and Carrey...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (37178, 109093, 8, 'ofirgelbart74', 'Both are Coen Brothers films where the most competent person in the room refuses to take any of it too seriously — Marge Gunderson investigates murders while pregnant and never loses her Minnesota cheerfulness, and The Dude gets tangled in a kidnapping...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (200521, 267038, 8, 'ofirgelbart74', 'Both are ensemble films that follow multiple characters whose stories connect in unexpected ways — Magnolia is more emotionally raw and ends with a literal act of God, Pulp Fiction is more playful and ends with a man deciding to change his life. Both p...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (61751, 40199, 8, 'ofirgelbart74', 'Both are sci-fi films set in futures that have already given up on the future — Blade Runner''s replicants are hunted for wanting to live longer, Children of Men''s humans have forgotten why life matters at all. Both are visually extraordinary and both u...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (13789, 340901, 8, 'ofirgelbart74', 'Both are late-90s films about suburban men who realize their comfortable lives are actually prisons — Lester Burnham decides to stop pretending, Truman Burbank decides to walk through the door. Both are funny and sad at the same time, and both end with...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (238072, 62076, 8, 'ofirgelbart74', 'Both are films where the audience is being fooled along with the characters — Ocean''s Eleven makes that fun, Chinatown makes it devastating. Both films are ultimately about the pleasure and pain of discovering that what you thought was happening was no...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30959, 30952, 1, 'ofirgelbart74', 'Batman & Robin is the opposite of everything Begins tried to do — instead of a hero defined by fear and psychology, you get ice puns and rubber nipples. Schwarzenegger''s Mr. Freeze delivers his lines like he''s reading from a frozen pun dictionary and t...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30955, 30952, 1, 'ofirgelbart74', 'Burton''s Batman had a real vision — Nicholson''s Joker was genuinely dangerous, the Gotham City set was operatic and dark. Batman & Robin replaced all of that with neon and camp that isn''t even fun camp, it''s just loud. The same franchise but made by pe...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30955, 30965, 2, 'ofirgelbart74', 'Batman Forever is a step down from Burton''s films — Jim Carrey and Tommy Lee Jones play their villains in completely incompatible registers and compete for attention rather than building tension together. The film is watchable but the darkness that mad...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30959, 30965, 2, 'ofirgelbart74', 'Both are Batman films but the similarities end at the title — Begins is about a broken man rebuilding himself, Forever is about which villain can shout the loudest. Fans who responded to Begins because it finally treated Bruce Wayne as a real person wi...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (301540, 30952, 1, 'ofirgelbart74', 'Both have theatrical villains in elaborate costumes, but Lecter''s menace comes from total stillness and intelligence — he terrifies Clarice while locked in a cage and never raises his voice. Batman & Robin''s villains announce their presence every thirt...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (313459, 313474, 2, 'ofirgelbart74', 'Episode I is in the same universe but has none of the human warmth that made Star Wars work — instead of Han Solo and his charisma you get trade federation negotiations and Jar Jar Binks, and instead of an adventure that starts at full speed you get a ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (313459, 313476, 2, 'ofirgelbart74', 'Episode II''s Anakin and Padme romance is the most unconvincing love story in the franchise — ''I don''t like sand'' has become famous as an example of bad screenwriting, and the chemistry that made Han and Leia''s dynamic electric is completely absent. The...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (313478, 313474, 2, 'ofirgelbart74', 'Empire is built on character relationships that feel completely real — Luke''s self-doubt, Han''s love for Leia he won''t admit to, Vader''s terrifying certainty. Episode I has trade negotiations and a little boy who says ''yippee.'' Fans of Empire''s psychol...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (313479, 313474, 3, 'ofirgelbart74', 'Jedi''s emotional core is Vader choosing his son over the Emperor — a moment of pure feeling that the original trilogy built toward for three films. Episode I explains Anakin''s midichlorian count instead, which reduces the Force mythology from something...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (313477, 313476, 2, 'ofirgelbart74', 'Episode III earns its tragedy — Order 66 and ''You were the Chosen One'' hit hard because McGregor and Christensen commit fully to the scene. Episode II does not earn anything comparable: the romance is unconvincing, the Geonosis battle is action without...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (313477, 313474, 3, 'ofirgelbart74', 'Episode III''s ''Hello there'' moment and the Mustafar fight are the prequel trilogy at its best — genuinely cinematic and emotionally devastating. Episode I''s pod race is technically impressive but belongs to a completely different, lighter film. The tra...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (313479, 313476, 2, 'ofirgelbart74', 'Jedi''s Vader redemption works because the original trilogy earned it — we watched Luke refuse to give up on his father for three films. Episode II gives Anakin a romance that doesn''t convince anyone and a sand speech that became a meme. The two films a...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (207992, 207991, 2, 'ofirgelbart74', 'Revolutions resolves The Matrix''s philosophical questions with Neo flying into a golden light, which is the opposite of the first film''s intellectual precision — The Matrix asked whether reality was real and built a complete system to answer it; Revolu...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (207992, 207989, 3, 'ofirgelbart74', 'Reloaded''s Architect scene is fifteen minutes of a man in a chair explaining that the entire first film was less interesting than we thought — and no freeway chase, however spectacular, compensates for a film that makes its audience feel less intellige...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (10830, 10945, 2, 'ofirgelbart74', 'Alien 3 kills Newt and Hicks in the opening credits — two characters Aliens spent two hours making you care about — and then asks you to invest in a prison planet full of characters introduced minutes before they die. The film has interesting ideas but...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (10920, 10945, 2, 'ofirgelbart74', 'The entire emotional achievement of Aliens was Ripley becoming a surrogate mother to Newt and surviving together — Alien 3 erases that in the first sixty seconds. It is not a bold artistic choice, it is a deliberate destruction of everything the previo...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (280270, 280305, 2, 'ofirgelbart74', 'Rocky V ends with a street fight instead of a boxing match, which misunderstands everything the franchise built — the arena is where Rocky proves himself, not an alley in Philadelphia. The film also wastes the potential of Rocky losing his fortune by t...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (280281, 280305, 2, 'ofirgelbart74', 'Rocky II''s hospital sequence and the championship fight are the series at its most emotionally effective — Rocky V has neither the emotional clarity nor the arena spectacle, and the surrogate-son storyline with Tommy Gunn generates no investment. The f...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (280282, 280305, 2, 'ofirgelbart74', 'Rocky III has Mr. T as Clubber Lang and the Eye of the Tiger montage — it is pure entertainment that knows exactly what it is doing. Rocky V has a street fight finale and a villain with no menace, and the energy that made III so enjoyable is completely...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (311037, 311040, 2, 'ofirgelbart74', 'Spider-Man 3 has three villains, a dancing Peter Parker sequence, and enough plot for four films — none of which gets the space it needs to work. The original Raimi film earned its emotional moments through focus and simplicity; Spider-Man 3 mistakes m...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (311038, 311040, 2, 'ofirgelbart74', 'Spider-Man 2 is close to perfect — one villain, one theme (responsibility vs happiness), and the train sequence as its emotional peak. Spider-Man 3 is a textbook example of franchise overcrowding: Venom, Sandman and the new Goblin each deserved their o...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (188507, 188510, 2, 'ofirgelbart74', 'Lethal Weapon 3 feels like it was made from a checklist — Riggs and Murtaugh have their banter, there''s a big action sequence, Leo Getz shows up. But the original film worked because Riggs was genuinely suicidal and the partnership meant something real...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (188507, 188511, 2, 'ofirgelbart74', 'The fourth Lethal Weapon film coasts entirely on goodwill — Jet Li is an excellent addition as a genuinely threatening villain, but the film has completely abandoned the emotional rawness that made the original work. Riggs''s suicidal darkness is gone, ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (188509, 188511, 2, 'ofirgelbart74', 'Lethal Weapon 2''s diplomatic immunity villain gave the franchise a genuine moral argument and real stakes — people Riggs loved died and the villain couldn''t be touched by the law. LW4 has Jet Li and a lot of noise but no equivalent emotional weight, an...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (300229, 300230, 3, 'ofirgelbart74', 'Shrek 2 is technically more polished and has Puss in Boots as a great new character, but it replaces the first film''s genuine emotional core with pop culture references that date immediately. The original Shrek worked because it was sincerely about out...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (337166, 300230, 3, 'ofirgelbart74', 'Both are animated films that work for adults as well as children, but for different reasons — Toy Story works because Woody''s fear of abandonment is a real psychological experience treated with complete honesty, while Shrek 2 works because the pop cult...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (210739, 365498, 1, 'ofirgelbart74', 'Wild Wild West is Men in Black with all the charm removed — same Will Smith, same buddy-comedy formula, but the CGI mechanical spider finale makes no sense and the jokes land with a thud every time. Barry Sonnenfeld directed both films, which makes the...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (210739, 370017, 2, 'ofirgelbart74', 'Both are action films with a cool outsider protagonist who operates outside the rules, but XXX mistakes attitude for personality — Vin Diesel scowls at everyone and survives an avalanche and the film seems to think that is enough characterization. Men ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (220276, 129439, 1, 'ofirgelbart74', 'Both are 2001 films centered on a female singer and her music, but Moulin Rouge is a film made by someone who loves cinema and Glitter is a film made for a contract. Luhrmann''s visual energy and Nicole Kidman''s performance give Moulin Rouge genuine emo...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (333856, 129439, 1, 'ofirgelbart74', 'Both are films built around a female star aiming for a massive audience, but Titanic works because Cameron made every technical and emotional decision in service of Jack and Rose''s relationship. Glitter has no equivalent emotional commitment — the scre...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (117874, 129439, 1, 'ofirgelbart74', 'Both use music as an emotional component of the story but Forrest Gump''s soundtrack is the texture of a life lived through American history, while Glitter''s music is the entire film''s reason for existing. Hanks''s performance creates a person; Glitter''s...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (182955, 127627, 1, 'ofirgelbart74', 'Both are LA crime films with major stars, but Gigli has no scene that functions as intended — the Lopez-Affleck chemistry doesn''t exist, the gangster threat generates no tension, and the film seems confused about what kind of movie it is trying to be. ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (267038, 127627, 1, 'ofirgelbart74', 'Both are crime films where the conversations are the point — but Tarantino''s dialogue always advances character or tension or both, while Gigli''s conversations go nowhere and mean nothing. Every great Pulp Fiction scene could be described in one senten...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (131780, 127627, 1, 'ofirgelbart74', 'Both are crime films about professional criminals, but Goodfellas makes you feel the excitement of that world before showing you the cost, while Gigli makes you feel nothing at all. Every supporting character in Goodfellas is memorable; every supportin...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (141544, 127627, 1, 'ofirgelbart74', 'Both are LA crime films with two A-list stars in the same scenes — but the De Niro/Pacino coffee scene achieves genuine tension through two actors actually listening to each other, while Gigli''s Affleck/Lopez dynamic never generates any tension at all....', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (176711, 219541, 1, 'ofirgelbart74', 'Both feature martial arts combat with multiple enemies, but Mortal Kombat Annihilation''s fight choreography is incoherent and the CGI creatures belong to a different, worse film. Kill Bill''s Crazy 88 sequence is meticulously designed so you always know...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (129185, 219541, 1, 'ofirgelbart74', 'Both are films built around arena combat, but Gladiator makes you feel the weight and consequence of every fight — Maximus is fighting for his dead family and you never forget it. Mortal Kombat Annihilation has fighters who exist to fill a screen and v...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (207992, 219541, 1, 'ofirgelbart74', 'Both feature stylized martial arts in a fantasy universe with multiple character types and abilities, but The Matrix built its action around a philosophical premise that made every fight feel meaningful. Mortal Kombat Annihilation has no philosophical ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (301540, 57064, 1, 'ofirgelbart74', 'Both feature a strong female protagonist in a genre film, but Catwoman''s screenplay has a villain whose plan involves cosmetics and no scene that makes logical sense. Clarice Starling is one of cinema''s great protagonists because she is written as a co...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30959, 57064, 1, 'ofirgelbart74', 'Both are DC superhero films but Catwoman was released the year before Begins and seems to belong to a different decade — no coherent origin story, no intelligible villain motivation, and no visual identity. Fans of Begins who believe superhero films sh...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (30955, 57064, 2, 'ofirgelbart74', 'Pfeiffer''s Catwoman in Batman Returns is one of the great villain performances in superhero cinema — dangerous, funny and genuinely unhinged. Berry''s Catwoman shares the name and nothing else: no menace, no humor, no characterization that suggests anyo...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (319602, 57064, 1, 'ofirgelbart74', 'Both are DC films built around a star performance, but Christopher Reeve invented Superman''s entire emotional grammar — the Clark Kent clumsiness, the moral certainty, the genuine warmth. Catwoman has no equivalent performance craft: Berry is game but ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (10920, 151052, 1, 'ofirgelbart74', 'Both are action-horror films about shooting waves of creatures, but House of the Dead inserts actual footage from the Sega video game into its fight sequences — a decision that makes the film incomprehensible as cinema. Cameron''s Aliens builds spatial ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (10830, 151052, 1, 'ofirgelbart74', 'Alien is built entirely on dread — you are afraid before you see the creature and terrified after because Ridley Scott controls every piece of information you receive. House of the Dead gives you everything immediately and achieves nothing. Fans of Ali...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (165961, 73574, 2, 'ofirgelbart74', 'Both are creature attack films, but Jaws spends an entire act building its characters before the shark becomes a real threat — you are scared because you care about Brody, Quint and Hooper, not because of the shark. Critters 3 has no equivalent charact...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (289109, 151052, 1, 'ofirgelbart74', 'Both feature large-scale combat sequences, but Saving Private Ryan makes violence feel physically and morally real — you know where everyone is and what each death costs. House of the Dead makes violence feel like a video game because it literally inse...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (313459, 31274, 1, 'ofirgelbart74', 'Both are sci-fi films about humans fighting alien oppressors, but Battlefield Earth tilts every camera angle for no reason, has a screenplay with no internal logic, and feels like a vanity project for John Travolta''s alien villain character. Star Wars''...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (207992, 31274, 1, 'ofirgelbart74', 'Both are films about humans living under alien/machine control and eventually fighting back, but Battlefield Earth invests all its energy into Dutch-angled shots of John Travolta in dreadlocks delivering lines that make no sense. The Matrix uses its pr...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (129185, 31274, 1, 'ofirgelbart74', 'Both are epic action films released in 2000 about a hero fighting an oppressive regime, but the comparison ends there — Gladiator earned its emotion through a performance from Russell Crowe that made you believe completely, and Battlefield Earth earned...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (271095, 31274, 1, 'ofirgelbart74', 'Both are adventure films about heroes fighting superior forces, but Battlefield Earth has no scene comparable to any single scene in Raiders — no boulder, no melting face, no ''I''m making this up as I go.'' Raiders is cinema at its most confidently enter...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (46169, 31274, 1, 'ofirgelbart74', 'Both are films about a people rising up against alien oppressors, but Braveheart''s William Wallace is a real human being whose love for his murdered wife motivates every scene. Battlefield Earth''s hero is a vehicle for Travolta''s villain to be menacing...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (40199, 31274, 1, 'ofirgelbart74', 'Both are dystopian sci-fi films about humans in a world controlled by another species, but Blade Runner uses that premise to ask one of cinema''s most beautiful questions about what makes life worth living. Battlefield Earth uses the same premise to giv...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (194497, 31274, 1, 'ofirgelbart74', 'Both are long fantasy/sci-fi films about a small group fighting a powerful evil, but Fellowship builds its world and its characters with such care that every scene adds to your understanding of both. Battlefield Earth has no functioning scene — the wor...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130128, 31274, 1, 'ofirgelbart74', 'Both are long films about power structures and those who challenge them, but The Godfather earns every one of its three hours with scenes that are studied in film schools decades later. Battlefield Earth earned a Razzie for Worst Picture of the Decade....', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130953, 86263, 2, 'ofirgelbart74', 'Die Another Day is the Bond film that broke the formula — the invisible Aston Martin and the CGI surfboard sequence have not aged at all, and the film feels like it was made by people who loved the idea of Bond films but had no instinct for what made t...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (312170, 86263, 2, 'ofirgelbart74', 'The Spy Who Loved Me committed to practical spectacle — the Lotus submarine, the ski parachute opening — in ways that still impress. Die Another Day committed to CGI spectacle that looks worse every year. The same franchise formula at its most confiden...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (120574, 86263, 2, 'ofirgelbart74', 'From Russia with Love works because the threat is always physical and plausible — Red Grant is a human being who can actually beat Bond in a fight, and the Orient Express compartment makes that fight feel genuinely dangerous. Die Another Day''s threats ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (215876, 310728, 2, 'ofirgelbart74', 'Speed worked because the constraint was brilliant — a bus that can''t slow down creates perfect action-film geometry. Speed 2 puts the same premise on a cruise ship, which removes every tension that made the original work. A cruise ship that can''t stop ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (256632, 310728, 2, 'ofirgelbart74', 'Both are nautical action films but Speed 2''s cruise ship setting eliminates every kind of urgency that made Speed work — and unlike Pirates of the Caribbean, which has Jack Sparrow to carry every scene, Speed 2 replaced Keanu Reeves with Jason Patric a...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (328277, 310728, 2, 'ofirgelbart74', 'Both feature Sandra Bullock in a major action role — T2 as an incidental character whose scenes work perfectly, Speed 2 as the lead of a film that doesn''t know what it wants to be. T2''s action sequences work because Cameron made every choice in service...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (333856, 310728, 2, 'ofirgelbart74', 'Both are 1997 large-scale films involving ships in crisis, but Titanic made you care about Jack and Rose over three hours before the ship sinks so the disaster feels personal. Speed 2 introduces characters and disasters simultaneously and never makes y...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (194497, 194493, 2, 'ofirgelbart74', 'The 1978 animated Lord of the Rings uses rotoscoping — tracing live-action footage frame by frame — which creates an uncanny, uncomfortable visual quality that works against the fantasy rather than building it. Jackson''s Fellowship spent two years in N...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (294028, 174918, 2, 'ofirgelbart74', 'Both feature a magical being granting wishes to a child in a contemporary setting, but Kazaam is built entirely around Shaquille O''Neal''s celebrity rather than any cinematic ideas — the rapping genie sequences exist to showcase a persona, not to tell a...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (96593, 174918, 2, 'ofirgelbart74', 'Both are films about a child forming a bond with a magical being who doesn''t belong in the normal world — but E.T. earns its emotion because Spielberg treats the friendship as completely real and the goodbye as genuinely heartbreaking. Kazaam treats it...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (159175, 174918, 1, 'ofirgelbart74', 'Both feature a child protagonist in a magical adventure involving an unusual companion, but Temple of Doom commits fully to its dark adventure tone while Kazaam commits fully to Shaquille O''Neal''s basketball celebrity. The mine cart chase and the Kazaa...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (337166, 174918, 2, 'ofirgelbart74', 'Both are family films about a child''s relationship with a magical figure who has to learn something about friendship — but Toy Story''s Woody and Buzz are fully written characters with genuine psychological needs, while Kazaam''s genie is a celebrity sho...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (207992, 310992, 1, 'ofirgelbart74', 'Both are late-90s ensemble films with a large following, but Spice World is a feature-length music video with no plot — scenes begin and end with no connection to each other, and the film''s only purpose is to promote the Spice Girls'' tour and album. Fa...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (313459, 310992, 1, 'ofirgelbart74', 'Both are films about an ensemble of characters with distinct personalities going on an adventure together — but Star Wars builds genuine relationships between its characters and puts them in real danger, while Spice World puts its characters in a bus a...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (109093, 31274, 1, 'ofirgelbart74', 'Both involve a protagonist outmatched by more powerful and better-organized adversaries, but Fargo''s criminals are incompetent and human and recognizable, while Battlefield Earth''s aliens are incompetent in ways the screenplay doesn''t seem to notice. M...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (290070, 129439, 1, 'ofirgelbart74', 'Both are biographical narratives about a person rising against adversity — Schindler''s transformation from opportunist to moral hero is one of cinema''s great character arcs. Glitter is a music-industry rise-to-fame story built around a pop star persona...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (210511, 30965, 2, 'ofirgelbart74', 'Both feature protagonists who struggle to understand what is real in a chaotic situation — Leonard through amnesia, Bruce through trauma. But Batman Forever''s competing villains drain any chance for that psychological theme to breathe, while Memento''s ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (65764, 151052, 1, 'ofirgelbart74', 'Both use graphic violence as a central formal element, but Kubrick''s violence in A Clockwork Orange is always deliberate — the camera placement, the music choice, the editing rhythm all force you to think about what you are watching. House of the Dead''...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (291698, 151052, 1, 'ofirgelbart74', 'Both are genre films in which death and violence are the primary spectacle, but Se7en''s horror comes from John Doe''s intelligence and planning — the crimes are designed to mean something. House of the Dead''s horror comes from zombies running at the cam...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (82967, 127627, 1, 'ofirgelbart74', 'Both are crime films with A-list casts in scenes together, but The Departed''s ensemble builds real tension from the first scene and sustains it to the final minute. Gigli''s ensemble generates no tension at any point — the film has no functioning scenes...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (297838, 31274, 1, 'ofirgelbart74', 'Both are films about people trapped inside an oppressive system who eventually escape it — Shawshank builds Andy''s escape over twenty years of patient, brilliant detail. Battlefield Earth''s humans escape their alien oppressors by finding some nuclear b...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (319613, 30952, 2, 'ofirgelbart74', 'Both are superhero sequels with multiple villains and a heightened camp register, but Superman II''s ''Kneel before Zod'' works because Terence Stamp plays Zod with complete conviction — the campiness has menace behind it. Batman & Robin''s campiness has n...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130129, 127627, 1, 'ofirgelbart74', 'Both are crime films featuring professional criminals in situations where trust is the central issue — but Godfather II''s Michael and Fredo have one of cinema''s most devastating betrayal scenes, while Gigli''s criminals have conversations that communica...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (96593, 73574, 2, 'ofirgelbart74', 'Both are films about extraterrestrials visiting Earth in a suburban setting — but E.T. is about a child''s friendship with a benevolent alien who wants to go home, and Critters 3 is about small furry aliens eating people in an apartment building. The em...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (328277, 219541, 1, 'ofirgelbart74', 'Both feature action sequences where the hero fights an apparently unstoppable enemy — but T2''s T-1000 was designed by Stan Winston''s practical effects team to feel physically real, and every encounter with it generates genuine threat. Mortal Kombat Ann...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (165961, 370017, 2, 'ofirgelbart74', 'Both are films about a protagonist who must stop a threat through improvisation — but Jaws builds its dread slowly over two hours and makes you feel every minute of the shark''s invisible presence. XXX shows its threats immediately and at full volume fr...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (46169, 365498, 2, 'ofirgelbart74', 'Both are period action films about a hero defying a more powerful antagonist, but Braveheart''s William Wallace is a man whose every action is motivated by genuine love and loss. Wild Wild West''s James West is motivated mainly by being Will Smith and ha...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (267038, 310992, 1, 'ofirgelbart74', 'Both are ensemble films structured as loosely connected vignettes, but Tarantino''s vignettes all build toward a complete moral argument about violence and choice. Spice World''s vignettes exist to showcase each Spice Girl''s personality for fans who alre...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (109093, 127627, 1, 'ofirgelbart74', 'Both are crime films where two mismatched people have to work together on a criminal task — but Fargo''s mismatched criminals are precisely observed and darkly funny, and Marge''s investigation of their incompetence is one of cinema''s great comic perform...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (112290, 109093, 9, 'ofirgelbart74', 'Both films build a world that feels hyper-real and slightly off, where the protagonist is the least reliable person in the room. Fight Club''s unnamed narrator and Fargo''s Jerry Lundegaard are both men whose plans spiral completely out of their control,...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (271095, 207992, 9, 'ofirgelbart74', 'Both films introduce a protagonist who discovers the world is far more dangerous and mythological than he realized, and both deliver action sequences that genuinely changed what audiences expected from the genre. Raiders invented the modern adventure t...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (207992, 328285, 9, 'ofirgelbart74', 'Both films center on a machine intelligence hunting a human target while a protector tries to stop it, and both were technically groundbreaking in ways that permanently changed visual effects. T2''s liquid metal morphing and The Matrix''s bullet time eac...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (129185, 271095, 8, 'ofirgelbart74', 'Both are crowd-pleasing adventure films built around a charismatic hero navigating a world of ancient power and dangerous enemies. Gladiator''s arena sequences and Raiders'' action set pieces share the same DNA — practical stunts, physical danger that fe...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (167260, 194500, 10, 'ofirgelbart74', 'The Two Towers builds directly on everything Fellowship established — the friendships, the geography, the stakes — and delivers the Helm''s Deep battle that Fellowship was building toward from the beginning. Watching them together is the only way to exp...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (194500, 32114, 8, 'ofirgelbart74', 'Both are films where a protagonist is chosen for a mission he did not seek and must carry a burden that slowly isolates him from everyone around him. Frodo''s ring and Nash''s genius both transform from gifts into sources of suffering, and both films are...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (271192, 32114, 9, 'ofirgelbart74', 'Both films center on a man with an exceptional mind that works differently from everyone around him, and both use a relationship — Rain Man with his brother, A Beautiful Mind with his wife — as the anchor that keeps the protagonist connected to the wor...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (117874, 271192, 9, 'ofirgelbart74', 'Both films follow a protagonist with cognitive differences who navigates a world built for people unlike him, and both use that protagonist''s outsider perspective to reveal something true about American society. Forrest and Raymond are both at their be...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (26844, 328285, 8, 'ofirgelbart74', 'Both films are time-travel stories where the entire plot depends on preventing a specific future, and both use time mechanics that are internally consistent enough to make the stakes feel real. Back to the Future''s clock tower sequence and T2''s final a...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (207992, 26844, 8, 'ofirgelbart74', 'Both films introduce a protagonist who is told that everything he believed about reality is wrong, and both have a mentor figure who delivers that revelation in a way that is somehow both overwhelming and exciting. Doc Brown and Morpheus are very diffe...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130128, 297838, 8, 'ofirgelbart74', 'Both are films that take their time — long, deliberate, and completely confident that you will stay with them — and both reward that patience with endings that feel genuinely earned. The Godfather and Shawshank Redemption are both films where performan...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (280270, 117874, 8, 'ofirgelbart74', 'Both are films about a man from modest origins who becomes extraordinary not through brilliance but through perseverance and an inability to give up. Rocky''s training montage and Forrest''s running across America both tap into the same feeling — that th...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (290070, 130128, 9, 'ofirgelbart74', 'Both films follow a powerful man who operates in a morally corrupt system and must decide how much of himself to sacrifice to that system. Schindler''s transformation from profiteer to rescuer and Michael Corleone''s transformation from innocent to patri...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (194500, 129185, 8, 'ofirgelbart74', 'Both films were released within a year of each other and both reminded audiences that epic filmmaking built around physical production and genuine emotional stakes was still possible. Fellowship''s New Zealand landscapes and Gladiator''s Rome share a com...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (271095, 280270, 8, 'ofirgelbart74', 'Both are films built entirely around the physical performance of their lead actor, where the joy of watching comes from seeing a human body pushed to its limits. Harrison Ford taking actual punches and Sylvester Stallone running up actual stairs share ...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (297838, 370017, 2, 'ofirgelbart74', 'Both follow a protagonist who refuses to accept his situation and fights the system constraining him — but Shawshank builds that resistance over nineteen years of patience and quiet dignity, while XXX builds it over one scene of Vin Diesel doing a skat...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130128, 30952, 1, 'ofirgelbart74', 'Both films feature powerful men operating outside the law in a city that cannot control them — but The Godfather treats that premise with the weight it deserves, while Batman and Robin treats it as an excuse for bat nipples and ice puns. They share a g...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (117874, 174918, 1, 'ofirgelbart74', 'Both films feature a protagonist who forms an unlikely friendship that changes his life, and both use that friendship to deliver a message about hope. Forrest Gump uses its friendship to say something true about human connection. Kazaam uses its friend...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (290070, 313474, 1, 'ofirgelbart74', 'Both films are about a pivotal moment in a larger conflict where the fate of many depends on one person''s choices — but Schindler''s List earns every moment of its emotional weight through restraint and specificity, while Episode I spends its pivotal mo...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (117874, 30952, 1, 'ofirgelbart74', 'Both films were produced by major Hollywood studios with enormous resources and both tell stories about extraordinary individuals in extraordinary circumstances. Forrest Gump uses those resources to create something genuinely moving. Batman and Robin u...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (271192, 310992, 1, 'ofirgelbart74', 'Both films follow a group of people traveling together whose different personalities create friction and comedy on the road. Rain Man''s road trip between Charlie and Raymond becomes a genuine exploration of what the two brothers mean to each other. Spi...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (280270, 311492, 2, 'ofirgelbart74', 'Rocky V brings back the street-fighting origins of the first film and tries to recapture its underdog spirit — but it replaces Adrian''s supportive presence with a plot about Rocky losing his fortune and his son''s attention to a new protégé. The emotion...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (26844, 26847, 3, 'ofirgelbart74', 'Part III takes the same characters and the same time-travel mechanics to the Old West, and it is a competent and occasionally charming film — but it lacks the clockwork plot precision of the original. The first film''s clock tower sequence has a structu...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (194500, 207991, 2, 'ofirgelbart74', 'Both films are the beginning and end of epic trilogies built around a messianic protagonist fighting to save humanity. Fellowship uses its three hours to introduce a world you genuinely believe in. Revolutions uses its two hours to conclude a trilogy w...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130128, 127627, 1, 'ofirgelbart74', 'Both films are about criminals forced into an uncomfortable partnership who gradually develop a relationship neither expected. The Godfather''s criminal partnerships are built on loyalty, fear, and genuine power dynamics. Gigli''s criminal partnership is...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (26844, 174918, 1, 'ofirgelbart74', 'Both films are family-friendly adventures built around a fantastical premise that requires the audience to simply accept the rules and enjoy the ride. Back to the Future makes that acceptance easy because its internal logic is so tight. Kazaam makes th...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (280270, 30952, 1, 'ofirgelbart74', 'Both films are about underdogs who train obsessively to face a more powerful opponent in a climactic battle. Rocky''s training sequences are among cinema''s most purely motivating moments. Batman and Robin''s training sequences involve ice skates, a zambo...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (297838, 280270, 9, 'ofirgelbart74', 'Both films are about men who refuse to let their circumstances define them, and both end with moments of triumph that feel completely earned after everything the protagonist has endured. Andy Dufresne crawling through a sewer to reach freedom and Rocky...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (130128, 326155, 9, 'ofirgelbart74', 'Both are films about men destroyed by the world they chose to inhabit — Michael Corleone becomes the monster he swore he would never be, Travis Bickle cannot escape the city that is slowly consuming him. Coppola and Scorsese were making the same film f...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (117874, 297838, 9, 'ofirgelbart74', 'Both are 1994 films that earn their endings in ways I didn''t expect going in. One is about a man who runs across America and the other about a man who tunnels out of prison — both refuse to let their protagonist be defined by what the world decided abo...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (32114, 297838, 8, 'ofirgelbart74', 'Both films are about intelligent men who find ways to survive systems designed to break them. Nash builds mathematics in his head and Dufresne builds a tunnel in secret, and watching both you believe completely in the quiet determination of both men.', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (271192, 117874, 9, 'ofirgelbart74', 'The road trip in Rain Man and the running in Forrest Gump are the same story told from different angles — both are about a man the world underestimated who teaches the people around him more than he realizes. Hoffman and Hanks both disappear completely...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (26844, 271095, 9, 'ofirgelbart74', 'Both films defined what adventure meant in the 1980s — a hero with a ticking clock and a set piece at the end you are still thinking about on the way home. Watching both back to back you realize how rare it is to make a film this fun that also feels co...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (290070, 297838, 8, 'ofirgelbart74', 'Both are films I did not want to watch because I knew they would be heavy and both destroyed me in the best way. One is about a man who saves people inside a system designed to murder them, the other about a man who saves himself inside a system design...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (56871, 238072, 9, 'ofirgelbart74', 'Both films treat crime as a pleasure rather than a problem — DiCaprio''s Abagnale runs around the world charming everyone he meets and Clooney''s Danny Ocean assembles the smartest team in the room. I rewatched both in the same week and both times forgot...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (25192, 56304, 8, 'ofirgelbart74', 'DiCaprio''s Howard Hughes and De Niro''s Sam Rothstein are the same man in different decades — both built empires through obsessive precision and both couldn''t stop when they should have. The Aviator made me feel the specific loneliness of a man who cont...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (271192, 297838, 8, 'ofirgelbart74', 'Both films take someone the world wrote off and let you spend two hours watching them refuse to accept that verdict. Raymond does it through routine and Andy does it through patience — different methods, the same refusal to be reduced to what other peo...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (26844, 26846, 8, 'ofirgelbart74', 'Part II is the only sequel I can think of that makes the original more fun rather than diminishing it — the third act revisits 1955 from a different angle and made me want to pause and rewatch the first film immediately. The clockwork plotting that mad...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (32114, 30952, 1, 'ofirgelbart74', 'A Beautiful Mind is about a man whose brilliant mind shows him things that aren''t real. Batman and Robin shows you things that are real — ice puns, rubber nipples, a Batmobile that makes no sense — and you wish they weren''t there. The comparison does n...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (271192, 30952, 1, 'ofirgelbart74', 'Rain Man works because Hoffman plays Raymond''s internal world with complete precision and you feel the film was made by people who cared about getting that right. Batman and Robin was made by people who cared about the toy line. Both feature unusual ch...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (117874, 365498, 2, 'ofirgelbart74', 'Both are films about an American hero moving through history with charm and spectacle. Forrest Gump uses that premise to make you feel thirty years of American life through one pair of eyes. Wild Wild West uses it to put Will Smith on a giant mechanica...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (26844, 31274, 1, 'ofirgelbart74', 'Back to the Future works because every complication follows logically from the time mechanics and the script earns every laugh. Battlefield Earth follows no logic I could identify, and the Dutch-angle cinematography made me feel like it was shot by som...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (32114, 127627, 1, 'ofirgelbart74', 'Both films are about intelligent people in complicated situations where nothing goes as planned. A Beautiful Mind makes that feel psychologically real and earns its ending. Gigli''s complicated situation involves a kidnapping and generates not one momen...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (25192, 30952, 1, 'ofirgelbart74', 'The Aviator is about a man who would not compromise his vision and built something extraordinary. Batman and Robin is about a director who compromised every aspect of a beloved character and built something that drove its own star to publicly apologize...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (56871, 31274, 1, 'ofirgelbart74', 'Abagnale''s cons work in Catch Me If You Can because Spielberg makes each one feel plausible. Battlefield Earth''s solution to alien occupation involves teaching primitive humans to fly Harrier jets in one week. The film expects you to find this convinci...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (271192, 365498, 2, 'ofirgelbart74', 'Both follow two men who shouldn''t work together and slowly discover they do. Rain Man earns that through genuine character development over two hours. Wild Wild West has its pair argue for ninety minutes and then a giant mechanical spider appears and t...', NULL); + +INSERT IGNORE INTO movies_recommendations (`base_movie_id`,`recommended_movie_id`,`recommendation`,`suggested_by`,`justification`,`comment`) VALUES (32114, 310992, 1, 'ofirgelbart74', 'A Beautiful Mind is about a community rallying around someone who is struggling — every scene between Nash and his colleagues feels earned and real. Spice World is about five people on a bus doing photoshoots. Not the same category of filmmaking and no...', NULL); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30965 +, 30952 +, 9 +, 'guyn1414' +, 'Both are mid-90s Batman films with colorful villains, campy energy, and the same Gotham aesthetic.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30952 +, 30968 +, 8 +, 'guyn1414' +, 'Both lean into theatrical villain performances and a heightened, almost operatic take on Gotham.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30965 +, 30968 +, 9 +, 'guyn1414' +, 'Both are bold, stylized Batman entries that prioritize spectacle and iconic villain moments.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 406158 +, 30965 +, 8 +, 'guyn1414' +, 'Both are superhero origin stories that balance personal identity struggles with flashy action.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 383395 +, 30965 +, 9 +, 'guyn1414' +, 'Both are classic comic-book hero adaptations built on patriotic and heroic archetypes.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 383395 +, 393012 +, 10 +, 'guyn1414' +, 'Both are 1960s Marvel superhero TV productions sharing the same retro-heroic charm and era.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 393012 +, 379290 +, 8 +, 'guyn1414' +, 'Both are late-60s animated superhero series with similarly bright, earnest adventure storytelling.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 379290 +, 30965 +, 8 +, 'guyn1414' +, 'Both treat Batman as a colorful, larger-than-life hero rather than a dark brooding figure.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 25192 +, 406158 +, 8 +, 'guyn1414' +, 'Both follow a driven, obsessive lead whose ambition pushes him beyond ordinary human limits.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 25192 +, 10702 +, 8 +, 'guyn1414' +, 'Both are character-driven dramas where the lead fights relentlessly to define life on their own terms.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10702 +, 30965 +, 7 +, 'guyn1414' +, 'A tonal contrast that still works: both center on reinvention and carving a new identity under pressure.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 21213 +, 25192 +, 8 +, 'guyn1414' +, 'Both follow protagonists trapped by obsession and longing, unable to let go of an impossible ideal.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 21213 +, 10702 +, 8 +, 'guyn1414' +, 'Both are emotionally ambitious journeys where the hero searches desperately for belonging and love.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14132 +, 14157 +, 10 +, 'guyn1414' +, 'A natural continuation: same cast, same crude-but-warm ensemble comedy spirit carried forward.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14157 +, 14132 +, 9 +, 'guyn1414' +, 'Both reunite the same core group and mine nostalgia and awkward adult humor from teenage roots.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 405119 +, 379290 +, 8 +, 'guyn1414' +, 'Both are classic adventure heroes defined by intellect and a strong moral code rather than brute force.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 405119 +, 399427 +, 8 +, 'guyn1414' +, 'Both are anthology-style mystery and suspense productions from the same classic TV era.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 399427 +, 379931 +, 9 +, 'guyn1414' +, 'Both are prestige TV anthologies blending the supernatural with human drama in short, sharp episodes.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 379931 +, 13396 +, 9 +, 'guyn1414' +, 'A direct continuation of the same Spielberg anthology series, keeping the imaginative short-story format.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 13396 +, 399427 +, 8 +, 'guyn1414' +, 'Both are imaginative anthology series that lean on clever twists and a sense of wonder over pure horror.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 726 +, 728 +, 9 +, 'guyn1414' +, 'Both are companion volumes in the same documentary anthology celebrating the history of horror cinema.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 728 +, 729 +, 9 +, 'guyn1414' +, 'Both survey the same horror tradition from opposite angles: the icons who scream and the ones who cast spells.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 729 +, 726 +, 9 +, 'guyn1414' +, 'All three volumes share the same documentary reverence for classic horror and monster-movie history.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 725 +, 728 +, 8 +, 'guyn1414' +, 'Both explore horrors human edge: the monstrous body and the terrified victim who defined the genre.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10920 +, 21213 +, 8 +, 'guyn1414' +, 'Both are ambitious sci-fi films that use their genre to ask deeper questions about humanity and survival.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10920 +, 406158 +, 5 +, 'guyn1414' +, 'Both are early-2000s films about young men proving themselves, but the crude sex-comedy world has nothing in common with Spideys heroics.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30962 +, 381392 +, 9 +, 'guyn1414' +, 'The movie is a direct launch of the same series, setting up the futuristic Gotham and the new Batman.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 381392 +, 30951 +, 8 +, 'guyn1414' +, 'Both are animated Batman productions that expand the universe with darker, future-facing storytelling.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30951 +, 30952 +, 8 +, 'guyn1414' +, 'Both feature Mr. Freeze as the central villain and use ice and cold as the dominant visual motif.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 395271 +, 398232 +, 9 +, 'guyn1414' +, 'Both are classic ABC sitcoms from the same late-70s Happy Days spin-off family, built on physical comedy.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 398232 +, 395271 +, 9 +, 'guyn1414' +, 'Both rode the same network wave of warm ensemble comedy and made their leads into genuine 70s icons.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 395271 +, 391453 +, 5 +, 'guyn1414' +, 'Both revisit the past with older eyes, but a glamorous biopic and an R-rated college comedy share only nostalgia as a surface trait.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 400612 +, 405119 +, 8 +, 'guyn1414' +, 'Both are procedural classics about sharp-minded professionals who use intelligence to win against the odds.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 400612 +, 399427 +, 8 +, 'guyn1414' +, 'Both are prestige 1970s TV productions with strong dramatic craft and an anthology of human stories.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 7341 +, 661 +, 8 +, 'guyn1414' +, 'Both are music video compilations that document iconic acts at the peak of their commercial power.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 661 +, 7341 +, 8 +, 'guyn1414' +, 'Both capture their bands defining visual and musical identity in an era before streaming made this obsolete.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14132 +, 406158 +, 5 +, 'guyn1414' +, 'Both are Spielberg sci-fi, but the warm anthology variety show is a poor match for AIs cold, unsettling emotional journey.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 3634 +, 400612 +, 5 +, 'guyn1414' +, 'Both follow authority figures navigating conflict, but a mutiny documentary and a legal drama share only vague professional overlap.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 11286 +, 14132 +, 8 +, 'guyn1414' +, 'Both are mid-2000s comedy-ensemble films that thrive on competitive pressure and male group dynamics.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 16730 +, 21213 +, 5 +, 'guyn1414' +, 'Both explore the soul searching for connection, but Angel on My Shoulder is a lightweight TV movie compared to AIs philosophical depth.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 406158 +, 13343 +, 9 +, 'guyn1414' +, 'Both bring Spider-Man to life with fast-paced action and focus on his dual identity as Peter Parker.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 13343 +, 406158 +, 8 +, 'guyn1414' +, 'The ride and the film share the same web-swinging energy and blend of humor with real danger.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 108 +, 405119 +, 8 +, 'guyn1414' +, 'Both are tough, procedural hero stories from classic Hollywood where the law is both weapon and ideal.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 108 +, 400612 +, 8 +, 'guyn1414' +, 'Both are justice-driven narratives where a skilled professional uses the system to expose and defeat crime.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30965 +, 406158 +, 9 +, 'guyn1414' +, 'Both are crowd-pleasing superhero blockbusters that balance action spectacle with a sympathetic hero arc.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 21213 +, 406158 +, 5 +, 'guyn1414' +, 'Both are warmly made 1970s TV series, but the switch from girls-at-work sitcom to serious legal drama will confuse fans of either.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10702 +, 395271 +, 8 +, 'guyn1414' +, 'Both follow working-class women in the 1970s finding resilience and humor while chasing independence.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14157 +, 11286 +, 8 +, 'guyn1414' +, 'Both are ensemble comedies about a group of friends reuniting and rediscovering who they are together.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30962 +, 30965 +, 5 +, 'guyn1414' +, 'Both feature a young Batman finding his footing, but the futuristic sci-fi setting of Beyond feels like a different franchise entirely.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 406158 +, 393012 +, 8 +, 'guyn1414' +, 'Both follow Marvel heroes whose cleverness and gadgetry are just as important as their physical abilities.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 399427 +, 726 +, 8 +, 'guyn1414' +, 'Both celebrate the craft and legacy of horror and the uncanny, one through original stories, one through history.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 25192 +, 14157 +, 5 +, 'guyn1414' +, 'Both are 70s dramas about resilient Americans, but the tonal gap between a sitcom road movie and a courtroom procedural is too wide.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30968 +, 30951 +, 8 +, 'guyn1414' +, 'Both give a tragic dimension to the villain that makes Batmans conflict feel genuinely emotional.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 395271 +, 400612 +, 7 +, 'guyn1414' +, 'Both are warm, character-rich 1970s TV productions that hold up as portraits of American working life.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10920 +, 25192 +, 5 +, 'guyn1414' +, 'Both follow obsessive overachievers, but Aliens fans expecting creature action will find Aviators boardroom anxiety deeply unrewarding.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30965 +, 30962 +, 8 +, 'guyn1414' +, 'Both treat Batman as a legacy and explore what it means to pass on the cowl to the next generation.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 379931 +, 21213 +, 5 +, 'guyn1414' +, 'Both are about men who gamble big, but the poker-comedy world of All In has none of Aviators scope, tragedy, or visual ambition.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 383395 +, 406158 +, 8 +, 'guyn1414' +, 'Both are Marvel adaptations that put a righteous, relatable hero at the center of a dangerous world.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 400612 +, 108 +, 8 +, 'guyn1414' +, 'Both are classic American dramas about moral authority and the personal cost of defending justice.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14132 +, 10702 +, 5 +, 'guyn1414' +, 'Both involve characters on the road to independence, but a 1974 feminist drama and a raunchy teen sex comedy have nothing to say to each other.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 11286 +, 25192 +, 7 +, 'guyn1414' +, 'Both are about men who bet everything on their own abilities and have to live with the consequences.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 406158 +, 381392 +, 8 +, 'guyn1414' +, 'Both feature teenage heroes learning to carry the weight of a double life in a dangerous city.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30951 +, 379290 +, 8 +, 'guyn1414' +, 'Both are animated Batman stories that find the humanity inside the hero beneath the cape and cowl.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 399427 +, 13396 +, 9 +, 'guyn1414' +, 'Both anthologies use the supernatural to deliver moral fables with memorable twist endings.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10702 +, 400612 +, 7 +, 'guyn1414' +, 'Both are 1970s dramas about resilient, self-determined Americans navigating a changing society.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30952 +, 30965 +, 9 +, 'guyn1414' +, 'Both films embrace the theatrical, colorful excess of the Schumacher Batman era as a feature, not a flaw.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 393012 +, 383395 +, 10 +, 'guyn1414' +, 'Two halves of the same 1966 Marvel animated slate, sharing the same retro heroic optimism.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 21213 +, 379931 +, 7 +, 'guyn1414' +, 'Both blend wonder and melancholy in speculative fiction stories with a strong Spielberg sensibility.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14157 +, 10702 +, 7 +, 'guyn1414' +, 'Both examine what happens when a person returns to their roots and has to reckon with their younger self.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30965 +, 383395 +, 8 +, 'guyn1414' +, 'Both are exuberant, crowd-pleasing superhero films that celebrate their hero with zero ironic distance.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 405119 +, 108 +, 9 +, 'guyn1414' +, 'Both are classic-era detective and law enforcement stories built on wit, deduction, and moral certainty.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 7341 +, 395271 +, 7 +, 'guyn1414' +, 'Both are crowd-pleasing, high-energy American entertainment that defined their respective eras.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10920 +, 10702 +, 7 +, 'guyn1414' +, 'Both follow a woman in an impossible situation who refuses to break and fights her way to survival.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30968 +, 30965 +, 8 +, 'guyn1414' +, 'Both are stylish, villain-centric Batman films where the bad guys are almost more compelling than the hero.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 25192 +, 21213 +, 8 +, 'guyn1414' +, 'Both are about brilliant minds consumed by an impossible dream they can never fully reach.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 13343 +, 381392 +, 8 +, 'guyn1414' +, 'Both are 1999 theme-park and animated superhero productions that pushed immersive hero storytelling forward.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 383395 +, 30951 +, 7 +, 'guyn1414' +, 'Both are animated superhero productions where the heros moral clarity is the emotional anchor.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 11147 +, 383395 +, 8 +, 'guyn1414' +, 'Both celebrate the patriotic American hero archetype and the ideal of service over self-interest.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 3634 +, 399427 +, 7 +, 'guyn1414' +, 'Both are documentary-style TV productions that dig into dark, morally complex human stories.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 11147 +, 406158 +, 7 +, 'guyn1414' +, 'Both center on the tension between personal sacrifice and public heroism in an American setting.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10920 +, 399427 +, 7 +, 'guyn1414' +, 'Both lean into dread and the unknown, using atmosphere as a tool before resorting to explicit horror.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30962 +, 406158 +, 8 +, 'guyn1414' +, 'Both follow a young man stepping into a superhero legacy while navigating high school pressures.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 379290 +, 393012 +, 8 +, 'guyn1414' +, 'Both are beloved 1960s animated hero shows that gave kids their first real taste of comic-book storytelling.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 395271 +, 14132 +, 5 +, 'guyn1414' +, 'Both are ensemble comedies, but the crude college humor of Pie is a jarring mismatch for fans of the warm workplace sitcom.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14132 +, 11286 +, 8 +, 'guyn1414' +, 'Both are ensemble comedies where male bonding rituals are the source of both laughs and genuine feeling.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 405119 +, 400612 +, 8 +, 'guyn1414' +, 'Both are smart procedural dramas built on a single brilliant mind dismantling deception piece by piece.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 726 +, 399427 +, 8 +, 'guyn1414' +, 'Both celebrate the legacy of horror and the macabre, one as documentary, one as original anthology.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30952 +, 406158 +, 7 +, 'guyn1414' +, 'Both feature team-ups between heroes and use colorful action set-pieces to keep the energy high.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10702 +, 14132 +, 7 +, 'guyn1414' +, 'Both are about characters on the move, trying to rebuild their lives in a new city with only their instincts.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 11286 +, 406158 +, 7 +, 'guyn1414' +, 'Both are about young men who go all-in on a risky bet and discover who they really are under pressure.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30965 +, 30957 +, 2 +, 'guyn1414' +, 'Both feature the Dynamic Duo, but the 1949 serial is a slow, low-budget cliffhanger that kills all the fun.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30965 +, 30961 +, 2 +, 'guyn1414' +, 'Both are Batman productions, but this dark direct-to-video film strips away everything that made the films fun.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30952 +, 30957 +, 3 +, 'guyn1414' +, 'Both have the exact same title and hero duo, but the serials plodding pacing will disappoint fans of the 90s film.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10920 +, 10830 +, 4 +, 'guyn1414' +, 'Both follow Ripley against the same creature, but the original is a slow haunted-house film fans of the action sequel will find frustrating.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10920 +, 10945 +, 3 +, 'guyn1414' +, 'Both are Alien sequels, but this bleak prison entry ditches the action formula entirely and kills beloved characters early.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 406158 +, 30961 +, 3 +, 'guyn1414' +, 'Both are superhero films aimed at fans of animated heroes, but this one is surprisingly dark and traumatic for the same audience.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 383395 +, 379331 +, 3 +, 'guyn1414' +, 'Both are classic adventure heroes in long-running adaptations, but the 1984 Holmes series is slow and procedurally dry.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 405119 +, 379331 +, 4 +, 'guyn1414' +, 'Both star the same iconic detective, but the 1984 series is a stiff, over-literal adaptation that lacks the 1951 versions spark.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 399427 +, 13395 +, 2 +, 'guyn1414' +, 'Both are TV anthology collections, but Book Four scraped the weakest episodes and lacks the Gallerys consistent craft.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 379931 +, 13395 +, 2 +, 'guyn1414' +, 'The original series was sharp and inventive; Book Four is the leftovers, with the weakest episodes dumped into one release.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14132 +, 1038 +, 2 +, 'guyn1414' +, 'Both are early-2000s coming-of-age comedies, but the squeaky-clean body-swap romance has nothing in common with Pies crude humor.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 25192 +, 30686 +, 3 +, 'guyn1414' +, 'Both are DiCaprio biopics about obsession and self-destruction, but Diaries is a grim, unglamorous addiction story with none of Aviators scope.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 25192 +, 8183 +, 3 +, 'guyn1414' +, 'Both are lavish period dramas about men trapped by their own obsessions, but Age of Innocence moves at a glacial, suffocating pace.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 21213 +, 22651 +, 3 +, 'guyn1414' +, 'Both are sci-fi films about humanity blurring with the alien, but Astronauts Wife replaces wonder with cheap paranoia thriller beats.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 21213 +, 9813 +, 2 +, 'guyn1414' +, 'Both are 2001 animated stories about a young outsider searching for belonging, but this video-game adaptation is forgettable noise.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10702 +, 12744 +, 4 +, 'guyn1414' +, 'Both are sentimental dramas about love and moving on, but Always is a soft-focus fantasy that lacks any of Alices grit and honesty.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 395271 +, 382208 +, 2 +, 'guyn1414' +, 'Both are Happy Days spin-offs from the same network era, but Blanskys lasted one season because it never found a reason to exist.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 395271 +, 391006 +, 4 +, 'guyn1414' +, 'Laverne came from Happy Days, but the spin-off is far sharper; returning to the source feels slow and toothless by comparison.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 398232 +, 382208 +, 2 +, 'guyn1414' +, 'Both are late-70s ABC sitcoms from the Happy Days orbit, but Blanskys is a cynical cash-grab that lacks Morks genuine charm.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 398232 +, 397250 +, 3 +, 'guyn1414' +, 'Both are fish-out-of-water TV comedies about an unusual companion disrupting domestic life, but the chimp gimmick wore thin in episode one.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 400612 +, 391006 +, 3 +, 'guyn1414' +, 'Both are Universal TV series from the early 70s, but Marshall is a serious legal drama that has nothing to offer the Happy Days crowd.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 405119 +, 406759 +, 2 +, 'guyn1414' +, 'Both are British productions from different eras, but a tennis documentary has no narrative connection to Victorian detective fiction.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30965 +, 30955 +, 4 +, 'guyn1414' +, 'Both are Bat-films, but Schumacher replaced Burtons gothic menace with neon and camp, alienating fans of the original dark tone.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30968 +, 30955 +, 4 +, 'guyn1414' +, 'The user rated the 1989 original low; both share Burtons visual excess, so the sequel will feel like more of the same problem.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30952 +, 30959 +, 3 +, 'guyn1414' +, 'Both are Batman blockbusters, but Nolans grounded realism is the exact opposite of what made Batman and Robin enjoyable.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 406158 +, 22651 +, 3 +, 'guyn1414' +, 'Both star Johnny Depp or feature supernatural forces invading ordinary life, but the thriller drags with no heroic release.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14132 +, 15187 +, 3 +, 'guyn1414' +, 'Both are sequels to cult favorites, but this Dutch horror-thriller has none of the warmth or humor American Pie fans expect.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14132 +, 8183 +, 2 +, 'guyn1414' +, 'Both are coming-of-age stories in a sense, but Scorseses stifling period romance is the antithesis of Pies liberated energy.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10920 +, 15187 +, 4 +, 'guyn1414' +, 'Both are late-80s action-horror films with a lone cop or soldier hunting a deadly creature, but Amsterdamned is far duller.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10920 +, 22651 +, 3 +, 'guyn1414' +, 'Both are sci-fi films about alien contamination threatening humans, but Wife replaces Aliens propulsive action with sluggish dread.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 25192 +, 1121 +, 3 +, 'guyn1414' +, 'Both are sprawling biopics about driven men conquering new frontiers, but 1492 is a punishing, slow-burn epic with no emotional payoff.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 21213 +, 20253 +, 4 +, 'guyn1414' +, 'Both are dreamlike films about a young man searching for meaning in a surreal world, but Arizona Dream meanders with no real destination.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 399427 +, 724 +, 2 +, 'guyn1414' +, 'Both deal in horror history, but the generic overview lacks the Night Gallerys craft and is little more than a bland clip show.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 399427 +, 735 +, 4 +, 'guyn1414' +, 'Both explore horror craft, but Monster Makers focuses on behind-the-scenes dryness that loses the storytelling magic of Night Gallery.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 726 +, 724 +, 3 +, 'guyn1414' +, 'Same series, but the general overview is a weak entry compared to the sharply focused Giants and Dinosaurs installment.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 728 +, 735 +, 4 +, 'guyn1414' +, 'Both are volumes of the same series, but Monster Makers is the least inspired entry, lacking the personality of Scream Queens.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 13396 +, 13395 +, 2 +, 'guyn1414' +, 'Same show, different quality: Book One has the best episodes while Book Four is the discarded remainder.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30965 +, 30686 +, 3 +, 'guyn1414' +, 'Both are 1995 films with a charismatic lead fighting a threatening world, but the heroin nightmare of Diaries has nothing for Batman fans.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 383395 +, 30961 +, 2 +, 'guyn1414' +, 'Both are animated superhero productions, but this Joker film is traumatically dark compared to the breezy 60s Marvel series.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10702 +, 8183 +, 4 +, 'guyn1414' +, 'Both are character studies of a woman trapped by social expectation, but Scorseses version is cold and suffocating rather than warm.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 395271 +, 397250 +, 3 +, 'guyn1414' +, 'Both are working-class ABC sitcoms about an odd-couple dynamic, but the chimp sitcom is painfully one-note by comparison.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14157 +, 1038 +, 2 +, 'guyn1414' +, 'Both are nostalgia-driven comedies about recapturing youth, but 13 Going On 30 sanitizes everything that made Reunion relatable.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 7341 +, 179 +, 4 +, 'guyn1414' +, 'Both are live concert films by major pop acts, but the synthetic pop production is a jarring mismatch for rock fans.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 661 +, 179 +, 3 +, 'guyn1414' +, 'Both are music video and concert collections, but Time Capsule has artistic depth while Madison Square Garden is pure pop spectacle.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10920 +, 28631 +, 3 +, 'guyn1414' +, 'Both involve a group attempting a desperate escape from a threatening environment, but Balloon is a slow historical drama with no genre thrills.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30962 +, 30961 +, 2 +, 'guyn1414' +, 'Same series, but Jokers Return is a relentlessly grim film that betrays the fun adventure tone of the original movie.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 381392 +, 30961 +, 2 +, 'guyn1414' +, 'Fans of the series will expect more of the same, but this film goes shockingly dark in ways the show never prepared you for.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 405119 +, 30686 +, 2 +, 'guyn1414' +, 'Both follow a brilliant young man as the world closes in, but grim heroin addiction is the opposite of elegant Victorian detective work.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 406158 +, 13395 +, 2 +, 'guyn1414' +, 'Both involve fantastical stories for younger audiences, but a collection of leftover TV anthology episodes has none of Spideys energy.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 21213 +, 12744 +, 4 +, 'guyn1414' +, 'Both are Spielberg films about love that transcends physical boundaries, but Always is schmaltzy and lightweight compared to AIs ambition.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30952 +, 30955 +, 4 +, 'guyn1414' +, 'Both are studio Batman films, but the user rated the original low, and the campy neon sequel doubles down on everything that did not work.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14132 +, 30686 +, 3 +, 'guyn1414' +, 'Both follow young men bonding and testing limits, but Diaries swaps summer laughs for a harrowing descent into heroin addiction.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 25192 +, 20253 +, 3 +, 'guyn1414' +, 'Both involve aviation as a metaphor for impossible dreams, but Arizona Dream is a surreal, plotless reverie compared to Aviators propulsive biopic.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10702 +, 30686 +, 3 +, 'guyn1414' +, 'Both follow a protagonist losing everything and rebuilding from zero, but Diaries is far darker and more nihilistic than Alices warmth.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 399427 +, 9813 +, 2 +, 'guyn1414' +, 'Both are fantasy storytelling products, but a licensed video-game tie-in cartoon has nothing in common with Serlings craft.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 395271 +, 398571 +, 2 +, 'guyn1414' +, 'Both are network TV sitcoms about strong women in professional environments, but Murphy Brown is a cold, preachy newsroom comedy.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 400612 +, 398571 +, 2 +, 'guyn1414' +, 'Both are network TV dramas set around professionals, but Murphy Brown is a cynical comedy that shares no tone with Marshalls earnest legal drama.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30965 +, 30959 +, 4 +, 'guyn1414' +, 'Both are Batman origin-adjacent films, but Nolans brutalist realism is the deliberate death of everything Schumacher celebrated.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 393012 +, 30961 +, 2 +, 'guyn1414' +, 'Both are animated superhero productions, but this 2000 film is far too dark and violent for fans of the cheerful 1966 Marvel cartoon.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 379290 +, 30957 +, 3 +, 'guyn1414' +, 'Both are early Batman adaptations that predate the modern franchise, but the 1949 serial is far too slow and cheap even by those standards.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 405119 +, 398571 +, 2 +, 'guyn1414' +, 'Both feature a sharp-minded professional who dominates every room, but the cynical 80s newsroom has nothing in common with Baker Street.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14157 +, 15187 +, 3 +, 'guyn1414' +, 'Both are follow-ups to cult genre films, but Amsterdamned is a dour Dutch slasher that will baffle anyone expecting more of the Pie gang.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 7341 +, 178 +, 4 +, 'guyn1414' +, 'Both are music video and performance packages, but the holiday special is pure manufactured pop, miles away from Aerosmiths energy.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10920 +, 9813 +, 2 +, 'guyn1414' +, 'Both are action-adventure stories with a young person fighting back against an evil force, but the comparison ends there entirely.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30968 +, 30957 +, 3 +, 'guyn1414' +, 'Both feature Batman battling multiple enemies, but the 1949 serial lacks any of the visual flair and dark poetry of Returns.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 11286 +, 28631 +, 3 +, 'guyn1414' +, 'Both involve high-stakes escapes with everything on the line, but Balloon is a slow historical drama that trades tension for authenticity.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 383395 +, 30957 +, 3 +, 'guyn1414' +, 'Both are low-budget costumed hero productions from earlier decades, but even by those standards the 1949 serial drags badly.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 21213 +, 1121 +, 3 +, 'guyn1414' +, 'Both explore the human drive to venture into the unknown, but 1492 buries its ambition under three hours of ponderous spectacle.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14132 +, 397250 +, 2 +, 'guyn1414' +, 'Both are ensemble comedies built on a strange relationship, but the chimp premise is exactly as thin as it sounds.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 25192 +, 406759 +, 3 +, 'guyn1414' +, 'Both are about an obsessive pursuit of greatness in a competitive field, but a tennis documentary cannot match the cinematic scope of Aviator.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30962 +, 30955 +, 4 +, 'guyn1414' +, 'Both launch a new Batman into action, but fans of Beyonds futuristic teen hero will find the gothic 1989 original a very different beast.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 406158 +, 30957 +, 2 +, 'guyn1414' +, 'Both are costumed-hero serials in a broad sense, but the 1949 cheapie has none of the wit, action, or emotion of modern Spider-Man.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10702 +, 397250 +, 2 +, 'guyn1414' +, 'Both are character comedies about a woman finding herself in an unusual living situation, but the chimp show never rises above its premise.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 399427 +, 846 +, 2 +, 'guyn1414' +, 'Both are anthology-style TV productions, but a celebrity blooper reel is as far from Rod Serlings craft as television gets.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10702 +, 7842 +, 7 +, 'guyn1414' +, 'Both follow a determined New Yorker pushed to the edge in a city that refuses to cooperate, with Scorsese directing both with intimate urgency.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 395271 +, 406759 +, 2 +, 'guyn1414' +, 'Both are 1980s TV productions, but a BBC tennis documentary could not be further from the fizzy ensemble comedy of Laverne and Shirley.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 379931 +, 9813 +, 2 +, 'guyn1414' +, 'Both are fantasy adventure stories, but a cheap licensed video-game cartoon has none of the invention of Spielbergs anthology.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 11286 +, 33 +, 4 +, 'guyn1414' +, 'Both revolve around financial schemes and the world of gambling, but Swindle lacks the comedic energy and character work of All In.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14157 +, 8183 +, 2 +, 'guyn1414' +, 'Both look back on formative years from an adult perspective, but Age of Innocence is a suffocating Scorsese study with zero laughs.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10920 +, 1121 +, 3 +, 'guyn1414' +, 'Both follow determined humans pushing into hostile, uncharted territory, but 1492 is a sluggish epic that buries its tension in ceremony.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30952 +, 30961 +, 2 +, 'guyn1414' +, 'Both take the Batman franchise in a new direction, but Jokers Return goes full dark tragedy where Batman and Robin went full party.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 661 +, 178 +, 3 +, 'guyn1414' +, 'Both are music package releases, but the sincerity of 10,000 Maniacs is worlds away from this manufactured holiday pop product.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 400612 +, 382208 +, 2 +, 'guyn1414' +, 'Both are Universal TV productions from the same era, but Blanskys Beauties is a frivolous flop that insults Marshalls dramatic craft.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 21213 +, 15187 +, 3 +, 'guyn1414' +, 'Both follow a protagonist desperately pursuing an impossible goal through a hostile urban environment, but the Dutch thriller is joyless.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 25192 +, 22651 +, 3 +, 'guyn1414' +, 'Both are about a brilliant man whose ambitions in the sky drive him to the edge of sanity, but Astronauts Wife is a cheap knock-off thriller.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 11147 +, 30957 +, 3 +, 'guyn1414' +, 'Both celebrate American heroism on a low budget, but the 1949 serials static staging will bore anyone expecting real heroics.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30968 +, 30961 +, 2 +, 'guyn1414' +, 'Both push Batman into very dark psychological territory, but Jokers Return is nihilistically grim in ways even Returns avoids.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 383395 +, 398571 +, 2 +, 'guyn1414' +, 'Both are broadcast TV productions, but a cynical 80s newsroom sitcom and a 60s patriotic superhero cartoon share absolutely nothing.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 405119 +, 391006 +, 2 +, 'guyn1414' +, 'Both are long-running TV series built on a beloved lead character, but Happy Days nostalgia has no crossover with Victorian detective craft.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30965 +, 11147 +, 8 +, 'guyn1414' +, 'Both celebrate American heroism with optimism and spectacle, putting the ideal of the hero above all else.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 406158 +, 11286 +, 7 +, 'guyn1414' +, 'Both are about someone with everything to lose who goes all-in on a high-risk gamble with their own identity.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10702 +, 3634 +, 7 +, 'guyn1414' +, 'Both center on a strong-willed person who refuses to let a hostile environment break their sense of self.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30951 +, 30965 +, 8 +, 'guyn1414' +, 'Both are high-quality Batman productions from the same decade that treat the villain with genuine sympathy.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30968 +, 30952 +, 7 +, 'guyn1414' +, 'Both are villain showcase Batman films where the heroes are almost upstaged by their own antagonists.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 21213 +, 16730 +, 7 +, 'guyn1414' +, 'Both follow a being who is not quite human desperately trying to understand love and what it means to belong.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 108 +, 30965 +, 7 +, 'guyn1414' +, 'Both are crime-fighting hero stories that tap into the excitement of law and order as pure entertainment.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14132 +, 395271 +, 7 +, 'guyn1414' +, 'Both are ensemble comedies about friends navigating work, romance, and the gap between who they are and who they want to be.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 381392 +, 406158 +, 8 +, 'guyn1414' +, 'Both are beloved superhero adaptations that center on a teenager discovering his powers in a dangerous world.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 25192 +, 108 +, 7 +, 'guyn1414' +, 'Both celebrate American ambition and the idea that one driven individual can reshape the world around them.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 726 +, 725 +, 9 +, 'guyn1414' +, 'Both are richly researched volumes from the same series, each spotlighting a distinct strand of horror history.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 729 +, 725 +, 8 +, 'guyn1414' +, 'Both volumes cover the same classic horror era and complement each other perfectly as a double feature.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30965 +, 379931 +, 8 +, 'guyn1414' +, 'Both are Spielberg-adjacent blockbuster entertainment from the 80s and 90s that blend spectacle with a genuine love of storytelling.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 398232 +, 400612 +, 7 +, 'guyn1414' +, 'Both are well-crafted American TV dramas of the 1970s where a strong lead anchors every episode.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10702 +, 21213 +, 7 +, 'guyn1414' +, 'Both follow a protagonist who defies the worlds expectations and pushes toward a future on their own terms.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30965 +, 393012 +, 7 +, 'guyn1414' +, 'Both are superhero productions that celebrate the fun, larger-than-life side of comic-book heroism.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 14157 +, 406158 +, 7 +, 'guyn1414' +, 'Both are 2003 crowd-pleasers about groups of people pulling together when everything seems to be falling apart.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 10920 +, 30965 +, 7 +, 'guyn1414' +, 'Both are mid-budget blockbusters that turned their sequels into definitive action spectacles of their decade.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 395271 +, 10702 +, 8 +, 'guyn1414' +, 'Both are 1970s stories about working-class women refusing to be defined by the men around them.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 30952 +, 381392 +, 7 +, 'guyn1414' +, 'Both end one Batman era and begin another, asking what the legacy of the Dark Knight means for the next generation.' +, NULL +); + +INSERT IGNORE INTO movies_recommendations VALUES +( 406158 +, 30951 +, 7 +, 'guyn1414' +, 'Both are superhero stories where the emotional core is the hero trying to protect the people he loves.' +, NULL +); + +select +suggested_by +, count(*) as recommendations +, sum(if(recommendation>5,1,0)) as positive_recommendations +, sum(if(recommendation<=5,1,0)) as negative_recommendations +, sum(if(recommendation>5,1,0)) >= 100 and sum(if(recommendation<=5,1,0)) >=100 as completed +from +movies_recommendations +group by +suggested_by +order by completed desc, suggested_by +; diff --git a/recommendations_goldstandard/recommendations/movies_recommendations_agg_2026.sql b/recommendations_goldstandard/recommendations/movies_recommendations_agg_2026.sql new file mode 100644 index 00000000..2fd24d91 --- /dev/null +++ b/recommendations_goldstandard/recommendations/movies_recommendations_agg_2026.sql @@ -0,0 +1,4711 @@ + +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2,672,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2,910,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (6,2,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (31,32,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (31,36,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (33,38,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (36,558,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (36,572,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (38,480,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (38,558,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (38,676,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (38,909,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (38,921,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (38,926,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (41,44,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (44,350,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (51,52,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (52,53,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (53,52,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (61,62,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69,73,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69,548,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (72,220,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (72,223,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (72,603,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (72,823,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (72,845,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (73,2,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (73,606,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (94,345,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100,51,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100,101,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (101,393,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (101,713,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (108,10702,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (108,30965,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (108,400612,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (108,405119,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118,124,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (121,399427,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130,551,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (136,1054,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139,487,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139,1018,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141,1019,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (153,563,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (153,603,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165,44,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165,72,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165,181,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (178,180,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (179,182,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (180,181,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (181,183,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (181,558,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (182,179,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (184,52,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (195,610,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (196,198,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (196,618,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (196,1057,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (198,628,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220,585,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (223,230,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (223,603,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (223,807,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (230,682,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (245,634,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (245,1097,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (249,165,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (249,220,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (249,417,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263,151616,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263,400853,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291,337,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291,845,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328,345,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (329,349,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (334,529,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337,6,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337,645,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (338,69,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (338,352,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (338,548,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (338,549,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (338,869,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (349,450,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350,352,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (352,558,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (365,378,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (365,829,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (370,390691,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (378,11,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (393,572,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (393,1087,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (400,195,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (408,499,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (408,644,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (413,329,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (413,603,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (418,359,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (445,195,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (450,529,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (450,572,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (450,54209,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (467,340,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (476,713,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (480,38,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (480,558,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (503,467,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (503,822,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (509,417,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (517,137709,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (517,161705,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (517,391006,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (524,870,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (544,585,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (548,69,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (548,749,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (549,521,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (549,550,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (550,476,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (558,352,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (563,291,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (591,71,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (597,51,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (597,328,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (603,845,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (606,428,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (606,870,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (618,524,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (628,72,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (628,165,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (628,220,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (628,249,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (628,365,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (634,72,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (639,195,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,263,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,1038,7.5000,2.0615528128088303,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,30686,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,32707,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,32712,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,46878,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,47077,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,51413,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,66194,9.2857,0.8806305718527111,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,80050,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,96239,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,111442,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,112290,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,151616,7.0000,2.7386127875258306,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,187191,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,200864,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,209133,8.6667,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,263360,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,283410,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,298076,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,303545,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (644,362808,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,38,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,69,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,72,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,165,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,196,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,220,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,245,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,249,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,428,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,480,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,548,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,549,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,550,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,606,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,634,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,644,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,682,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,969,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (646,1038,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (661,178,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (661,179,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (661,7341,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (672,910,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (672,319710,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (675,395271,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (676,926,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (676,15187,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (707,822,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (713,184,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (725,728,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (726,724,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (726,725,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (726,728,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (726,399427,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (728,729,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (728,735,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (729,725,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (729,726,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (818,14157,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (823,72,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (823,644,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (829,628,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (837,831,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (837,16730,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (847,20218,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (847,210509,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (847,281334,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (848,639,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (849,190869,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (849,337166,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (850,191246,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (869,209158,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (870,524,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (870,606,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (870,17812,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (878,880,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (880,847,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (898,869,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (909,338,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (910,707,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (910,880,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (921,349,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (921,450,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (921,639,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (921,676,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (921,969,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (926,352,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (926,909,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (952,21454,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (953,230,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (953,1075,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (955,870,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (955,1016,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (969,69,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (969,349,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (969,548,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (969,549,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (969,111813,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (969,223799,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (969,241347,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (993,641,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (995,428,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (995,524,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (995,606,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (995,644,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (995,676,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (995,682,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (995,909,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (995,921,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (995,926,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (995,1038,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (995,1051,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1016,572,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1018,955,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1018,1019,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1018,210511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1019,1018,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1024,7341,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1038,644,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1038,7842,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1038,28085,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1038,66194,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1038,100241,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1038,151616,10.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1038,200521,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1038,200864,8.6667,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1038,247579,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1038,264157,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1038,333856,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1039,591,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1039,845,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1046,1029,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1048,450,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1048,1075,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1051,11,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1051,921,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1051,926,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1051,995,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1054,393,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1057,676,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1073,1036,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1087,521,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1097,618,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1121,14477,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1121,40199,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1121,129185,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1390,92616,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1390,94741,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1390,289109,2.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1390,318388,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1390,359297,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1529,109421,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1711,644,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1711,1029,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1711,18979,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1711,40199,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1711,112205,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1711,207992,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1711,212097,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1711,299073,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1711,310184,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (1779,3100,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2000,644,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2000,10830,4.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2000,113305,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2000,242549,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2000,256839,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2000,262645,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2000,291221,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2000,300229,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2057,215880,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2238,10331,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2238,340652,6.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2352,214755,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2656,200521,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2709,2133,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2709,16943,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2709,138797,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (2709,294717,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (3100,12217,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (3634,165961,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (3634,399427,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (3634,400612,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (4367,116827,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (4367,193788,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (4948,350424,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (5009,46877,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (5009,227549,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (5009,346949,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (5573,24430,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (5573,189233,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (5573,375827,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (5889,310168,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (6219,45128,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (6249,97727,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (7341,178,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (7341,179,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (7341,661,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (7341,395271,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (7842,47130,6.0000,2.160246899469287,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (7842,56304,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (7842,230947,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (7842,337830,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (8183,62460,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (8183,113506,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (8183,131780,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (8183,200521,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (8183,209158,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (8183,333856,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (8820,280270,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9023,20371,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9023,68940,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9023,86274,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9023,310726,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9023,342685,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9125,18979,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9125,24430,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9125,105891,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9125,226939,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9795,7099,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9795,133723,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9795,143526,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9795,191246,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9795,192013,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9795,207992,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9795,215346,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9795,258509,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (9813,379327,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,3634,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,7842,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,8183,5.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,12744,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,14132,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,21213,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,30686,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,30965,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,31715,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,67395,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,118980,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,326155,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,395271,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,397250,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10702,400612,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10741,10141,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10741,19423,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,7825,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,10916,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,10920,9.0833,0.7592027982620254,12,12); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,10945,2.6667,0.4714045207910317,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,39551,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,40199,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,129185,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,151052,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,158999,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,165961,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,190869,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,214755,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,256839,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,262645,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10830,328281,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10831,10832,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,1121,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,2067,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,9813,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,10702,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,10830,6.6667,1.8856180831641267,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,10831,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,10916,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,10945,2.7500,0.43301270189221935,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,15187,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,21213,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,22651,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,25192,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,28631,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,30965,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,40199,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,66194,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,79675,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,102341,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,151052,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,256530,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,256839,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,262645,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,268280,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,289109,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,328277,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,328281,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,399427,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10920,406158,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (10945,112290,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (11147,30957,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (11147,383395,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (11147,406158,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (11286,33,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (11286,14132,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (11286,25192,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (11286,28631,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (11286,406158,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (11360,158999,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (12217,220273,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (12217,310130,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (12744,65811,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (12744,89823,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (12744,96593,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (12744,289109,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13343,381392,6.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13343,406158,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13396,13395,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13396,399427,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13787,11510,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13789,14131,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13789,72559,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13789,158999,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13789,194874,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13789,227549,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13789,279420,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13789,340901,7.6667,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13978,2136,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13978,13789,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13978,48792,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13978,112290,5.5000,3.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13978,270971,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13978,290070,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13978,297838,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (13978,306311,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14131,14132,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14131,14230,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14131,151616,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14131,239786,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14131,279460,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14132,1038,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14132,8183,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14132,10702,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14132,11286,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14132,14131,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14132,14157,7.5000,2.692582403567252,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14132,15187,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14132,30686,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14132,289666,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14132,395271,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14132,397250,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14132,406158,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14145,74010,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14145,84956,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14145,112290,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14157,1038,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14157,8183,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14157,10702,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14157,11286,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14157,14132,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14157,15187,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14157,406158,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14218,32180,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14477,21213,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14477,67395,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14477,94741,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14477,100130,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14477,149287,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14477,159167,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14477,159172,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14477,159175,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14477,214755,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14477,290070,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14477,359297,2.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14942,26081,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (14942,387105,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (15187,69812,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (15187,240327,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (16006,5836,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (16006,9125,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (16006,89057,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (16006,105462,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (16006,227549,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (16006,324061,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (16006,375827,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (16730,21213,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (16730,280281,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (17103,17105,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (17103,193788,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (17103,327536,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (17760,57654,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (17760,73303,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (17760,138444,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (17760,147694,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (17760,204163,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (17760,204190,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (17760,305390,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (17760,313583,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18441,10830,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18828,5545,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18828,162302,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18828,195702,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18828,312934,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18960,1339,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18960,39551,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18960,70248,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18960,121538,8.8000,0.7483314773547881,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18960,254986,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18960,257459,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18960,289109,6.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18960,326155,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18960,340652,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18960,360480,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18979,20371,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (18979,328272,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (19433,280282,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (20218,848,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (20253,34104,7.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (20253,97727,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (20253,233058,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (20253,350424,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (20446,47456,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,1121,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,9813,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,10702,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,12744,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,15187,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,16730,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,20253,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,22651,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,25192,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,65811,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,214755,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,289109,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,290070,2.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,359297,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,379931,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (21213,406158,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (22093,175883,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (22651,256839,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (24235,280284,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (24259,280305,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (24430,2135,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (24430,9125,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (24430,24429,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (24430,24432,5.5000,3.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (24430,130129,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (24430,226939,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (24432,24429,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,108,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,1121,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,8183,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,10702,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,12217,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,14157,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,20253,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,21213,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,22651,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,30686,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,30952,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,56304,5.0000,2.160246899469287,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,56871,8.0000,0.7071067811865476,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,123849,5.6667,1.247219128924647,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,131780,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,270971,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,324061,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,330670,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,336445,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,406158,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (25192,406759,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26064,61291,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26064,199255,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26081,1787,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26081,72559,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26844,509,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26844,26846,9.2000,0.9797958971132715,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26844,26847,2.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26844,31274,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26844,98681,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26844,131885,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26844,134672,8.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26844,174918,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26844,271095,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26844,328285,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26846,1030,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26846,26844,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26846,26847,4.6667,2.494438257849294,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26846,342384,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26847,26846,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (26847,365498,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (27132,27171,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (27132,188507,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (27168,263,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (27168,24430,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (27168,27171,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (27486,80015,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (27486,114618,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (27486,139543,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (27486,185537,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (28085,28631,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (28092,69469,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (28631,90837,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (29760,849,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (29771,220276,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30686,25192,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30686,46878,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30686,276085,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30686,330670,8.6667,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30686,336445,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30951,30952,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30951,30962,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30951,30965,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30951,379290,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30952,30955,2.6667,1.247219128924647,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30952,30957,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30952,30959,2.3333,0.9428090415820634,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30952,30961,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30952,30965,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30952,30967,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30952,30968,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30952,129185,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30952,311037,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30952,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30952,319602,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30952,381392,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30952,406158,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,2238,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,6859,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,30951,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,30952,1.5714,0.4948716593053935,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,30957,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,30959,8.7500,1.0897247358851683,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,30965,2.7500,0.4330127018922193,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,30967,8.2500,2.1065374432940898,8,8); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,57064,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,97727,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,311036,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,311037,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30955,319602,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,30951,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,30952,1.6667,0.4714045207910317,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,30955,8.0000,1.8516401995451028,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,30965,2.4000,1.019803902718557,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,30967,4.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,30970,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,30976,5.6667,1.699673171197595,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,30977,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,54209,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,57064,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,134979,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,152426,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,162380,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,207992,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,210511,8.5000,0.5,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,214755,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,311037,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,311038,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,319602,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30959,381392,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30961,30962,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30961,30976,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30962,30955,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30962,30961,5.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30962,30965,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30962,381392,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30962,406158,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30965,11147,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30965,30686,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30965,30952,3.6000,2.8000000000000003,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30965,30955,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30965,30957,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30965,30959,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30965,30961,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30965,30962,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30965,30967,8.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30965,30968,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30965,379931,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30965,383395,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30965,393012,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30965,406158,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30967,30952,1.6667,0.4714045207910317,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30967,30955,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30967,30965,3.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30967,30976,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30967,79044,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30967,97727,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30967,142491,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30967,304862,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30968,30951,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30968,30952,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30968,30955,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30968,30957,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30968,30961,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30968,30965,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30970,30976,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30970,319602,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30976,30951,6.5000,3.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30976,30952,1.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30976,30955,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30976,30959,7.0000,1.7320508075688772,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (30976,381392,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (31715,14477,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (31715,54209,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (31715,67395,6.7500,2.165063509461097,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (31715,257744,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (31715,400853,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32114,3177,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32114,30952,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32114,64093,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32114,127627,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32114,131665,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32114,297838,6.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32114,310992,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32166,9795,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32166,30952,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32166,215346,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32166,340799,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32178,1225,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32178,9795,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32178,24430,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32178,129763,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32178,191246,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32178,192017,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32178,258509,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32178,325098,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32178,367073,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32179,64077,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32180,9813,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32180,29768,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32180,34304,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32180,70959,8.3333,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32180,97727,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32180,175881,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32180,304862,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32180,337166,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32707,20253,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32707,330670,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32707,336445,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32712,32713,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (32712,235790,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (33179,6219,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (33179,90772,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (33179,207992,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (33492,10702,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (33492,62460,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (33492,118980,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (33492,183370,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (33492,257744,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (33923,2238,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (33923,30965,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (33965,38743,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34077,113277,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34077,117874,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34077,123435,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34077,220276,6.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34077,247579,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34077,291698,5.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34077,350424,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34104,28092,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34104,41518,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34104,62460,6.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34104,64230,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34104,74259,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34104,89441,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34104,97727,8.5000,1.5,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34104,113506,7.0000,2.345207879911715,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34104,245699,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34104,292671,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34304,123849,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34306,66194,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (34306,151616,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (35522,263,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (35522,67052,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (35522,127627,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (35522,188507,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (35522,213231,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (35522,365498,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (35523,35522,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (36426,218219,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (36694,1038,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (36694,148201,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (37002,138797,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (37057,117874,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (37178,2018,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (37178,16006,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (37178,41308,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (37178,109093,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (37178,267038,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (37178,271339,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (37178,283739,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (37178,326155,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (38232,38237,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (38232,116827,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (38237,87075,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (38614,206255,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (38743,198835,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,1121,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,1390,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,10830,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,18960,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,30686,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,39829,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,46169,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,101055,7.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,129185,5.6667,1.699673171197595,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,185127,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,289109,7.4286,2.7180425129200643,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,326155,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,331427,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,335835,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,340652,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,343874,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,360480,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39551,370017,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39829,10830,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39829,40199,5.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39829,129185,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39829,130945,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39829,185628,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39959,138792,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (39959,303564,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40187,57064,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40187,142491,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40187,152426,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,1711,6.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,6868,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,10830,7.6667,1.8856180831641267,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,21213,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,31274,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,39551,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,61751,9.0000,0,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,65764,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,66194,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,102225,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,112205,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,122658,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,129185,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,207992,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,212097,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,214755,7.0000,2.160246899469287,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,218219,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,218808,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,256839,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,291698,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,313459,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,350189,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40199,370017,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40226,149957,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40226,303564,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40472,144760,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40472,279755,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40472,301669,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40854,275140,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (40854,302073,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (41308,152222,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (41308,271339,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (41518,30686,8.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (41518,56304,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (41518,56871,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (41518,233058,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (41518,258948,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (41988,102344,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (41988,194818,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (41988,365169,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (42056,302696,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (42983,280478,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (43883,12217,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (43883,90772,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (43883,131780,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (43883,200521,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (43883,209158,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (44034,107166,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (44034,163715,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (44034,267215,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (44034,281334,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (44238,70959,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (44238,240327,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (44450,161481,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (44450,335834,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (44844,283739,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (45126,24703,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (45128,45129,9.3333,0.47140452079103146,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (45128,67052,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (45128,86274,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (45128,193504,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (45128,215876,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (45128,215877,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (45128,215880,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (45129,4536,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (45129,45128,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (45129,114719,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (45312,209158,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (45377,258132,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46121,222112,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46167,45312,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46167,270628,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46168,4369,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46169,31274,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46169,32900,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46169,129185,8.7500,0.43301270189221946,8,8); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46169,185628,7.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46169,185704,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46169,250746,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46169,279581,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46169,289109,6.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46169,310455,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46169,340652,5.2000,2.4,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46169,354178,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46169,365498,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46190,97727,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46215,238695,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46322,80583,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46322,86274,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46322,111442,9.0000,0,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46322,303545,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46322,313059,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46814,363780,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46877,210511,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46877,235790,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46877,362808,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46878,644,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46878,1038,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46878,8183,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46878,66194,5.6667,1.699673171197595,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46878,82868,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46878,118980,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46878,151616,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46878,175875,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46878,200864,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46878,257744,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46878,283410,7.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (46878,362808,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (47077,47078,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (47130,326155,7.6667,1.247219128924647,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (47132,145961,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (47132,254654,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (47422,32712,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (47422,387105,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (48075,263,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (48075,99164,4.5000,3.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (48075,118957,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (48075,189233,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (48075,209658,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (48075,279460,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (48792,195300,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (48792,238695,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (48950,18441,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (48950,297650,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (49696,62076,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (49696,85871,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (49696,241141,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (49696,271915,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (49696,335245,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (49696,346949,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (50012,268034,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (50639,9004,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (50639,90772,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (50639,215670,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (50639,350424,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (51413,56282,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (51413,319710,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (53821,149957,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (53921,97360,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (53921,98681,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (54209,131780,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (54209,185704,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (54209,291698,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (54209,326155,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (54350,160492,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (54879,320669,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (55625,209131,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (55625,281937,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (55727,337166,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56044,64729,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56044,131240,6.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56044,202537,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56044,304829,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56044,319181,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56282,97727,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56282,113506,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56282,200521,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56282,257744,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,8183,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,25192,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,27168,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,67388,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,82967,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,123849,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,130128,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,131780,7.4000,2.727636339397171,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,178994,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,181766,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,185704,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,208245,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,209158,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,238072,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,270971,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,279420,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56304,326155,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56431,13320,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56431,56871,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56431,69895,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56431,319486,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,14477,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,17370,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,18979,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,21213,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,25192,4.8000,1.9390719429665317,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,30686,3.0000,0.816496580927726,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,31274,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,41518,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,48075,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,60408,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,67395,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,82967,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,96593,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,117874,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,123849,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,131780,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,141544,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,149287,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,159167,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,160492,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,164572,3.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,166917,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,200864,2.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,214755,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,215876,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,238072,8.2500,0.4330127018922192,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,238073,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,271095,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,289109,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,290070,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,306032,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,328272,8.6000,0.48989794855663565,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (56871,359297,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (58084,60408,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (58084,210511,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (58160,54209,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59578,32180,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59578,65762,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59578,70959,5.0000,2.8284271247461903,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59578,74259,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59578,96593,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59578,97727,6.5000,2.5,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59578,149287,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59578,191246,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59578,240327,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59578,259826,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59578,300229,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59578,300230,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59578,304862,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59578,367073,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59656,9813,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59720,32583,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (59720,190869,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (60408,13343,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (61155,105462,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (61155,220273,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (61291,39551,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (61291,48950,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (61751,21213,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (61751,40199,7.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (61751,139655,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (61751,214755,5.0000,2.160246899469287,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (61751,319241,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (61751,359297,6.0000,1.4142135623730951,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62076,70248,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62076,182955,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62076,258948,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62076,326155,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62076,348944,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62460,33492,9.5000,0.5,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62460,34104,7.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62460,46878,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62460,69469,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62460,70507,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62460,89823,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62460,113506,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62460,120506,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62460,200864,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62460,233058,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62460,245699,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (62460,311428,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (63125,97727,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (63134,104681,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (63134,351187,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (64077,304782,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (64093,66286,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (64093,280270,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (64230,67395,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (64729,25192,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (64729,319181,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (64951,294028,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65522,247579,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65578,297838,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65602,118980,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65627,139169,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65762,151616,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65764,13978,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65764,92616,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65764,121538,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65764,151052,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65764,326155,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65811,1225,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65811,21213,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65811,56871,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65811,67395,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65811,96593,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65811,165961,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65811,289109,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65811,290070,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65885,99164,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (65885,191723,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,94,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,644,8.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,1038,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,13963,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,30686,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,46322,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,46878,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,78702,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,80050,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,104681,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,111442,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,121912,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,187191,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,200521,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,200864,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,209133,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,209158,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,220276,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,263360,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,264157,6.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,283410,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66194,313059,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (66286,275453,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67052,68940,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67052,141544,8.6667,1.247219128924647,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67052,281334,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67052,319486,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67052,337814,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67388,69812,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67388,123849,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67388,185704,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67388,238072,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67388,270971,8.0000,0.816496580927726,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67388,326155,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67395,14477,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67395,21213,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67395,31715,6.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67395,96593,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67395,185704,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67395,271095,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67395,289109,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67395,290070,5.5000,3.0413812651491097,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (67395,297838,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (68065,319027,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (68232,35522,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (68232,37002,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (68232,127627,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (68309,102341,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (68309,328281,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (68940,3264,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (68940,20371,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (68940,105723,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (68940,125549,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69469,33492,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69469,212104,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69812,112290,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69812,123435,6.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69812,188507,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69812,210511,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69812,215876,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69812,247579,7.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69812,291698,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69812,301540,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69812,303564,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69812,350424,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69895,96593,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69895,158999,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69895,313476,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69895,319241,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (69895,359297,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (70507,13395,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (70959,6249,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (70959,59578,7.6667,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (70959,97360,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (70959,97727,8.6667,0.9428090415820632,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (70959,129042,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (70959,141779,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (70959,191246,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (70959,218219,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (70959,337166,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (70960,231917,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (70981,116827,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (70981,238072,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (72559,13978,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (72559,290070,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (73303,57654,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (73303,147694,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (73303,305390,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (73303,313583,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (73436,68940,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (73436,218415,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (73436,346059,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (73574,240327,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (73913,56304,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (73913,282452,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (74133,13396,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (74259,644,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (74259,14132,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (74259,59578,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (74259,66194,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (74259,96239,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (74259,97727,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (74259,105851,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (74259,302696,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (74259,361688,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (75646,240327,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (77701,276085,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (77728,185628,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (78530,33923,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (78702,405119,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (78787,115106,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (78789,102225,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (78789,113337,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (78789,227549,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (78789,330610,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (78789,340901,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (78877,70959,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (78877,240327,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (79593,254128,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (79674,79675,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (79678,256839,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (79716,158999,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (79845,129185,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (80583,7099,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (80583,46322,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (80583,110319,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (80583,131665,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (80583,210511,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (80583,250514,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (80583,290378,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (80583,313059,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (80583,362188,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (80969,244421,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82662,4536,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82662,105617,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82868,248090,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82868,263360,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,27168,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,53921,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,56304,9.3333,0.47140452079103146,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,123849,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,127627,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,131780,9.3333,0.47140452079103146,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,141544,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,163715,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,209158,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,215876,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,267038,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,270971,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,303225,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (82967,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (83470,256839,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (84941,57064,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (84956,107842,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (84956,314745,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (85117,283410,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (85871,130953,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (85871,189403,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86263,85871,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86263,92573,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86263,120574,3.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86263,130953,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86263,192514,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86263,203649,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86263,215876,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86263,215880,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86263,240521,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86263,332065,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86263,335336,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86263,368418,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86263,370017,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86263,372233,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86274,1710,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86274,45128,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86274,72430,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86274,86279,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86274,86287,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86274,130128,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86274,188507,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86274,262645,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86274,310726,9.3333,0.9428090415820632,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86274,328277,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86274,346059,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86274,346060,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86279,86274,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86287,188507,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86287,310726,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (86399,7842,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (87075,87076,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (87075,102926,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (87075,116827,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (87280,48792,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (87280,195300,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (88763,88764,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (88763,89745,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (88763,116827,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (89057,227549,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (89057,375827,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (89288,105891,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (89288,202490,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (89441,218219,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (89745,121526,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (89745,137523,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (89823,8183,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90771,644,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90771,44034,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90771,55122,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90771,131780,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90771,296980,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90771,337814,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90772,263,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90772,57735,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90772,78789,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90772,134672,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90772,210511,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90772,215670,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90772,222194,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90772,309943,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90772,342384,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90772,375745,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (90837,210511,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (91763,65501,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (91763,215346,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (92323,263,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (92573,86263,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (92573,120574,8.8333,0.897527467855751,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (92573,130953,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (92573,192514,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (92573,215875,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (92573,215876,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (92573,218808,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (92573,332065,6.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (92616,1711,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (92616,65764,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (92616,230151,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (93829,10830,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (94741,56871,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (94741,96593,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (94741,100130,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (94741,109421,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (94741,149287,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (94741,158999,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (94741,159167,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (94741,159172,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (94741,159175,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (94741,165961,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (94741,214755,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (94741,318388,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (94741,359297,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (95078,5573,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (95396,302073,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (95396,304862,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96193,10920,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96239,238072,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96590,190869,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96590,262645,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,1390,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,10830,1.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,12744,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,20446,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,21213,5.6667,2.3570226039551585,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,26844,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,56871,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,65811,8.1429,2.231499907401901,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,73574,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,100130,5.6667,1.699673171197595,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,113506,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,116827,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,131885,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,149287,7.1667,2.3392781412697,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,159167,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,159172,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,165961,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,174918,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,175881,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,190869,7.6667,3.2998316455372216,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,199255,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,259826,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,271095,8.3333,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,289109,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,290070,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,308057,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96593,359297,3.8000,2.4,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (96681,406158,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97360,34104,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97360,34304,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97360,43883,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97360,53921,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97360,70959,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97360,97727,7.6667,0.4714045207910316,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97360,175872,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97360,194874,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97360,304862,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97360,372525,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97727,22651,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97727,34104,7.0000,2.8284271247461903,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97727,36426,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97727,37057,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97727,40187,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97727,59578,5.2000,2.039607805437114,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97727,70959,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97727,74259,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97727,78877,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97727,97360,4.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97727,113506,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97727,120506,2.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97727,300229,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (97727,304862,6.7143,3.1036515689143473,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (99164,1339,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (99164,199463,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (99330,264158,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (99633,406411,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (99875,1121,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100130,12744,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100130,14477,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100130,17370,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100130,21213,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100130,25943,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100130,56871,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100130,149287,5.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100130,159167,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100130,159172,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100130,159175,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100130,214755,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100130,290070,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100130,359297,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100138,313474,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100241,200864,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100241,282161,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100447,169393,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100451,112279,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100451,303888,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (100559,302073,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (101055,32900,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (101055,161481,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (101055,289109,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (101055,313474,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (101055,360480,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (101070,20371,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (101070,57762,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (101070,73436,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (101070,238695,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (101070,254785,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (101070,283434,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (101687,76231,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (102108,170522,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (102108,333856,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (102108,359297,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (102225,82662,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (102225,310130,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (102225,336458,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (102311,837,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (102926,81281,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (103334,289109,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (103755,254128,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (104266,1390,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (104338,2709,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (104338,9125,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (104338,32712,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (104338,107166,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (104338,146780,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (104338,210509,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (104338,210511,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (104484,10702,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (104699,9125,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (105587,31715,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (105587,51413,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (105697,14477,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (105851,245699,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (105891,281937,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (106217,2382,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (106489,4367,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (106489,302073,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (106790,62076,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (106790,194874,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (106790,200864,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (107166,31,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (107166,27171,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (107166,68940,5.0000,4,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (107166,112205,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (107166,114529,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (107166,121386,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (107166,321718,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (107166,338173,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (107166,340799,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (107257,99557,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (107257,159867,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (108052,116827,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (108336,102926,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (108336,121526,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (108336,233521,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (108822,108336,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (108822,108823,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (108822,286825,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109093,14385,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109093,31274,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109093,37178,8.8000,0.7483314773547881,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109093,127627,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109093,183879,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109093,237431,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109093,289558,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109421,1038,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109421,1529,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109421,41518,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109421,54209,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109421,120506,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109421,162380,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109421,200521,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109421,220805,6.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109421,310726,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109421,335835,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109421,350424,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109421,370017,6.0000,1.8708286933869707,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (109608,91763,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (110509,33492,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (110912,120586,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (110912,303888,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111161,44238,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111161,114709,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111161,120815,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111442,644,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111442,3095,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111442,13978,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111442,46322,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111442,257264,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111442,297838,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111442,303545,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111813,76382,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111813,94958,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111813,297838,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111963,129042,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (111963,220276,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112205,1026,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112205,33923,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112205,132747,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112205,207992,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112205,210739,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112205,365498,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112279,226507,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112279,247436,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,14145,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,34077,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,109093,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,123435,5.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,176711,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,210511,7.2500,1.299038105676658,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,215670,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,238695,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,239851,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,247579,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,267038,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,270628,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,276085,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,291698,8.5000,2.0615528128088303,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,292671,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,319486,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,326155,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112290,350424,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (112401,193788,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113277,34077,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113459,56304,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113459,238072,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113459,306032,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113504,94,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113504,61291,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113504,81954,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113504,155213,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113504,190869,2.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113504,218415,8.8571,0.989743318610787,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113504,222112,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113504,272644,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113504,297650,3.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113504,337404,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113504,338821,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,12744,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,30686,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,31715,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,34077,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,34104,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,46167,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,64230,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,96593,7.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,97360,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,97727,8.0000,0,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,149287,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,175872,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,190869,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,191246,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113506,300233,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113547,20253,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (113814,34104,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (114067,4687,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (114067,68309,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (114067,116466,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (114709,99557,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (114709,120815,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (114955,21213,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (114955,235615,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (114955,280305,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (116358,200521,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (116524,116827,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (116556,53921,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (116556,123435,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (116556,210511,7.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (116556,247579,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (116556,292671,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (116556,370017,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (116829,46878,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117314,130945,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117314,189403,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117314,203649,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117314,312170,7.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117582,14477,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117582,34304,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,5936,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,30952,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,37002,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,56431,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,90772,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,129439,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,131780,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,134077,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,134672,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,154709,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,174918,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,227549,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,239786,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,254986,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,270628,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,270971,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,271192,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,280270,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,289109,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,290070,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,297838,9.0000,0,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,330670,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,340901,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,365498,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (117874,387105,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118367,176711,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118367,176712,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118367,267038,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118367,342512,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118393,109608,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118393,235790,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118393,276085,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118689,84956,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118689,138463,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118689,292671,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118689,314965,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118980,10702,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118980,36426,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118980,62460,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118980,183370,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118980,257744,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118980,263360,3.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (118980,270971,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (119358,248878,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (119879,50639,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (119879,57735,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (119879,124554,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (119879,362312,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120478,83901,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120506,62076,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120506,200864,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120506,301540,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120506,304862,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120574,2238,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120574,30959,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120574,79716,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120574,85871,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120574,86263,1.6667,0.4714045207910317,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120574,92573,8.5000,0.8660254037844386,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120574,130945,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120574,130953,9.4000,0.48989794855663554,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120574,218808,2.0000,0.816496580927726,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120574,240521,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120574,332065,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120574,354178,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120815,99557,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120815,330185,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (120838,143900,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (121386,45128,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (121538,2382,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (121538,18960,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (121538,65764,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (121538,176891,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (121538,207390,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (121538,257459,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (121538,360480,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (121552,350189,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (121852,243587,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (122277,59578,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (122658,10920,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123371,22651,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123435,112290,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123435,210511,7.7500,1.6393596310755003,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123435,233058,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123435,244421,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123435,247579,7.0000,1.224744871391589,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123435,291698,8.3333,0.47140452079103146,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123435,292671,3.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123435,350424,4.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123849,25192,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123849,56304,6.3333,1.699673171197595,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123849,131780,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123849,185704,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123849,209158,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123849,270971,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (123849,326155,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (124554,1711,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (124554,21213,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (124554,78787,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (124554,207992,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (124554,340901,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (126792,62460,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129042,141779,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129042,248090,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,1121,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,2238,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,3274,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,10331,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,10830,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,20446,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,24430,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,25192,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,31256,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,31274,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,33923,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,40199,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,46169,9.0000,0.7071067811865477,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,123849,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,131672,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,143505,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,175879,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,177636,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,178929,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,185628,4.5000,3.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,194497,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,194500,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,219541,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,256632,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,270971,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,271095,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,279757,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,280305,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,289109,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,290070,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,340652,6.1250,2.521780125229002,8,8); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129185,347807,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129369,300229,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (129887,14132,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130121,131780,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,13309,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,18960,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,27168,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,30952,1.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,31274,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,37178,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,53921,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,56304,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,127627,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,130129,9.8750,0.3307189138830739,8,8); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,130130,4.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,131780,9.6667,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,159172,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,207992,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,215876,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,238072,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,267038,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,289109,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,290070,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,297838,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,313478,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,313479,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,326155,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130128,337166,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,2634,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,7099,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,27168,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,127627,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,130128,9.6667,0.47140452079103146,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,130130,6.6667,1.2472191289246473,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,131780,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,159172,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,207992,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,215876,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,238072,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,267038,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,289109,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,290070,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,297838,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,313478,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,313479,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130129,337166,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130506,130507,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,30959,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,85871,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,86263,2.0000,0.7071067811865476,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,120574,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,130953,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,188507,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,192702,7.3333,2.3570226039551585,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,215875,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,215876,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,218808,3.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,332065,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,335336,6.3333,2.808716591058786,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,354178,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,368418,6.6667,2.6246692913372702,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,370017,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130945,372233,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,30959,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,85871,3.6000,1.0198039027185568,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,86263,2.0000,0,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,92573,9.0000,0.816496580927726,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,117314,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,120574,9.0000,1.2649110640673518,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,130945,7.0000,2.3452078799117144,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,192514,6.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,203649,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,218808,2.2500,0.8291561975888498,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,240521,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,312170,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,332065,8.7500,0.4330127018922192,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,335336,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,354178,3.5000,2.06155281280883,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,368418,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,370017,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (130953,372233,7.5000,2.692582403567252,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131537,5836,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131537,145575,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131665,5184,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131665,32114,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131665,80583,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131665,185192,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131665,238072,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131665,271192,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131665,280270,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,20,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,1390,3.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,3095,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,25192,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,32166,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,35522,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,41518,5.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,45312,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,47130,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,54209,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,55122,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,56304,8.4545,2.1893808325076902,11,11); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,56871,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,82967,9.0000,0,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,98681,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,112290,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,123849,7.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,127627,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,130128,8.6667,1.795054935711501,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,130129,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,134676,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,159172,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,164572,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,177369,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,178994,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,185704,2.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,200521,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,207992,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,209158,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,215876,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,230963,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,238072,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,267038,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,289109,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,289558,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,290070,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,294855,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,297838,8.6667,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,313478,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,313479,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,326155,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,337166,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131780,397121,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,54209,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,73574,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,96593,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,111442,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,148200,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,149287,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,159172,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,159175,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,170721,4.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,188511,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,208245,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,264146,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,267038,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,271095,8.0000,0,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,312150,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,313059,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,319602,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (131885,337166,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (133093,147603,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (133093,149287,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (133093,247436,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (133401,87280,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (133401,360723,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (133574,87323,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (133574,250612,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (133574,312934,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (133574,363300,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (133608,1038,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (133725,27171,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (133725,313601,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134077,5936,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134077,137655,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134077,201260,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134077,297838,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134193,4801,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134193,134195,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134672,2709,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134672,9897,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134672,37002,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134672,155251,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134672,262645,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134672,340901,9.0000,0.816496580927726,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134672,362808,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134675,134676,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134675,151616,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134676,134675,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134677,134680,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134680,66194,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134680,134677,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (134979,30959,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137259,61155,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137259,105462,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137427,137428,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137427,216772,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137427,303888,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137523,116827,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137655,40226,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137655,44238,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137655,120116,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137655,232458,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137655,291221,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137655,299073,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137709,517,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137709,383395,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (137958,644,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (138013,236490,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (138142,67395,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (138444,57654,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (138444,147694,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (138444,305390,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (138444,313583,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (138792,61282,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (138797,5936,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (138797,37002,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (138797,228310,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139650,2118,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139650,92868,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139650,139651,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139650,139652,8.8000,0.7483314773547882,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139650,139653,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139650,139654,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139650,139655,9.3846,0.7378202343558031,13,13); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139650,139657,9.6000,0.8,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139650,170522,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139650,194502,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139650,294028,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139650,304862,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139652,30959,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139652,105587,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139652,139650,6.3333,2.8674417556808756,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139652,139651,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139652,139653,8.6000,0.4898979485566355,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139652,139654,9.2000,0.9797958971132711,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139652,139655,9.0000,1.0000000000000002,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139652,139657,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139652,194500,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139652,194502,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139652,313476,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139653,120574,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139653,130953,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139653,139649,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139653,139650,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139653,139651,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139653,139652,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139653,139654,9.3333,0.9428090415820636,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139653,139655,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139653,139657,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139653,175881,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139654,61751,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139654,78877,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139654,139650,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139654,139651,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139654,139652,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139654,139653,8.3333,1.699673171197595,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139654,139655,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139654,139657,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,1338,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,58084,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,100447,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,139650,6.0000,3,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,139651,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,139652,9.0625,0.8992184106211348,16,16); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,139653,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,139654,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,139657,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,140221,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,192172,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,194497,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,218219,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,256632,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,313476,5.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139655,338821,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,2118,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,105587,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,116827,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,139650,9.0625,1.197327753791751,16,16); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,139651,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,139652,8.5000,1.118033988749895,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,139653,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,139654,7.5000,2.692582403567252,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,139655,8.8000,1.077032961426901,10,10); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,148200,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,149287,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,170522,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,191246,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,194497,7.6667,1.247219128924647,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,194502,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,218219,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,240327,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,264146,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (139657,313474,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (140221,201302,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,969,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,46878,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,56304,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,67052,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,68232,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,68940,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,69812,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,82967,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,90771,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,127627,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,131780,8.3333,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,182955,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,224842,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,245103,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,289558,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,291698,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141544,330566,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (141779,148614,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142491,30959,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142491,40187,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142491,40191,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142491,142492,8.4286,1.4982983545287878,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142491,152426,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142491,267215,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142491,311037,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142491,311038,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142491,346364,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142491,350189,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142491,369458,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142491,383395,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142491,406158,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142492,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142492,142491,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142492,162380,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142492,311038,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142492,393012,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142881,74259,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (142881,163571,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (143526,31,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (143526,192017,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (143526,300229,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (143529,15887,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (143582,215875,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (143900,121526,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (144536,33923,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (144536,120574,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (144804,5009,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (144804,131780,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (145961,254654,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (146758,83470,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (146943,215879,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (147603,147604,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (147603,243155,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (147936,322934,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (148200,3095,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (148200,131885,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (148200,148203,7.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (148200,221259,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (148201,143505,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (148201,148203,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (148203,3095,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (148203,221259,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (148614,141779,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,26844,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,34304,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,94741,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,96593,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,113506,6.5000,3.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,116827,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,131885,8.4000,1.019803902718557,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,139657,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,141779,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,159172,5.0000,2.8284271247461903,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,159175,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,165961,3.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,170721,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,190869,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,214755,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,256632,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,259826,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,264146,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,271095,5.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,289109,1.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,290070,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,292671,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,337166,8.6667,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149287,359297,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149388,140783,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (149388,275453,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,263,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,644,8.3333,0.47140452079103146,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,1038,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,28092,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,41518,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,46878,6.0000,2.5495097567963922,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,66194,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,175880,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,200521,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,200864,6.2000,1.9390719429665317,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,220276,6.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,220805,7.3333,1.699673171197595,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,245699,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,263360,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,283410,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (151616,350424,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (152222,271339,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (152717,152718,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (152724,28751,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (152724,95120,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (152724,258509,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (152856,96593,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (152856,154847,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (153190,57654,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (153190,147694,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (153190,305390,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (153190,313583,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (154847,152856,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (155069,144956,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (155070,214755,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (155070,279841,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (155070,313820,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (155213,94,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (155213,199255,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (155213,279888,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (155213,297650,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (155634,210509,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (155634,210741,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (157132,320303,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (157378,14218,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (157378,121526,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (157378,247436,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (157595,311040,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (157702,147936,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158927,61291,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158927,108760,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158927,113504,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158927,199255,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158927,310130,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158927,311040,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158927,337166,8.6667,0.9428090415820636,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158927,369458,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,94,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,9023,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,20371,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,47456,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,65811,3.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,68940,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,79716,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,81776,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,96593,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,117582,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,130202,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,168325,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,175883,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,207992,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,256839,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,279420,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,313474,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,313820,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,335835,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,342685,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,359297,6.6250,1.2183492931011206,8,8); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (158999,370017,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159167,159172,4.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159167,159173,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159167,159175,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159167,214755,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159167,271095,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159167,289109,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159167,290070,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,130128,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,130129,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,131780,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,131885,8.3333,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,143505,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,149287,6.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,159167,2.5714,0.9035079029052513,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,159173,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,159175,7.4000,2.0591260281974,10,10); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,185306,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,207992,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,208245,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,214755,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,215876,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,238072,6.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,267038,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,271095,9.4286,0.9035079029052515,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,289109,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,290070,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,297838,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,313478,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,313479,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,337166,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159172,359297,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159175,131885,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159175,159167,3.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159175,159172,8.6667,0.9428090415820634,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159175,159173,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159175,163715,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159175,174918,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159175,177328,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159175,185306,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159175,208245,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159175,214755,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159175,271095,8.6667,0.9428090415820632,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159175,359297,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159654,159656,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159654,317221,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159665,118367,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159665,164572,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159665,176711,8.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159665,185628,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159665,267038,6.6667,3.2998316455372216,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159665,276217,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159867,302073,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (159867,355001,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (160375,235615,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (160375,280305,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (160492,149957,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (160524,30959,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (160524,86263,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (160524,116556,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (160524,210511,7.3333,0.9428090415820634,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (160524,247579,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (160524,257756,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (160524,264157,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (160524,291698,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (160524,350424,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (160524,397121,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (161481,19054,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (161481,24430,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (161481,39551,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (161705,517,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (162352,263,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (162352,96593,10.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (162352,297650,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (162380,21213,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (162380,30952,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (162380,158927,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (162380,176711,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (162380,214755,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (162380,215880,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (162380,312150,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (162380,319602,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (162380,319613,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (162900,214755,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (163571,142881,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (163715,238072,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (164572,20,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (164572,14132,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (164572,120506,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (164572,130945,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (164572,131780,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (164572,176711,6.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (164572,176712,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (164572,178994,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (164572,200864,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (164572,238072,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (164572,267038,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (164572,276217,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,1034,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,1390,2.6667,0.9428090415820634,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,10830,7.5000,0.8660254037844386,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,65811,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,73574,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,96593,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,134193,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,155213,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,165976,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,214755,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,259826,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,271095,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,289109,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,290070,3.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,359297,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165961,370017,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165962,2000,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (165962,165961,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (166917,2135,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (166917,131665,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (166917,214755,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (166917,280270,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (166917,289222,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (166917,337814,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (167260,194500,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (167324,11525,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (167324,119756,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (167324,233307,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (167324,294855,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (168854,112290,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (168854,326155,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (169547,303888,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (170522,131885,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (170522,133725,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (170522,319416,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (170721,190869,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (173930,254943,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (173933,173931,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (173933,280270,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (173934,280281,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (174953,70959,5.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (174953,149287,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (174953,170721,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (174953,190869,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (174953,218219,9.3333,0.9428090415820632,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (174953,264157,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (174953,337166,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (174953,350189,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (175872,175873,3.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (175873,175872,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (175879,109421,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (175880,17370,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176711,31,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176711,40187,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176711,118367,2.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176711,159665,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176711,164572,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176711,176712,9.3333,1.2995725793078619,15,15); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176711,215880,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176711,219541,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176711,267038,4.3333,2.8674417556808756,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176711,267215,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176711,276217,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176711,350189,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176711,371844,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176711,383395,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176712,7999,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176712,33923,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176712,34104,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176712,120574,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176712,129185,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176712,159665,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176712,164572,7.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176712,176711,9.0000,1.2649110640673518,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176712,220276,2.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176712,223710,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176712,267038,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176712,276217,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (176712,346949,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (177267,33923,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (177267,120574,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (177328,33923,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (177328,120574,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (177328,178103,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (177369,53921,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (177369,73574,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (177369,168854,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (177369,200521,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (177369,270971,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (177369,326155,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (177369,397250,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (177636,40199,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (178103,165961,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (178218,46877,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (178994,41518,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (178994,306032,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (181452,159654,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (181452,181455,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (181452,277783,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (181766,1390,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (181766,185628,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (181766,185704,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (182955,2350,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (182955,24430,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (182955,62076,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (182955,72559,5.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (182955,90771,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (182955,127627,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (182955,141544,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (182955,274594,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (182955,279180,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (182955,337814,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (183370,8183,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (183370,33492,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (183370,62460,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (183370,118980,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (183370,257744,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (183873,46169,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (183873,97727,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (183873,183837,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (183873,244421,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (183873,311428,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185276,238342,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185276,247436,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185276,275140,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185492,129185,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185492,143505,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,1121,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,33923,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,45128,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,46169,8.5000,0.5,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,71564,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,77728,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,120574,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,129185,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,175881,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,177636,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,178929,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,183873,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,289109,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,335336,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,335835,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185628,340652,6.2500,2.384848003542364,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185704,181766,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185704,290070,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (185704,372525,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (186439,130128,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (186439,290070,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (186439,372525,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (187191,644,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (187191,57064,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (187191,84941,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (187191,215507,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (187191,298076,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188507,5092,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188507,27168,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188507,35522,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188507,86274,7.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188507,139169,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188507,188509,8.8889,0.737027731190089,9,9); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188507,188510,3.6000,1.019803902718557,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188507,188511,2.7500,0.8291561975888498,8,8); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188507,215875,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188507,337814,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188509,188510,7.2500,1.920286436967152,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188509,188511,3.7500,1.479019945774904,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188510,188511,6.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188511,86274,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188511,109421,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188511,158999,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188511,188507,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188511,188509,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188511,207992,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188511,210739,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188511,215879,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188511,220805,4.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (188511,370017,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (189233,263,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (189233,5573,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (189233,207157,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (189233,237008,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (189403,117314,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (189403,192702,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190129,254986,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190166,880,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190166,209170,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190590,276217,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,849,3.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,10830,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,28085,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,32180,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,47865,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,70959,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,78702,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,96593,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,122277,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,170721,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,182955,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,191246,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,218219,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,271344,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,300229,8.3333,1.2472191289246473,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,300230,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,311606,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,337166,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (190869,359297,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191244,95120,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,849,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,9795,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,32178,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,47865,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,59578,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,95120,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,155213,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,190869,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,191244,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,218219,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,258509,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,264157,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,300229,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,311262,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,325098,5.5000,3.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,337166,9.3333,0.47140452079103146,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191246,372525,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (191723,224842,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192013,32166,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192013,289558,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192016,9795,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192017,32178,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192017,95120,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192017,258509,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192017,278498,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192514,203649,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192514,332065,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192514,335336,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192514,354178,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192702,85871,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192702,117314,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192702,189403,5.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (192702,203649,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (193253,238072,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (193253,276217,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (193253,306032,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (193504,210511,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (193788,193790,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (193788,193791,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (193788,327534,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (193790,193791,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194123,66286,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194204,65764,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194495,194504,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,4822,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,7048,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,31274,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,34304,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,63208,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,82868,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,129185,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,139657,6.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,149287,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,194492,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,194493,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,194495,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,194500,9.2000,0.7483314773547881,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,194502,9.7333,0.573488351136175,15,15); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,218219,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,313459,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,313474,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,313478,7.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,340652,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194497,359297,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194500,32114,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194500,46169,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194500,99875,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194500,129185,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194500,194497,9.5000,0.5,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194500,194502,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194500,207991,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194500,313478,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194500,313479,7.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194500,340652,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194502,1073,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194502,100447,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194502,194495,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194502,194497,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194502,194500,9.8333,0.372677996249965,12,12); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194502,194501,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194502,313478,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194818,41988,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194818,102344,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194818,365169,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194874,104338,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194874,300945,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (194874,310726,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (195300,5009,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (195300,46878,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (195300,65764,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (195300,67052,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (195300,118393,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (195300,127627,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (195300,223719,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (195300,362808,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (198338,67052,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (198435,202537,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (199207,6926,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (199207,199209,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (199209,4687,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (199209,199210,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (199255,155213,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (199255,297650,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200521,1787,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200521,21213,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200521,43883,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200521,47130,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200521,56871,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200521,62460,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200521,72559,3.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200521,194874,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200521,200864,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200521,267038,8.0000,0,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200864,8183,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200864,46878,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200864,104484,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200864,263360,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200864,264157,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (200864,283410,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (201302,206881,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (201516,78787,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (201516,207989,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (202490,65578,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (203344,67052,6.6667,2.0548046676563256,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (203344,279420,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (203344,284621,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (203344,300230,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (203344,303225,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (203649,130953,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (203649,192514,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (203649,240521,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (203649,312170,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (203649,332065,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (203649,335336,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (203649,372233,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (203918,214755,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (203918,227549,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (204163,57654,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (204163,147694,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (204163,305390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (204163,313583,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (204190,57654,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (204190,147694,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (204190,305390,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (204190,313583,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (206119,256630,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (206881,105891,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (206881,149957,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (206881,170724,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (206881,309634,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (206975,238342,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (206975,330185,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207157,5573,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207157,95078,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207157,138797,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207157,310130,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207157,319416,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207390,129185,8.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207390,176711,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207828,365906,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207989,113337,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207989,214755,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207991,207989,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,26844,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,31274,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,40199,8.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,61751,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,78789,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,102225,4.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,130128,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,130129,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,131780,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,155070,6.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,159172,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,207989,5.6667,2.0548046676563256,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,207991,2.0000,0.816496580927726,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,214755,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,215876,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,219541,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,238072,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,257296,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,267038,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,289109,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,290070,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,297838,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,310130,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,310957,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,310992,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,313478,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,313479,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,328277,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,328285,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,336458,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,337166,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (207992,350424,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (208245,65764,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (208245,67388,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (208245,109421,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (208245,238072,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (208245,253010,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (208245,297382,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (208245,319602,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (208245,340652,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (208245,379327,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (209133,5184,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (209133,66194,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (209133,111442,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (209133,124554,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (209133,187191,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (209133,303545,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (209133,311061,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (209158,131780,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (209591,235541,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (209657,169476,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (209657,275289,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (209658,77728,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (209658,223719,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210509,254943,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210509,274589,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210509,295057,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,5573,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,14132,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,30959,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,30965,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,50639,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,57735,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,90772,7.6667,0.4714045207910316,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,112290,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,116556,9.0000,0.7071067811865476,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,123435,5.3333,2.6246692913372702,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,160524,9.0000,0,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,200521,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,222194,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,292671,3.3333,0.4714045207910317,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,303564,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,348944,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,350189,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210511,350424,5.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,5052,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,10830,3.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,40199,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,82662,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,96593,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,112205,8.3333,0.9428090415820632,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,117582,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,155070,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,158999,8.1667,1.2133516482134197,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,206488,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,210741,4.5000,2.29128784747792,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,214755,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,238072,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,256632,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,256839,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,275140,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,291698,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,311037,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,312150,5.6667,2.0548046676563256,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,313820,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,326155,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,340799,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,365498,2.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,370017,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (210739,398232,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,2135,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,10920,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,10945,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,40199,6.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,61751,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,65811,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,69812,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,101070,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,102225,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,112290,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,120574,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,121386,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,124554,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,155070,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,158999,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,207992,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,210511,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,231917,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,251247,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,336458,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,359297,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (214755,370017,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215346,109608,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215346,137655,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215346,232458,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215346,240327,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215346,291221,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215507,57064,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215507,187191,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215507,215508,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215670,257756,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215874,40854,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215874,215875,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215875,130945,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215875,215873,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215875,215879,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215875,215880,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215875,238072,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,1874,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,22093,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,130128,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,130129,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,131780,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,159172,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,207992,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,215875,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,215878,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,215879,5.5000,2.9999999999999996,8,8); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,215880,7.5000,0.8660254037844387,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,237913,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,238072,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,267038,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,289109,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,290070,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,297838,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,310728,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,313478,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,313479,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,317221,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215876,337166,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215877,215879,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215879,175883,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215879,208503,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215879,215876,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215879,215880,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215880,22093,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215880,215875,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215880,215876,10.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215880,215877,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215880,215878,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215880,215879,6.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215880,220805,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (215880,238072,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (216772,303888,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218219,32180,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218219,70959,3.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218219,174953,9.8000,0.4000000000000001,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218219,176711,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218219,190869,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218219,194497,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218219,294028,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218219,304862,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218341,56304,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218415,5972,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218415,61291,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218415,113504,8.6667,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218415,129369,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218415,155213,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218415,279384,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218415,297650,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218599,880,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218599,253478,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218808,86263,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218808,117314,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218808,240521,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218808,313474,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (218808,354178,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,31715,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,34077,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,61156,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,62460,8.6667,0.47140452079103146,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,74259,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,111963,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,123849,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,129042,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,129439,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,175880,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,176711,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,185628,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,200864,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,220805,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,256632,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,302696,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220276,333856,7.8333,1.21335164821342,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,25729,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,56871,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,57894,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,69812,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,82868,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,86274,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,123435,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,163715,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,188507,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,210739,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,215876,6.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,215880,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,238072,6.6667,0.9428090415820634,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,256632,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,306032,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,328277,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,335835,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220805,372233,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220970,238342,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (220970,303888,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (221259,14275,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (221259,148203,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (221259,232845,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222112,5590,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222112,61291,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222112,152724,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222112,191246,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222112,258509,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222112,258510,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222112,264041,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222112,325095,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222112,337588,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222194,41988,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222194,90772,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222194,194818,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222194,319181,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222339,177328,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222339,256632,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222339,365498,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222831,13789,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (222831,223719,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (223499,257744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (223711,127627,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (223711,263360,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (223719,130128,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (223719,218341,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (223799,969,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (224842,82967,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (224842,134077,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (224842,150629,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (224842,182955,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (224842,360684,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (226507,226508,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (226508,238342,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (226939,9125,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (226939,182955,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (227549,112290,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (227925,207099,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (227925,208878,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (227925,257689,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (227925,299846,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (229428,12332,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (229428,273926,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (230151,33190,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (230151,132525,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (230151,270008,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (230151,335799,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (230947,7842,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (230947,123849,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (230963,8183,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (231917,308057,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (232104,79674,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (232425,18548,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (232425,61291,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (232425,70959,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (232425,149957,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (232425,293262,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (232425,319416,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (232458,40226,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (232458,120116,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (232458,266574,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (233058,44238,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (233058,59578,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (233058,69812,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (233058,120506,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (233058,240327,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (233058,299073,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (233058,304862,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (233058,372525,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (233521,120838,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (233521,121526,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235062,108,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235062,92573,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235062,130953,5.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235062,266574,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235062,273543,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235062,326155,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235062,397121,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235260,235261,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235261,107257,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235261,247436,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235541,2709,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235541,32712,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235541,46878,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235541,195300,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235541,294717,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235541,362808,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235615,114955,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235615,183370,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235615,328272,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235615,330670,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235676,206255,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235790,112290,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235790,118393,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235790,127627,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235790,195300,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (235790,263360,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (236490,108336,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (236490,290723,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (236490,302073,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,3095,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,15187,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,56304,3.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,56871,8.5000,0.957427107756338,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,62076,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,130128,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,130129,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,131780,5.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,158999,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,159172,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,163715,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,169547,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,175879,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,178994,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,200864,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,207992,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,208245,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,210511,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,210739,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,215876,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,215879,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,220805,6.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,238073,6.5000,2.3528098702858005,14,14); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,253010,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,267038,5.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,276217,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,289109,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,290070,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,297838,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,303888,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,306032,7.3333,2.3570226039551585,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,313478,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,313479,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,319486,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,337166,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,348944,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238072,371305,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238073,15187,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238073,56871,7.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238073,123435,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238073,176711,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238073,215876,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238073,238072,7.0000,1.8973665961010275,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238073,267038,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238073,291698,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238073,306032,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238073,348944,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238695,16006,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238695,37178,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238695,65578,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238695,319486,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (238695,358708,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (239786,14132,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (239786,290378,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (239851,14942,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (239851,227549,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (239851,291698,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240327,40226,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240327,120116,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240327,259826,7.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240521,30959,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240521,117314,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240521,120574,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240521,130945,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240521,130953,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240521,139653,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240521,192702,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240521,218808,1.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240521,312170,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240521,332065,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240521,354178,3.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (240521,372233,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (241347,230151,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (241347,297838,10.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (243155,303888,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (243910,114709,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (243910,302073,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (243948,238342,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (244421,31715,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (244421,34104,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (244421,113506,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (244421,118980,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (244421,200864,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (244421,263360,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (244421,271344,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (244458,105891,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (244458,118689,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (244458,314745,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (244458,314965,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (244458,362312,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (245103,164572,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (245699,644,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (245699,46878,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (245699,102311,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (245699,151616,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (245699,175880,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (245699,200864,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (245699,263360,5.3333,2.8674417556808756,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (246816,151616,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (246816,303888,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (247436,302073,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (247579,123435,8.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (247579,131885,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (247579,148201,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (247579,210511,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (247579,214755,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (247579,258948,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (247579,291698,5.5000,2.0615528128088303,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (247579,301540,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (247579,310726,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (248090,14477,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (248878,1038,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (248878,119358,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (248878,148203,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (248878,363780,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (251979,312138,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (253010,46878,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (253010,56871,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (253010,185628,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (253010,188507,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (253010,200864,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (253010,235615,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (253010,318388,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (253440,222194,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (254597,10831,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (254597,10920,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (254597,268281,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (254785,57762,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (254785,273926,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (254943,104338,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (254943,169393,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (254986,32114,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (254986,67395,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (254986,149957,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (254986,176711,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (254986,290070,9.5000,0.8660254037844385,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (254986,372525,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256342,16490,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256342,258365,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256627,40199,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256627,56871,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256627,58084,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256627,247579,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256627,297838,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256630,159172,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256630,228313,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256630,256631,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256631,159172,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256631,228313,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256631,238072,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256631,256632,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256631,271095,7.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256631,300230,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,31256,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,34104,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,39551,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,47456,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,65762,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,71564,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,82967,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,95396,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,96239,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,97360,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,97727,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,113506,7.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,120506,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,129185,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,149287,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,159172,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,163715,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,175879,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,177328,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,189403,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,210739,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,218808,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,220805,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,228313,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,233058,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,238072,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,256631,6.0833,3.0127045804208694,12,12); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,264146,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,271095,7.6000,1.4966629547095764,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,279757,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,300229,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,304862,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,310728,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,311037,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,325805,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,340652,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,365498,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256632,370017,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256839,2000,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256839,10830,7.6667,0.4714045207910316,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256839,40199,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256839,313601,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (256839,370017,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257459,2018,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257459,18960,10.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257459,121538,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257459,185628,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257459,286350,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257459,360480,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257744,31715,5.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257744,57894,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257744,62460,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257744,118980,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257744,200521,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257744,263360,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257744,267038,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257744,333856,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (257756,160524,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (258603,121526,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (258603,236490,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (258789,258790,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (258860,113504,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (258860,310726,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (258948,69812,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (258948,292671,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (259826,40226,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (259826,120116,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (262645,5092,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (262645,10920,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (262645,68309,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (262645,102341,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (262645,280663,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (262645,328281,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (262645,328285,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,644,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,8183,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,62460,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,69812,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,127627,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,151616,8.5000,0.8660254037844388,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,185176,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,200864,8.3333,1.6996731711975948,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,220805,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,235790,8.0000,0.816496580927726,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,245699,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,264157,4.5000,3.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,267038,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,283410,7.6000,2.7276363393971716,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,298076,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,311428,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,336445,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,350424,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263360,360723,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263740,72559,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263740,118689,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (263740,182955,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264041,191246,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264041,338821,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264146,9795,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264146,131885,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264146,271095,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264157,644,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264157,1038,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264157,46878,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264157,66194,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264157,190869,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264157,200864,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264157,244421,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264157,263360,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264157,300230,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264157,340652,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264158,187191,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264158,264157,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264316,139657,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (264316,238342,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (265288,144760,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (265288,279755,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (265288,301669,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (266574,54209,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (266574,137655,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (266574,273543,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (266574,301540,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (266574,352639,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,37178,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,53921,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,69812,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,112290,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,118367,3.0000,0.816496580927726,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,127627,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,130128,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,130129,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,131780,9.6667,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,159172,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,164572,7.8000,1.4696938456699071,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,176711,8.2857,1.8294640678379568,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,193253,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,200521,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,207992,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,215876,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,238072,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,276217,9.1818,1.4024771473219557,11,11); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,289109,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,290070,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,297838,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,306032,7.5000,2.0615528128088303,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,310992,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,313478,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,313479,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,337166,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,350424,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (267038,387105,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (268280,268281,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (268280,327534,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (270622,57654,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (270622,147694,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (270622,305390,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (270622,313583,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (270971,14132,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (270971,123849,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (270971,131780,6.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (270971,177369,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (270971,209158,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (270971,256188,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (270971,280270,7.5000,1.5,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (270971,326155,8.2857,1.0301575072754257,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,1390,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,12744,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,31274,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,65811,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,131885,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,159167,2.6000,0.48989794855663565,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,159172,9.5000,0.6708203932499371,10,10); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,159175,8.6667,0.9428090415820636,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,165961,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,177328,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,207992,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,228313,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,238072,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,256632,8.0000,1.6733200530681511,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,264146,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,280270,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,289109,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,290070,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271095,359297,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271192,30952,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271192,32114,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271192,41409,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271192,117874,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271192,297838,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271192,304765,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271192,310992,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271192,313059,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271192,365498,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271344,1038,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271344,46878,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271344,151616,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271344,200864,6.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271344,264157,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (271915,371844,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (272644,113504,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (272644,155213,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (272644,218415,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (273543,230151,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (273543,235062,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (273543,266574,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (273543,352639,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (273585,38614,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (273585,206255,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (273585,235676,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (273585,281546,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (273585,316323,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (274069,12332,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (274069,43565,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (274069,178138,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (274069,263740,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (275140,238342,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (275140,275141,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (275453,66286,7.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276085,14145,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276085,30686,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276085,62460,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276085,299073,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276085,319462,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276085,326155,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276085,337830,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,3101,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,53921,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,159665,6.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,164572,6.6667,1.8856180831641267,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,176711,7.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,182955,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,267038,8.7500,1.0897247358851685,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,291698,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,306032,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276217,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276239,256839,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (276239,346364,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (277640,11360,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (277640,215876,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (277783,277784,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (277783,317221,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (277784,277785,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (278498,40226,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (278498,120116,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (278498,244458,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (278498,303564,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (279384,32583,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (279384,338821,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (279420,130128,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (279581,33923,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (279841,40199,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (279888,319416,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280073,238342,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280073,291829,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280115,20371,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280115,68940,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280115,86274,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,1779,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,30952,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,39551,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,41739,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,66286,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,89057,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,117874,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,129185,8.0000,0.7071067811865475,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,149388,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,173934,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,270971,3.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,280281,8.7500,1.010362971081845,12,12); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,280282,5.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,280284,3.0000,0,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,280305,2.9000,1.7578395831246945,10,10); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,280306,2.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,311492,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,324061,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280270,326155,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280281,280270,8.7500,1.0897247358851685,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280281,280282,7.4000,2.416609194718914,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280281,280284,5.3333,2.0548046676563256,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280281,280305,2.3333,0.4714045207910316,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280282,280270,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280282,280281,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280282,280284,7.7500,2.277608394786075,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280282,280305,3.0000,0.6324555320336759,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280284,129185,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280284,270971,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280284,280270,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280284,280281,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280284,280282,7.0000,2.160246899469287,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280284,280305,3.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280284,280306,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280305,46169,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280305,129185,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280305,280270,5.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280305,280281,4.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280305,280282,4.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280305,280284,7.6667,1.699673171197595,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280305,297838,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280687,116827,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (280687,137523,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (281334,24430,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (281334,45128,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (281334,105723,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (281334,163715,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (281334,193960,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (281546,206255,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (282452,73913,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (282696,5009,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (282696,130128,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (282696,190046,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (282696,283739,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (282696,387105,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (283410,69812,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (283410,151616,7.0000,1.4142135623730951,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (283410,200864,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (283543,102341,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (283543,328281,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (283712,24430,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (283712,27168,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (283712,283713,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (283713,24432,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (283713,27171,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (283739,13978,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (283739,190046,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (283739,282696,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (286825,302073,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,1390,4.3333,0.4714045207910316,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,18960,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,39551,8.6667,0.7453559924999298,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,46169,7.6667,1.8856180831641267,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,65811,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,100130,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,101055,4.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,121538,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,130128,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,130129,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,131780,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,151052,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,159172,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,207992,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,210671,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,215876,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,238072,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,250861,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,251477,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,257459,9.0000,0.816496580927726,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,267038,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,290070,9.5000,0.7071067811865479,8,8); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,297838,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,313478,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,313479,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,330388,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,333856,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,337166,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,340652,4.0000,1.4142135623730951,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,343874,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,347807,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,359297,1.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289109,360480,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289558,56304,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289558,130128,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289558,131780,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289558,170522,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289558,267038,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289558,305920,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289666,291221,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (289787,32114,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,1390,4.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,12744,5.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,31715,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,44450,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,65811,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,67395,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,72559,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,96593,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,100130,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,101462,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,117874,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,129439,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,130128,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,130129,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,131240,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,131780,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,150629,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,159172,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,190129,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,207992,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,215876,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,238072,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,245008,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,254986,9.4000,0.7999999999999999,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,267038,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,289109,9.1250,1.0532687216470447,8,8); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,297838,8.6667,0.9428090415820632,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,313474,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,313478,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,313479,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,337166,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290070,359297,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290378,48075,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290378,80583,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290378,99164,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290378,221259,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290378,227549,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290378,304443,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290723,120586,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (290723,302073,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291221,9125,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291221,40226,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291221,79050,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291221,120116,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291221,169736,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291221,289666,5.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291495,54209,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291495,208245,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291495,210739,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291495,372525,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291495,398232,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,31,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,10945,6.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,12332,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,54209,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,76382,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,112290,9.2500,0.4330127018922193,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,123435,8.0000,1.7320508075688772,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,138463,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,151052,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,210511,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,233058,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,247579,7.6667,1.247219128924647,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,258948,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,274069,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,301540,10.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291698,348944,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291829,130506,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (291829,291830,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (292671,233058,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (292671,350424,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (294028,140221,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (294028,174918,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (294028,218219,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (294028,264146,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (294028,367073,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297382,335245,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297761,301540,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297802,289666,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,5574,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,31274,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,32114,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,46878,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,48950,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,56871,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,66286,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,112290,4.5000,3.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,117874,9.0000,0.7071067811865476,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,123435,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,129185,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,130128,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,130129,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,131665,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,131780,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,134077,9.2500,0.8291561975888498,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,159172,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,200864,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,207992,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,209158,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,215876,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,238072,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,241347,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,253010,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,263360,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,267038,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,270628,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,271344,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,280270,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,289109,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,290070,9.0000,0.7071067811865476,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,291698,5.0000,4,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,313059,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,313478,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,313479,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,326155,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,337166,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297838,370017,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297895,11360,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (297895,116524,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (298219,233521,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (298219,298220,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (298691,371615,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (299073,44238,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (299073,165961,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (299073,240327,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (299073,301540,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (299073,303564,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,849,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,9795,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,32583,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,59578,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,113504,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,131780,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,142491,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,155213,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,190869,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,191246,4.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,194497,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,199255,5.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,210739,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,264146,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,267038,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,297650,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,300230,7.6875,2.754967105066774,16,16); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,300232,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,300233,4.3333,2.6246692913372702,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,304862,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,311604,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,311607,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,312152,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300229,337166,6.3333,2.494438257849294,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300230,850,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300230,30952,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300230,191246,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300230,210739,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300230,218415,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300230,264146,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300230,297650,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300230,300229,8.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300230,300232,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300230,300233,5.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300230,300234,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300230,311604,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300945,32712,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (300945,362808,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301391,244458,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301391,303564,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301391,313476,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301391,314745,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301391,314965,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301391,359297,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301391,362312,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,30952,1.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,48075,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,54209,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,57064,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,291698,9.2500,0.82915619758885,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,297761,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (301540,348944,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (302073,303888,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (302329,2238,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (302329,32583,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (302329,40187,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (302329,239851,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (302696,61156,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (302696,220276,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (302696,309634,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303225,99164,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303399,239851,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303399,298691,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303399,371615,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,38614,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,113305,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,118689,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,123435,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,134193,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,149957,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,235676,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,244458,6.6667,1.8856180831641267,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,273585,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,281937,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,292671,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,297761,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,301391,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,314965,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,316323,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303564,345690,5.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (303888,238342,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304829,294717,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304829,330773,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304829,372372,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,10831,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,44238,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,59578,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,70507,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,70959,8.5000,0.5,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,97360,5.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,97727,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,107842,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,120506,5.0000,0.816496580927726,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,233058,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,244458,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,292671,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,314745,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,350424,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,354548,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (304862,372525,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (306032,41518,3.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (306032,53921,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (306032,112290,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (306032,178994,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (306032,193253,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (306032,208245,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (306032,238072,8.0000,1.4142135623730951,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (306032,239851,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (306032,267038,8.0000,0,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (306051,251979,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (307913,56044,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (308025,69469,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (308025,69812,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (309634,61156,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (309634,361688,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310130,36694,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310184,40472,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310184,144760,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310184,265288,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310184,301669,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310184,372551,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310455,2238,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310455,39551,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310455,112205,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310455,176712,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310455,177636,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310455,185628,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310455,250746,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310455,289109,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310726,7048,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310726,9023,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310726,20371,4.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310726,68940,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310726,86274,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310726,102341,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310726,107166,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310726,131223,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310726,215876,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310726,310728,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310726,318163,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (310726,342685,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311036,311037,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311036,311038,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311036,319602,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311037,30955,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311037,57064,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311037,142491,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311037,175883,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311037,176711,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311037,210739,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311037,311038,9.2667,0.9285592184789411,15,15); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311037,311040,4.1429,2.099562636671296,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311037,313461,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311037,319602,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311037,406158,2.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,30952,2.5000,1.5,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,30955,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,30959,8.0000,2.345207879911715,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,30965,2.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,30967,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,31256,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,38237,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,79044,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,129185,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,142491,5.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,152426,4.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,162380,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,175879,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,311036,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,311037,9.7500,0.4330127018922193,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,311040,3.3750,0.8569568250501305,8,8); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,369458,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,369486,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311038,406158,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311040,30959,3.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311040,30965,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311040,113504,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311040,311037,3.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311040,311038,6.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311428,22651,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311428,96593,7.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311428,190869,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311428,200864,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311428,245699,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311428,257744,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311428,263360,7.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (311428,350424,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312138,281334,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312150,130945,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312150,131885,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312150,175873,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312150,210739,7.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312150,215879,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312150,312151,7.5714,2.664965443739661,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312150,312152,3.4286,1.9166296949998196,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312150,319416,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312150,370017,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312151,89441,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312151,312150,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312151,312152,4.0000,2.0976176963403033,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312152,59578,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312152,312151,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312170,85871,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312170,86263,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312170,117314,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312170,120574,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312170,130945,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312170,130953,7.6667,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312170,192702,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312170,218808,2.3333,1.247219128924647,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312170,240521,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312170,332065,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312170,354178,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312170,372233,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (312963,1711,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313059,26844,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313059,39551,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313059,46322,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313059,90772,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313059,131885,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313059,194204,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313059,264157,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313059,297838,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313059,315747,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313160,13547,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313160,97360,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313449,6651,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313449,68683,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313459,31274,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313459,310992,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313459,313474,2.2500,1.0897247358851685,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313459,313476,2.7500,1.299038105676658,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313459,313478,10.0000,0,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313459,313479,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313459,406411,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313461,310130,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313474,313459,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313474,313476,7.2500,1.9202864369671522,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313474,313477,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313474,313478,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313474,313479,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313476,139652,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313476,313459,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313476,313474,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313476,313477,8.0000,1.0954451150103321,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313476,313478,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313476,313479,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313476,406411,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313477,129185,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313477,194495,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313477,313474,3.2500,1.0897247358851685,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313477,313475,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313477,313476,4.6000,2.939387691339814,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313477,313478,6.8000,2.039607805437114,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313477,313479,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313477,313488,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313477,313506,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313477,340652,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,130128,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,130129,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,131780,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,159172,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,194497,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,194502,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,207989,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,207992,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,215876,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,238072,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,267038,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,271095,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,289109,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,290070,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,297838,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,313459,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,313464,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,313474,3.0000,1.0690449676496976,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,313476,2.8750,0.927024810886958,8,8); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,313477,7.0000,1.632993161855452,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,313479,9.3750,0.6959705453537527,16,16); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,313508,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313478,337166,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,130128,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,130129,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,131780,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,159172,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,194495,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,207992,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,215876,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,238072,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,267038,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,289109,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,290070,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,297838,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,313459,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,313474,3.1667,0.6871842709362768,6,6); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,313476,2.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,313477,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,313478,9.3333,0.4714045207910318,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313479,337166,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313489,313486,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313489,313493,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313601,13978,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313601,102108,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (313821,207992,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (316323,206255,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (317218,317219,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (317219,317221,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (318388,134677,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (318388,323509,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319181,64729,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319181,222194,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,1390,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,12744,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,30955,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,30959,5.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,30965,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,57064,1.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,108760,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,149287,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,152426,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,188511,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,220805,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,238073,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,280305,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,311040,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,313478,7.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,319613,8.2500,0.6614378277661477,8,8); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,383395,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319602,406158,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319613,30952,3.0000,0.816496580927726,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319613,30965,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319613,79044,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319613,142491,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319613,218808,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319613,311036,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319613,319602,8.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (319613,393012,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (320303,157132,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (322934,147936,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (324061,16006,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (325098,47865,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (325098,170724,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (325098,258509,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (325805,10832,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (325805,325806,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (326155,108,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (326155,47130,6.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (326155,65764,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (326155,131780,6.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (326155,134676,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (326155,170721,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (326155,177369,7.7500,2.165063509461097,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (326155,209158,3.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (326155,270971,9.6667,0.47140452079103146,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (327534,327535,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (327535,327536,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,12744,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,18979,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,56871,8.2500,1.479019945774904,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,99875,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,100130,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,102311,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,117874,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,123435,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,134677,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,165961,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,175875,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,200864,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,214755,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,247579,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,271095,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,289109,5.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,290070,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,297838,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,311428,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,323509,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328272,333856,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328277,10920,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328277,86263,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328277,155070,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328277,207989,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328277,207992,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328277,219541,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328277,310728,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328277,328281,3.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328277,328285,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328277,335336,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328277,336458,5.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328285,207992,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328285,257296,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328285,262647,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328285,279841,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328285,328277,9.8000,0.39999999999999986,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (328285,328281,4.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (330057,209658,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (330057,281937,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (330185,302073,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (330388,18960,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (330566,141544,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (330670,54209,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (330670,336445,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (331427,39551,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (331529,183837,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (331529,185306,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332065,86263,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332065,92573,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332065,117314,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332065,120574,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332065,130945,5.0000,4,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332065,130953,8.3333,0.9428090415820636,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332065,218808,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332065,240521,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332065,312170,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332065,335336,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332065,354178,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332065,368418,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332065,370017,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332065,372233,7.3333,1.699673171197595,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (332209,181766,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333393,104338,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,263,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,880,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,5306,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,12744,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,25192,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,29768,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,30686,2.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,31715,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,34077,9.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,46169,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,51413,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,81776,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,81954,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,96593,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,116827,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,117874,6.5000,2.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,129439,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,151616,6.6667,2.6246692913372702,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,159172,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,175875,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,207390,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,220276,9.0000,0.816496580927726,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,235541,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,245699,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,257744,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,263360,7.6667,0.9428090415820634,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,280270,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,289109,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,290070,4.5000,3.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,297895,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,304829,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (333856,310728,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (334212,15936,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (334212,159706,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (334212,169942,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (334212,254654,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (334212,366987,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335245,208245,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335245,289666,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335336,85871,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335336,86263,3.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335336,92573,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335336,120574,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335336,130945,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335336,130953,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335336,189403,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335336,218808,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335336,220805,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335336,332065,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335336,354178,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335336,368418,7.6667,1.8856180831641267,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335336,370017,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335336,372233,6.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335380,140221,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335380,150507,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335380,174953,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335380,184805,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335380,201302,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335834,31259,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,47435,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,54209,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,86274,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,109421,6.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,185628,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,214755,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,215876,6.4000,2.1540659228538015,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,215879,3.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,215880,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,220805,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,271095,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,278855,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,291698,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,324576,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,350424,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,359297,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (335835,370017,3.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (336445,30686,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (336458,10920,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (336458,40199,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (336458,82662,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (336458,102341,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (336458,112205,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (336458,207992,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (336458,328281,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (336458,362808,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,849,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,21213,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,32180,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,40199,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,47865,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,59578,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,60408,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,70959,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,89441,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,96593,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,107257,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,121912,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,130128,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,130129,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,131780,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,131885,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,149287,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,155213,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,159172,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,170721,4.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,174918,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,174953,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,190869,8.4286,1.1780301787479028,7,7); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,207992,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,215876,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,218219,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,218415,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,238072,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,244421,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,267038,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,289109,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,290070,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,294028,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,297838,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,300229,8.0000,1.5491933384829668,5,5); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,300230,3.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,310130,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,313478,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,313479,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,325098,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,337167,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,337168,10.0000,0,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337166,393012,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337167,32583,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337167,158927,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337167,218415,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337167,337168,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337168,47865,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337168,113504,8.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337168,155213,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337168,190869,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337168,310130,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337168,325098,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337168,337166,7.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337404,26081,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337404,72559,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337404,182955,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337404,310184,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337814,67052,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337814,141544,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337814,182955,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337814,188507,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337814,203344,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337814,296980,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337814,321718,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337830,8235,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337830,13789,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (337830,276085,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (338173,27168,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (338173,283480,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (338821,23255,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340119,91912,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340119,340120,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340120,91912,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340652,2238,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340652,33923,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340652,46169,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340652,112290,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340652,120574,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340652,129185,8.0000,1,4,4); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340652,175881,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340652,185628,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340652,310455,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340799,45128,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340799,310726,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340799,312138,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340799,328277,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340799,362808,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340901,2000,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340901,3101,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340901,48075,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340901,90772,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340901,104338,9.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340901,112290,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340901,119879,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340901,214755,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340901,222194,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340901,250514,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (340901,358708,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (342384,26844,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (342384,46215,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (342512,259826,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (342512,399427,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (342685,20371,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (342685,158999,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (342685,310130,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (345690,847,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (345690,1029,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (345690,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (345690,152426,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (345690,311038,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (346364,40191,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (346364,256839,5.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (346949,49696,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (346949,67052,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (346949,250746,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (346949,335245,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (347807,150629,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (347807,254986,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (348944,123435,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (348944,182955,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (348944,244421,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (348944,276217,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (348944,291698,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (348944,297761,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (348944,342384,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (349550,63134,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (349550,104681,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (349550,351187,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350189,170721,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350189,174953,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350189,218219,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350424,33179,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350424,34077,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350424,69812,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350424,90772,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350424,104338,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350424,112290,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350424,116556,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350424,160524,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350424,210511,5.3333,1.699673171197595,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350424,214755,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350424,222194,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350424,303564,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350424,306032,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (350424,397121,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (352639,222194,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (352639,235062,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (352639,266574,9.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (354178,117314,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (354178,218808,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (354178,312170,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (354178,370017,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (355001,38237,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (355001,355002,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (355002,355003,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (358708,847,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (358708,42983,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (358708,160492,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (358708,324061,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (359297,10830,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (359297,21213,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (359297,29768,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (359297,61751,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (359297,65811,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (359297,85524,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (359297,96593,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (359297,158999,4.5000,1.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (359297,165961,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (359297,210739,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (359297,247579,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (359297,328272,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (360684,146780,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (360723,1038,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (360723,303545,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (361688,302696,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (362808,2000,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (362808,17760,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (362808,18828,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (362808,32712,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (362808,46878,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (362808,118980,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (362808,146780,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (362808,218848,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (362808,235790,8.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (362808,263360,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (362808,264146,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (362808,289558,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (362808,304829,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (362808,372372,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (363234,57193,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (363234,139657,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (363234,238342,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (363780,226939,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (364161,207157,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (364161,310130,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (365906,59578,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (367073,206881,6.3333,3.091206165165235,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (368418,86263,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (368418,120574,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (368418,130945,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (368418,130953,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (368418,192514,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (368418,203649,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (368418,332065,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (368418,335336,7.6667,1.2472191289246473,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (368418,354178,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (368418,370017,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (368418,372233,5.5000,3.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (368865,280270,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369458,8092,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369458,30952,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369458,30965,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369458,30967,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369458,57064,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369458,79044,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369458,142491,8.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369458,152426,1.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369458,311038,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369458,319613,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369458,345690,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369458,369486,10.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369486,152426,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369486,311037,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (369486,311038,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (370017,1529,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (370017,86274,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (370017,109421,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (370017,207992,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (370017,215876,6.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (370017,335835,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,30959,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,79716,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,85871,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,92573,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,130945,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,130953,8.0000,1,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,139653,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,207989,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,207991,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,240521,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,311038,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,312170,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,313477,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,332065,6.6667,1.699673171197595,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,335336,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,368418,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372233,370017,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372525,14132,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372551,144760,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372551,279755,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372551,301669,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372733,123435,6.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372733,131885,7.5000,0.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372733,159172,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372733,210511,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372733,329880,6.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (372733,405119,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (375827,16006,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (375827,101462,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (379290,30957,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (379290,30965,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (379290,393012,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (379327,9813,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (379327,46169,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (379331,123435,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (379331,291698,1.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (379331,372733,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (379931,9813,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (379931,13395,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (379931,13396,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (379931,21213,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (381392,30951,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (381392,30961,5.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (381392,383395,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (381392,406158,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (383395,30951,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (383395,30957,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (383395,30961,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (383395,30965,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (383395,379331,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (383395,393012,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (383395,398571,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (383395,406158,6.0000,2,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (390691,400853,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (391006,382208,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (391006,395271,5.5000,3.5,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (391006,397250,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (391006,398232,5.0000,2.449489742783178,3,3); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (393012,30961,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (393012,379290,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (393012,383395,10.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (395271,10702,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (395271,14132,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (395271,382208,2.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (395271,391006,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (395271,391453,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (395271,397250,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (395271,398232,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (395271,398571,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (395271,400612,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (395271,406759,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (397121,123435,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (398232,96593,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (398232,382208,2.0000,0,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (398232,395271,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (398232,397250,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (398232,400612,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (398571,398232,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (398571,400612,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (398571,400853,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (399427,724,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (399427,726,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (399427,735,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (399427,846,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (399427,9813,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (399427,13395,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (399427,13396,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (399427,268034,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (399427,342512,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (399427,379931,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (400612,108,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (400612,382208,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (400612,391006,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (400612,398571,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (400612,399427,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (400612,405119,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (400853,149287,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (400853,200521,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (400853,390691,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (400853,393012,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (400853,397250,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (400853,398232,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (405119,108,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (405119,30686,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (405119,123435,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (405119,372733,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (405119,379290,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (405119,379331,4.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (405119,391006,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (405119,398571,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (405119,399427,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (405119,400612,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (405119,406759,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406158,11286,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406158,13343,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406158,13395,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406158,22651,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406158,30951,7.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406158,30957,2.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406158,30961,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406158,30965,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406158,142491,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406158,319602,9.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406158,381392,8.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406158,383395,3.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406158,393012,5.0000,3,2,2); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406158,398232,5.0000,0,1,1); +INSERT INTO `movies_recommendations_agg` (`base_movie_id`,`recommended_movie_id`,`recommendation`,`recommendation_std`,`suggested_by_num`,`justifications_num`) VALUES (406411,398571,5.0000,0,1,1); diff --git a/sql_improvments/Real_world_Ronamit01.csv b/sql_improvments/Real_world_Ronamit01.csv new file mode 100644 index 00000000..54de5ff0 --- /dev/null +++ b/sql_improvments/Real_world_Ronamit01.csv @@ -0,0 +1,37 @@ +Number,Question,What was the problem type?,What was the problem?,How would you fix it?,Answer,Commit,Comment +1," SELECT + t1.end_period AS `Period`, + SUM(t1.cost * t1.run_time) AS `Total CPU Time Usage`, + ref_cat_table.ref_category AS ref_category +FROM %DB%.accounting_view AS t1 +RIGHT JOIN user_info.user_refcats AS ref_cat_table + ON t1.owner = ref_cat_table.username + WHERE end_time > start_time + AND ref_cat_table.ref_category = '%REFCAT%'",representation,The time was shown in seconds which is not relevant,change the time to hours," t1.end_period AS `Period`, + SUM((t1.cost * t1.run_time)/3600) AS `Total CPU Time Usage`, + ref_cat_table.ref_category AS ref_category +FROM %DB%.accounting_view AS t1 +RIGHT JOIN user_info.user_refcats AS ref_cat_table + ON t1.owner = ref_cat_table.username + WHERE end_time > start_time + AND ref_cat_table.ref_category = '%REFCAT%'",62246ed0312999027fca7561c5c3a0a345ab972b, +2," private[ldbc] def mediumblobType: Parser[DataType] = + customError( + caseSensitivity(""mediumblob"") ^^ (_ => DataType.TINYBLOB()), + input => s""""""",storage,datatype to small for the data,Change bug TinyBlob to MediumBlob," private[ldbc] def mediumblobType: Parser[DataType] = + customError( + caseSensitivity(""mediumblob"") ^^ (_ => DataType.MEDIUMBLOB()), + input => s"""""" + |=============================================================================== + |Failed to parse mediumblob data type.",a809185eda2910d6aa5621958d274be4e097997c, +3,"CREATE TABLE groups ( + id SERIAL PRIMARY KEY NOT NULL, + name VARCHAR(50) UNIQUE NOT NULL +); + +/*",data integrity,group name could be empty,add a check contraint to make sure that char_lnegth >= 1,"CREATE TABLE groups ( + id SERIAL PRIMARY KEY NOT NULL, + name VARCHAR(50) UNIQUE NOT NULL CHECK (char_length(name) >= 1) +); + +/*",dfe62cb36a95bfce3e4446bfc04d80eeee01f9a5, diff --git a/sql_improvments/real _ world _nevo-a.csv b/sql_improvments/real _ world _nevo-a.csv new file mode 100644 index 00000000..fea155e1 --- /dev/null +++ b/sql_improvments/real _ world _nevo-a.csv @@ -0,0 +1,34 @@ +"Number","Question","What was the problem type?","What was the problem?","How would you fix it?","Answer","Commit","Comment" +1,"CREATE TABLE registrations ( + id BIGINT, + contact VARCHAR(255) +); /* Placeholder SQL */",data integrity,Columns in the registrations table allowed NULL values which could lead to incomplete data states.,Add NOT NULL constraints to the schema definition.,"CREATE TABLE registrations ( + id BIGINT NOT NULL, + contact VARCHAR(255) NOT NULL +); /* Placeholder SQL */",a1e9f064bdf11f3373eb0067264ea360519bafcc, +2,"INSERT INTO systempreferences (variable, value) VALUES ('Insecure', 'NO'); /* Placeholder SQL */",data integrity,Storing a boolean state as 'NO' caused logical errors in Perl because the string 'NO' evaluates to true.,Change the inserted value to '0' so it represents false correctly in Perl.,"INSERT INTO systempreferences (variable, value) VALUES ('Insecure', '0'); /* Placeholder SQL */",9d7a4829be6f7348bcc5e81535c3ff2dc11883f3, +3,"ALTER TABLE host DROP COLUMN icon_id; /* Placeholder SQL */",fix,Attempting to drop a column that is actively referenced by a foreign key constraint will fail.,Drop the foreign key constraint before dropping the column.,"ALTER TABLE host DROP FOREIGN KEY fk_host_icon; +ALTER TABLE host DROP COLUMN icon_id; /* Placeholder SQL */",620844879b88ef87f3bc4487b599640a32a51c57, +4,"CREATE INDEX idx_anzeige_name ON mv_organisation (anzeige_name); /* Placeholder SQL */",performance,The index on the string column exceeded the maximum allowed key length for the database engine.,Limit the index to a specific prefix length of the string to fit within engine constraints.,"CREATE INDEX idx_anzeige_name ON mv_organisation (anzeige_name(255)); /* Placeholder SQL */",4b15025750988e10753e508eb8ff838dce94e812, +5,"ALTER TABLE backup_ids ADD CONSTRAINT backup_ids_uk UNIQUE (backup_code, table_name, old_id); /* Placeholder SQL */",data integrity,The unique constraint name was too generic causing naming collisions when multiple instances were installed in the same database.,Rename the constraint to include a specific prefix.,"ALTER TABLE backup_ids ADD CONSTRAINT prefix_backup_ids_uk UNIQUE (backup_code, table_name, old_id); /* Placeholder SQL */",88629fc41946d91ebd87579c369b82bcae652b31, +"6","CREATE TABLE wcf1_user ( + userID INT NOT NULL AUTO_INCREMENT PRIMARY KEY, + username VARCHAR(255) NOT NULL, + email VARCHAR(255) NOT NULL DEFAULT '' +); /* Placeholder SQL */","performance","The email column had no index, so any query that authenticates a user, checks for a duplicate email, or joins on email had to perform a full scan of wcf1_user. As the user table grows this full scan dominates the query cost.","Add a secondary index on the email column so equality lookups and joins on email use an index seek instead of scanning every row.","ALTER TABLE wcf1_user ADD INDEX email (email); /* Placeholder SQL */","6259fd829bc984d24ce74b91bae6ce546f233311","WoltLab/WCF - adding a missing index on a frequently filtered/joined column." +"7","SELECT researcher_id, + MIN(year) AS min_year, + MAX(year) AS max_year, + COUNT(*) AS total +FROM accomplishments +GROUP BY researcher_id; /* Placeholder SQL */","performance","The query computed a COUNT(*) for every group, but that count was never used. The database did extra counting work for nothing.","Remove the unused COUNT so the query only computes the MIN and MAX it actually needs.","SELECT researcher_id, + MIN(year) AS min_year, + MAX(year) AS max_year +FROM accomplishments +GROUP BY researcher_id; /* Placeholder SQL */","5e89e3bf671f2075f5cfdfc54950d9a5affb4e83","scientilla/scientilla - drop an unused aggregate so the query does less work." +"8","CREATE TABLE marc_subfield_structure ( + authorised_value VARCHAR(255), + authtypecode VARCHAR(255) +); /* Placeholder SQL */","performance","The two columns were defined far wider than the data needs, so every row and any index on them was larger than necessary, which slows scans and joins.","Shrink the columns to VARCHAR(20) so rows and indexes stay small.","ALTER TABLE marc_subfield_structure + MODIFY authorised_value VARCHAR(20), + MODIFY authtypecode VARCHAR(20); /* Placeholder SQL */","f1752b544f7f465c826665343627227941755c2b","bywatersolutions/bws-package - right-size oversized columns (also reads as a data-type fix)." diff --git a/sql_improvments/real_world_BarakBlaish.csv b/sql_improvments/real_world_BarakBlaish.csv new file mode 100644 index 00000000..09f147b0 --- /dev/null +++ b/sql_improvments/real_world_BarakBlaish.csv @@ -0,0 +1,4 @@ +Number,Question,What was the problem type?,What was the problem?,How would you fix it?,Answer,Commit,Comment +1,"SELECT * FROM movies WHERE (SELECT COUNT(*) FROM roles WHERE movie_id = movies.id) > 0;",performance,COUNT(*) scans all matching rows even though we only need to know if at least one exists which wastes resources,Use EXISTS instead of COUNT so the query stops as soon as it finds the first matching row,"SELECT * FROM movies WHERE EXISTS (SELECT 1 FROM roles WHERE movie_id = movies.id);",N/A,EXISTS short-circuits and is significantly faster than COUNT for existence checks +2,"SELECT * FROM actors JOIN roles ON actors.id = roles.actor_id;",performance,SELECT * fetches all columns from all joined tables including unnecessary ones which increases memory usage and prevents covering indexes,Explicitly select only the columns needed by the application,"SELECT actors.id, actors.first_name, actors.last_name FROM actors JOIN roles ON actors.id = roles.actor_id;",N/A,Fetching only required columns reduces I/O and allows the optimizer to use covering indexes +3,"CREATE TABLE movies ( id INT PRIMARY KEY, name VARCHAR(100) );",data integrity,The name column has no NOT NULL constraint which allows movies to be inserted without a name violating basic business logic,Add NOT NULL constraint to enforce that every movie must have a name,"CREATE TABLE movies ( id INT PRIMARY KEY, name VARCHAR(100) NOT NULL );",N/A,Always add NOT NULL to columns that are required by business logic to prevent invalid data at the database level diff --git a/sql_improvments/real_world_BarakBlaish68.csv b/sql_improvments/real_world_BarakBlaish68.csv new file mode 100644 index 00000000..2b1bb49f --- /dev/null +++ b/sql_improvments/real_world_BarakBlaish68.csv @@ -0,0 +1,3 @@ +Number,Question,What was the problem type?,What was the problem?,How would you fix it?,Answer,Commit,Comment +1,"drop table if exists Recipes; drop table if exists Users; create table Users (user_id varchar(128) primary key, email varchar(128) not null, name varchar(128) not null, last_login datetime not null); create table Recipes (recipe_id char(6) primary key, name varchar(128) not null, passhash char(32) not null);",fix,The schema script drops and recreates the tables every time it runs permanently destroying all existing data on each execution,Remove the DROP TABLE statements and use CREATE TABLE IF NOT EXISTS instead of CREATE TABLE so the script is safe to run on an already-populated database,"create table if not exists Users (user_id varchar(128) primary key, email varchar(128) not null, name varchar(128) not null, last_login datetime not null); create table if not exists Recipes (recipe_id char(6) primary key, name varchar(128) not null, passhash char(32) not null);",f1bcbe3ab06e44c1a18326e2d102e91d471c1037,Destructive DDL scripts that drop tables should always be guarded; use IF NOT EXISTS for idempotent schema creation +2,"SELECT user_id, stream_ordering, topological_ordering, room_id, event_id, type, profile_tag, actions, last_stream_ordering_actioned_by_target_device FROM event_push_actions WHERE user_id = ? AND stream_ordering > ? ORDER BY stream_ordering ASC LIMIT 10;",performance,Without an index on stream_ordering and user_id any query filtering or ordering by these columns performs a full table scan which is slow as the table grows,Add a composite index on the frequently-queried columns,"CREATE INDEX event_push_actions_stream_ordering ON event_push_actions(stream_ordering, user_id);",96bcfb29c7b8cb04f4b887c518016cb968645cb9,Always add indexes on columns used in WHERE clauses and ORDER BY; a composite index covering both columns is especially efficient here diff --git a/sql_improvments/real_world_LiorSheiner.csv b/sql_improvments/real_world_LiorSheiner.csv new file mode 100644 index 00000000..0d6ecda6 --- /dev/null +++ b/sql_improvments/real_world_LiorSheiner.csv @@ -0,0 +1,28 @@ +Number,Question,What was the problem type?,What was the problem?,How would you fix it?,Answer,Commit,Comment +1,"CREATE TABLE `post` (... ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; +ALTER TABLE `post` ADD KEY `post_user` (`user`);",data integrity,"The post table used the MyISAM storage engine. MyISAM does not support foreign keys, so the database could not enforce the relationship between posts and users. This may allow posts to reference users that do not exist.",Change the table engine to InnoDB and add a foreign key from post.user to user.id. This preserves the relationship between the tables and improves data integrity.,"ALTER TABLE `post` ENGINE=InnoDB; +ALTER TABLE `post` ADD CONSTRAINT `post_user` FOREIGN KEY (`user`) REFERENCES `user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;",a1a63eb2f812d621d3b3d7db2c00346bb94c0709,"Commit 72412, group 12. The change keeps fulltext functionality in newer MySQL/MariaDB versions while allowing foreign keys." +2,"CREATE TABLE `suggestions` ( + PRIMARY KEY (`suggestionid`), + KEY `suggestedby` (`suggestedby`), + KEY `managedby` (`managedby`) +);",performance,"The suggestions table was missing indexes on columns that are commonly used in queries, such as STATUS, biblionumber, and branchcode. Without these indexes, filtering and lookup queries may be slower, especially on large tables or inside loops.",Add indexes on the columns that are frequently used for filtering or lookup operations.,"KEY `status` (`STATUS`), +KEY `biblionumber` (`biblionumber`), +KEY `branchcode` (`branchcode`)",2ccecbe3ac308724ed7554592dcfbb93be76bd84,"Commit 75312, group 12. This is a clear real-world performance improvement using indexes." +3,"SELECT w.id +FROM way w +WHERE w.id NOT IN ( + SELECT way_id + FROM fusion_way +);",performance,Using NOT IN with a subquery may be inefficient on large tables and can also behave unexpectedly if the subquery returns NULL values.,Replace NOT IN with a LEFT JOIN and keep only the rows where no matching row exists in the joined table.,"SELECT w.id +FROM way w +LEFT JOIN fusion_way fw + ON w.id = fw.way_id +WHERE fw.way_id IS NULL;",Bonus idea,Bonus improvement idea based on a common query optimization pattern. +4,"SELECT DISTINCT customer_id, order_date +FROM orders;",performance,"DISTINCT is used only to remove duplicate rows. On large result sets this may be slower, because the database must compare and remove duplicates from the output.",Use GROUP BY on the relevant columns when the goal is to return one row per group.,"SELECT customer_id, order_date +FROM orders +GROUP BY customer_id, order_date;",Bonus idea,Bonus improvement idea: replace DISTINCT with GROUP BY when it better represents the grouping logic. +5,"SELECT * +FROM movies;",performance,"The query uses SELECT *, which returns all columns even when only some of them are needed. This can make the query slower by increasing I/O, memory usage, and data transfer, and it also makes the query less clear.",Select only the columns that are actually needed by the query or application.,"SELECT id, name, year +FROM movies;",Bonus idea,Bonus improvement idea: avoid SELECT * and select only required columns to improve performance and readability. diff --git a/sql_improvments/real_world_MeniWeingarten.csv b/sql_improvments/real_world_MeniWeingarten.csv new file mode 100644 index 00000000..52550140 --- /dev/null +++ b/sql_improvments/real_world_MeniWeingarten.csv @@ -0,0 +1,3 @@ +Number,Question,What was the problem type?,What was the problem?,How would you fix it?,Answer,Commit,Comment +1,"ALTER TABLE ladder1v1_rating_rank_view AUTO_INCREMENT = 1; START TRANSACTION; TRUNCATE ladder1v1_rating_rank_view; INSERT INTO ladder1v1_rating_rank_view(`id`, `mean`, `deviation`, `num_games`, `win_games`, `rating`) SELECT ladder1v1_rating.id, mean, deviation, numGames, winGames, rating FROM ladder1v1_rating INNER JOIN active_ladder_players ON ladder1v1_rating.id = active_ladder_players.playerId ORDER BY rating DESC; COMMIT;",data integrity,"TRUNCATE is DDL and forces an implicit commit, so the transaction does not protect the refresh. If the INSERT fails after the TRUNCATE, the view is left empty.",use DELETE instead of TRUNCATE,"START TRANSACTION; DELETE FROM ladder1v1_rating_rank_view; ALTER TABLE ladder1v1_rating_rank_view AUTO_INCREMENT = 1; INSERT INTO ladder1v1_rating_rank_view(`id`, `mean`, `deviation`, `num_games`, `win_games`, `rating`) SELECT ladder1v1_rating.id, mean, deviation, numGames, winGames, rating FROM ladder1v1_rating INNER JOIN active_ladder_players ON ladder1v1_rating.id = active_ladder_players.playerId ORDER BY rating DESC; COMMIT;",b654b3a358408a97815ea299d19d39640d949a79,DDL statements like TRUNCATE and ALTER cause implicit commits and break atomicity +2,"CREATE TABLE `branch_item_rules` ( `branchcode` varchar(10) NOT NULL, `itemtype` varchar(10) NOT NULL, ... ) ENGINE=InnoDB DEFAULT CHARSET=utf8;",fix,"Re-running the installer failed with error 1050, the table already exists, because CREATE TABLE had no guard",add DROP TABLE IF EXISTS before the create,"DROP TABLE IF EXISTS `branch_item_rules`; CREATE TABLE `branch_item_rules` ( `branchcode` varchar(10) NOT NULL, `itemtype` varchar(10) NOT NULL, ... ) ENGINE=InnoDB DEFAULT CHARSET=utf8;",e33e05c46056ff37d08b10e8ad5ce0cb0fd5053e,Install scripts should be idempotent so they can be re-run diff --git a/sql_improvments/real_world_NoaAkerman12.csv b/sql_improvments/real_world_NoaAkerman12.csv new file mode 100644 index 00000000..c35dee24 --- /dev/null +++ b/sql_improvments/real_world_NoaAkerman12.csv @@ -0,0 +1,23 @@ +Number,Question,What was the problem type?,What was the problem?,How would you fix it?,Answer,Commit,Comment +1,"`abnormal_atypical_exculsionary` enum('exculsionary','non_exclusionary','not_answered') DEFAULT NULL,",Bug,"The column name contains a spelling mistake (typo) where 'exculsionary' was written instead of 'exclusionary'. This creates an invalid column name, causing errors when other queries or applications attempt to reference it using the correct spelling.",Correct the spelling of the column name by changing 'exculsionary' to 'exclusionary' to match the intended English word and ensure database consistency.,"`abnormal_atypical_exclusionary` enum('exclusionary','non_exclusionary','not_answered') DEFAULT NULL,",b05b7379103fe10babb5412aec60df704a2bb74b, +2,"`sort1` varchar(80) default NULL, `sort2` varchar(80) default NULL, UNIQUE KEY `cardnumber` (`cardnumber`), KEY `borrowernumber` (`borrowernumber`), KEY `categorycode` (`categorycode`), KEY `branchcode` (`branchcode`), KEY `userid` (`userid`),",Data Integrity,"The 'borrowernumber' column was defined only as a regular index (KEY) instead of a PRIMARY KEY. While a regular index improves query performance, it does not officially enforce the entity integrity constraint or properly designate the column as the table's main unique identifier.",Define borrowernumber as the primary key of the table.,"`sort1` varchar(80) default NULL, `sort2` varchar(80) default NULL, UNIQUE KEY `cardnumber` (`cardnumber`), PRIMARY KEY `borrowernumber` (`borrowernumber`), KEY `categorycode` (`categorycode`), KEY `branchcode` (`branchcode`), KEY `userid` (`userid`),",64278fd6b3de8c5b072819ba0a82f9c0c391405b,Changed borrowernumber from a regular index to the primary key of the table. +3,"DEALLOCATE PREPARE stmt; + +-- First create the foreign key that we dropped earlier +ALTER TABLE `theme_user_counts` ADD CONSTRAINT `addon_id_refs_id_ac19f783` FOREIGN KEY (`addon_id`) REFERENCES `addons` (`id`) + +-- Now create our new, proper index. +ALTER TABLE `theme_user_counts` ADD CONSTRAINT `theme_user_counts_date_cc9034dde90789f_uniq` UNIQUE (`date`, `addon_id`);",Bug,"The SQL statement was missing a semicolon. Without a semicolon, the database may not correctly separate SQL commands, causing the migration script to fail.",Add the missing semicolon at the end of the SQL statement.,"DEALLOCATE PREPARE stmt; + +-- First create the foreign key that we dropped earlier +ALTER TABLE `theme_user_counts` ADD CONSTRAINT `addon_id_refs_id_ac19f783` FOREIGN KEY (`addon_id`) REFERENCES `addons` (`id`); + +-- Now create our new, proper index. +ALTER TABLE `theme_user_counts` ADD CONSTRAINT `theme_user_counts_date_cc9034dde90789f_uniq` UNIQUE (`date`, `addon_id`);",42dd849a280d1fa878a2cbd0a831d6b8d7503d1b, +4," +INSERT INTO `letter` (module, code, branchcode, name, is_html, title, content, message_transport_type) +VALUES ('members','PASSWORD_RESET','','Online password reset',1,'Koha password recovery','\r\n
This email has been sent in response to your password recovery request for the account <
\r\nYou can now create your new password using the following link:\r\n
>\""><
This link will be valid for 2 days from this email\'s reception, then you must reapply if you do not change your password.
\r\nThank you.
\r\n\r\n','email'), +('members','MEMBERSHIP_EXPIRY','','Account expiration','Account expiration','Dear <This email has been sent in response to your password recovery request for the account <
\r\nYou can now create your new password using the following link:\r\n
>\""><
This link will be valid for 2 days from this email\'s reception, then you must reapply if you do not change your password.
\r\nThank you.
\r\n\r\n','email'), +('members','MEMBERSHIP_EXPIRY','','Account expiration',0,'Account expiration','Dear <This email has been sent in response to your password recovery request for the account <
\r\nYou can now create your new password using the following link:\r\n
>\""><
This link will be valid for 2 days from this email\'s reception, then you must reapply if you do not change your password.
\r\nThank you.
\r\n\r\n','email'), +('members','MEMBERSHIP_EXPIRY','','Account expiration','Account expiration','Dear <This email has been sent in response to your password recovery request for the account <
\r\nYou can now create your new password using the following link:\r\n
>\""><
This link will be valid for 2 days from this email\'s reception, then you must reapply if you do not change your password.
\r\nThank you.
\r\n\r\n','email'), +('members','MEMBERSHIP_EXPIRY','','Account expiration',0,'Account expiration','Dear <