The Movie table has the following columns: ⚫ ID - integer, primary key • • Title - variable-length string 9 Genre-variable-length string Rating Code-variable-length string ⚫ Year - integer e The Rating table has the following columns: • Code - variable-length string, primary key • Description - variable-length string Write a SELECT statement to select the Title, Year, and rating Description. Display all movies, whether c a Rating Code is available. Hint: Perform a LEFT JOIN on the Movie and Rating tables, matching the RatingCode and Code columns LAB ACTIVITY 3.6.1: LAB-Select movie ratings with left join Main.sql.