• Post author:
  • Post category:Blog
  • Reading time:2 mins read
  • Post last modified:June 12, 2024

Refer to the exhibit. A portion of the Movie table from the Movies database is shown. A data analyst is writing a query that will return the title and release date of movies released after 2000. The analyst further needs the list ordered by the release date. Which query will return the required results?

Data Analytics Essentials Course Final Exam Answers 02
Data Analytics Essentials Course Final Exam Answers 02
  • SELECT Release_date > ‘2000-12-31’
    FROM Title, Release_date
    WHERE Movie
    ORDER BY Release-date
  • SELECT Title, Release_date
    FROM Movie
    WHERE Release_date > ‘2000-12-31’
    ORDER BY Release-date
  • SELECT Movie
    FROM Title, Release_date
    WHERE Release_date > ‘2000-12-31’
    ORDER BY Release-date
  • SELECT Title, Release_date
    FROM Release_date > ‘2000-12-31’
    WHERE Movie
    ORDER BY Release-date
Explanation & Hint:

The correct query is:
SELECT Title, Release_date
FROM Movie
WHERE Release_date > ‘2000-12-31’
ORDER BY Release-date

The SELECT command indicates the columns
The FROM command indicates the table
The WHERE command indicates the criteria
The ORDER command indicates that result is ordered by release date

For more Questions and Answers:

Data Analytics Essentials Course Final Exam Answers Full 100%

Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments