I have 2 tables which i need to ranked of a certain genre list according to descending order.
Documentary(Title, Duration, language, Genre)
Rating(LoginNames, Rating)
I am suppose to create a list for a certain genre in descending order of the rating.
I came up with this:
SELECT * FROM Genre, Rating
ORDER BY rank DESC
I am not to sure whether I will get the correct outcome of the result. Thank You!