Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Blockbuster Filter | Conditional Filtering and Sorting with CASE WHEN
/
Mastering CASE WHEN in SQL
セクション 3.  3
single

single

bookChallenge: Blockbuster Filter

メニューを表示するにはスワイプしてください

タスク

スワイプしてコーディングを開始

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.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 3.  3
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt