Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question 2. Write the SQL queries for the following items, considering the SQL Query Optimization Techniques studied in classes. (a)List all the actors who have

Question 2. Write the SQL queries for the following items, considering the SQL Query Optimization Techniques studied in classes.

(a)List all the actors who have not acted in any movie between 2015 and 2020.

(b)Find how many movies are there in each genre.

(c)Consider the following query specified on Movie database:

SELECT A.act_lname

FROM actor A, movie_cast C, movie M

WHERE M.mov_title = The Dig AND M.mov_id = C.mov_id

AND A.act_id = C.act_id AND A.act_gender = M

(c.1) Draw the initial query tree of this query, then draw the resulting query trees after the applications of the following heuristic optimization query steps:

(c.2) Moving SELECT operations down to the query tree.

(c.3) Applying the more restrictive SELECT operation first.

Question 3. Consider the following database schema:

Movie (movieID, title, length, year) Studio (movieID, studioName)

(a)Write down the query to find the titles and years of movies made by FOX that are atleast 100 minutes long.

(b)Show the initial query tree for the previous query.

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

Step: 3

blur-text-image

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

DB2 11 The Database For Big Data And Analytics

Authors: Cristian Molaro, Surekha Parekh, Terry Purcell, Julian Stuhler

1st Edition

1583473858, 978-1583473856

More Books

Students also viewed these Databases questions