Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

-- Type your code below: SELECT name, SUM(total_votes) AS totalVotes, COUNT(rm.movie_id) AS movieCount, avg_rating, DENSE_RANK() OVER(ORDER BY avg_rating DESC) AS actressRank FROM names AS n

image text in transcribed
-- Type your code below: SELECT name, SUM(total_votes) AS totalVotes, COUNT(rm.movie_id) AS movieCount, avg_rating, DENSE_RANK() OVER(ORDER BY avg_rating DESC) AS actressRank FROM names AS n INNER JOIN role_mapping AS rm ON n.id = rm.name_id INNER JOIN ratings AS r ON r.movie_id = rm.movie_id INNER JOIN genre AS g ON r.movie_id = g.movie_id WHERE category = 'actress' AND avg_rating > 8 AND genre = 'drama' GROUP BY name LIMIT 3

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Transport Operations

Authors: Allen Stuart

2nd Edition

978-0470115398, 0470115394

Students also viewed these Programming questions

Question

What trading strategy creates a reverse calendar spread?

Answered: 1 week ago