セクション 3. 章 3
single
Challenge: 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 WHENexpression in theWHEREclause to filter movies wherebox_officeis greater than or equal to 100,000,000 orratingis greater than or equal to 8.5. - In the
SELECTlist, use aCASE WHENexpression 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 asblockbuster_status.
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 3. 章 3
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください