Created
September 26, 2017 14:17
-
-
Save liarokapisv/a14447896e2a1a733d9148a6c3ccda68 to your computer and use it in GitHub Desktop.
Best Practice
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select RV.name, MV.title, RT.stars, RT.ratingDate | |
from (select * from Reviewer) as RV join | |
(select * from Movie) as MV join | |
(select * from Rating) as RT on | |
(RV.rId = RT.rId and RT.mId = MV.mId) | |
order by RV.name asc, MV.title asc, RT.stars asc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment