Question:

An OTT company is maintaining a large disk-based relational database of different movies with the following schema :
Movie (ID, Customer Rating)
Genre (ID, Name)
Movie Genre (MovieID, GenreID)
Consider the following SQL query on the relation database above :
SELECT *
FROM Movie, Genre, Movie_Genre
WHERE
Movie. CustomerRating > 3.4 AND
Genre.Name = "Comedy" AND
Movie_Genre.MovieID = Movie. ID AND
Movie_Genre.Genre ID = Genre. ID;
This SQL query can be sped up using which of the following indexing options ?

Updated On: Jul 9, 2024
  • B+ tree on all the attributes.
  • Hash index on Genre.Name and B+ tree on the remaining attributes.
  • Hash index on Movie.CustomerRating and B+ tree on the remaining attributes.
  • Hash index on all the attributes.
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is A, B

Solution and Explanation

The correct option is (A) : B+ tree on all the attributes and (B) : Hash index on Genre.Name and B+ tree on the remaining attributes.
Was this answer helpful?
0
0

Questions Asked in GATE AR exam

View More Questions