Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Blockbuster Filter | Section
Practice
Projects
Quizzes & Challenges
Quizzes
Challenges
/
Mastering CASE WHEN in SQL
Sectionย 1. Chapterย 15
single

single

bookChallenge: Blockbuster Filter

Swipe to show menu

Task

Swipe to start coding

Write a query that selects all movies from the movies table and labels each as 'Blockbuster' if its box_office is greater than or equal to 100,000,000 or its rating is greater than or equal to 8.5, using a CASE WHEN expression for this logic. Only include movies that meet the blockbuster criteria in the result set.

  • Use a CASE WHEN expression in the WHERE clause to filter movies where box_office is greater than or equal to 100,000,000 or rating is greater than or equal to 8.5.
  • In the SELECT list, use a CASE WHEN expression to label each included movie as 'Blockbuster' or 'Standard' based on the same criteria.
  • Return the columns title, genre, rating, box_office, and the blockbuster label as blockbuster_status.

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Sectionย 1. Chapterย 15
single

single

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

some-alt