Comparing invoice totals
Previously, you worked to categorize invoices based on the number of songs sold. Now, you'll take that to the next level. Your goal is to determine just how much more customers spend when buying multiple songs. Good luck!
Diese Übung ist Teil des Kurses
Data Manipulation in Snowflake
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
-- Run this query without editing it.
SELECT
customer_id,
total,
CASE
WHEN total IN (0.99, 1.99) THEN '1 Song'
ELSE '2+ Songs'
END as number_of_songs
FROM store.invoice;