- Copy the URL for this repository and clone it to your front server home directory:
git clone url
whereurl
is the URL for this repository - Open the sql script file
assign4.sql
in a remote file editor - Write the queries using the
movie_ratings
database and paste the solutions to the following exercises in theassign3.sql
file - When you've completed the exercises, save the
assign4.sql
file. Commit and push your solutions to GitHub.
cd assign4
git add .
git commit -m "completed assignment 4"
git push
Find the number of distinct movies that were rated from the 'Rating' table using a summary query.
Find the number of ratings for 4-star movies.
Find the date of the most recent review.
Find the date of the first four-star review.
List each reviewerID and the number of movies reviewed.
List the reviewer ids for reviewers with more than 1 review.
Use a subquery to list all reviews for the Movie "Gone with the Wind".
Find the names of all reviewers who rated a movie four-stars or higher using a subquery.