Question 21 2 pts Which of the following indexes would you choose to create to improve the runtime of the following SQL
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Question 21 2 pts Which of the following indexes would you choose to create to improve the runtime of the following SQL
Question 21 2 pts Which of the following indexes would you choose to create to improve the runtime of the following SQL query that lists all actors of long movies with a rating of 5? You can create more than one index. SELECT A.name M.movie_id) FROM Film Actor A JOIN Movie M ON WHERE M. length > 120 AND M.rating (A.plays_in 5; = A bitmap index on Movie(length) A hash index on Movie(length) A B+-tree index on Movie(length) O A bitmap index on Movie(rating) OA B+-tree index on (FilmActor(name), Film(length, rating)) =