• + 1 comment

    Hint 1: Perform a LEFT JOIN on View_Stats and another LEFT JOIN on Submission_Stats (this means you need to handle NULL values).

    Hint 2: After performing the LEFT JOIN on both View_Stats and Submission_Stats, you may encounter duplicated data. It is advisable to sum the values from View_Stats and Submission_Stats in their own subqueries before doing the LEFT JOIN to avoid errors due to duplication.